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
awesome_inspect
seems undocumented, butai
seems to be an alias, and that's used all over the place.You could redirect STDOUT to a file, as shown here: http://stackoverflow.com/questions/1470344/outputting-stdout-to-a-file-and-back-again awesome_print doesn't seem to return the value, so no assigning it to a variable :(