I am trying to get awesome_print
to output to a file rather than the console but I cant find out how to do this?
require "awesome_print"
mySymbolizedHash = {'blah' => 'blabbbb', 'this' => 'that'}
This will write to console, I need to write the formatted output to file.
If I write the hash directly to a file, its not formatted they way I want.
ap mySymbolizedHash
f.write mySymbolizedHash.awesome_inspect(:plain => true, :index => false)
– Polyhydric