Questions
The easiest way if the file isn't too long is:
puts File.read(file_name)
Indeed, IO.read or File.read automatically close the file, so there is no need to use File.open with a block.
IO.read
File.read
File.open
~ Answered on 2011-04-04 23:00:59