When I'm running a simple Ruby script, what's the easiest way to dump an object's fields to the console?

I'm looking for something similar to PHP's print_r() that will work with arrays as well.

link|improve this question

71% accept rate
feedback

5 Answers

up vote 48 down vote accepted

Possibly:

puts variable.inspect
link|improve this answer
2  
Adding an inspect method to your class allows you to define how the class' attributes are displayed, rather than rely on default output. A lot of classes don't implement it well, but it can be really useful when debugging. Ruby will fall back to to_s if it can't find an inspect` method. – the Tin Man Nov 27 '10 at 21:45
feedback

You might find a use for the methods method which returns an array of methods for an object. It's not the same as print_r, but still useful at times.

>> "Hello".methods.sort
=> ["%", "*", "+", "<", "<<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "all?", "any?", "between?", "capitalize", "capitalize!", "casecmp", "center", "chomp", "chomp!", "chop", "chop!", "class", "clone", "collect", "concat", "count", "crypt", "delete", "delete!", "detect", "display", "downcase", "downcase!", "dump", "dup", "each", "each_byte", "each_line", "each_with_index", "empty?", "entries", "eql?", "equal?", "extend", "find", "find_all", "freeze", "frozen?", "grep", "gsub", "gsub!", "hash", "hex", "id", "include?", "index", "inject", "insert", "inspect", "instance_eval", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "intern", "is_a?", "is_binary_data?", "is_complex_yaml?", "kind_of?", "length", "ljust", "lstrip", "lstrip!", "map", "match", "max", "member?", "method", "methods", "min", "next", "next!", "nil?", "object_id", "oct", "partition", "private_methods", "protected_methods", "public_methods", "reject", "replace", "respond_to?", "reverse", "reverse!", "rindex", "rjust", "rstrip", "rstrip!", "scan", "select", "send", "singleton_methods", "size", "slice", "slice!", "sort", "sort_by", "split", "squeeze", "squeeze!", "strip", "strip!", "sub", "sub!", "succ", "succ!", "sum", "swapcase", "swapcase!", "taguri", "taguri=", "taint", "tainted?", "to_a", "to_f", "to_i", "to_s", "to_str", "to_sym", "to_yaml", "to_yaml_properties", "to_yaml_style", "tr", "tr!", "tr_s", "tr_s!", "type", "unpack", "untaint", "upcase", "upcase!", "upto", "zip"]
link|improve this answer
Half of what I was looking for, thanks! – roryf Dec 10 '08 at 10:48
Using introspection is part of the fun of Ruby. It's often useful to subtract an Object's instance_methods from the class' in question to get the methods that are unique: (String.instance_methods - Object.instance_methods).sort – the Tin Man Nov 27 '10 at 22:05
1  
this should be the correct answer as I was expecting this when finding this page. – jaycode Sep 13 '11 at 12:37
feedback
p variable
link|improve this answer
Isn't that the same as variable.to_s? I've found that just prints an object reference unless the class explicitly overrides it – roryf Dec 10 '08 at 10:47
p is also an alias for puts – dylanfm Dec 11 '08 at 2:01
4  
nope, p object means puts object.inspect – rampion Dec 11 '08 at 15:28
feedback

The to_yaml method seems to be useful sometimes:

$foo = {:name => "Clem", :age => 43}

puts $foo.to_yaml

returns

--- 
:age: 43
:name: Clem

(Does this depend on some YAML module being loaded? Or would that typically be available?)

link|improve this answer
1  
Yes, to_yaml requires the YAML model to be loaded. It is part of the Ruby standard library, though. – Chuck Oct 7 '09 at 0:02
feedback

puts foo.to_json

might come in handy since the json module is loaded by default

link|improve this answer
2  
to_json isn't loaded by default in 1.8.7 or 1.9.2. – the Tin Man Nov 27 '10 at 21:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.