Read a text file readlines
# Put some stuff into a file.
open('sample_file', 'w') do |f|
f.write("This is line one.\nThis is line two.")
end
open('sample_file') { |f| f.readlines }
# => ["This is line one.\n", "This is line two."]
Related examples in the same category