I'm looking for a way to dump the structure of an object, similar to the PHP functions print_r and var_dump for debugging reasons.
|
|
|||
|
|
|
In views:
In controllers, models, and other code:
|
|||
|
|
|
The
The
It may help to put that in |
|||
|
|
|
You can also use YAML::dump shorthand (y) under Rails console:
If you want to just preview some string contents, try using raise (for example in models, controllers or some other inaccessible place). You get the backtrace for free:)
I also really encourage you to try ruby-debug:
It's incredibly helpful! |
|||
|
|
|
In a view you can use |
|||
|
|
|
If you just want the relevant data to be displayed to stdout (the terminal output if you're running from the command line), you can use |
|||
|
|
|
I use this :)
|
||||
|
|
|
Lately I'm using awesome_print's The type-specific colored output really makes a difference if you need to visually scan for |
||||
|
|