jookyboi
9/21/2013 - 7:41 PM

Write to file in Ruby. From http://stackoverflow.com/questions/2777802/how-to-write-to-file-in-ruby

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