Skip to content

Instantly share code, notes, and snippets.

@ssaadh
Created July 28, 2013 18:19
Show Gist options
  • Save ssaadh/6099514 to your computer and use it in GitHub Desktop.
Save ssaadh/6099514 to your computer and use it in GitHub Desktop.
def text_file_to_array
File.open './search_phrases.txt' do |f|
@search_phrases = Array.new
f.each_line { |line|
@search_phrases.push line
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment