In PHP you can do:
print_r($var) or vardump($var)
which prints "human-readible" information about variable.
Is there equivalent functions / helpers for those in Ruby / Rails ?
|
1
|
In PHP you can do:
which prints "human-readible" information about variable. Is there equivalent functions / helpers for those in Ruby / Rails ?
|
||
|
|
|
|
In Rails templates you can do
and it will do nice HTML PRE output. |
||
|
|
|
|
Instead of requiring 'pp' and using pp, you can simply do
Tested example
|
||
|
|
|
|
Try using pp. You will need to require it in scripts (or in irb if your .irbc doesn't already do this):
Then you can 'PrettyPrint' an object thus:
|
|||
|
|
|
|
There's the method
|
||
|
|
|
|
Check out the guide for debugging rails: http://guides.rubyonrails.com/debugging_rails_applications.html hints: script/console is great to try stuff in the context of your app script/server --debugger to start the server with a debugger turned on, you can then use 'debug' in your code to break into an interactive shell |
||
|
|
|
|
Guess I'm a little late to this, but what about logger.info [debug|warning]? Use this from Controllers and Models. It will show up in your log files (development.log when in dev mode); and the above mentioned These aren't exact answers to your questions but you can also use script/console to load your rails app in to an interactive session. Lastly, you can place debugger in a line of your rails application and the browser will "hang" when your app executes this line and you'll be able to be in a debug session from the exact line your placed your debugger in the source code. |
||
|
|
|
|
One approach I lean on a lot is this: logger.debug "OBJECT: #{an_object.to_yaml}" Easy to read, although it can get a little unwieldy for large objects. |
||
|
|