Ruby – How to write to file in Ruby

file-ioruby

I need to read the data out of database and then save it in a text file.

How can I do that in Ruby? Is there any file management system in Ruby?

Best Answer

Are you looking for the following?

File.open(yourfile, 'w') { |file| file.write("your text") }