Search code examples
rubyfile-io

How to write to file in Ruby?


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?


Solution

  • The Ruby File class will give you the ins and outs of ::new and ::open but its parent, the IO class, gets into the depth of #read and #write.