web-dev-qa-db-ja.com

オブジェクトのフィールドをコンソールにダンプするにはどうすればよいですか?

単純なRubyスクリプトを実行しているとき、オブジェクトのフィールドをコンソールにダンプする最も簡単な方法は何ですか?

PHPのprint_r()に似た、配列でも機能するものを探しています。

240
roryf

おそらく:

puts variable.inspect
379

オブジェクトのメソッドの配列を返すmethodsメソッドの使用法を見つけるかもしれません。 print_rと同じではありませんが、それでも役に立つ場合があります。

>> "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"]
52
dylanfm

to_yamlメソッドは時々役立つようです:

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

puts $foo.to_yaml

返す

--- 
:age: 43
:name: Clem

(これはロードされるYAMLモジュールに依存しますか?それとも通常利用可能でしょうか?)

47
mjs
p object

pのRubyドキュメント

p(*args) public

オブジェクトごとに、obj.inspectに直接プログラムの標準出力に改行を続けて書き込みます。

28
rampion

オブジェクト内のインスタンス変数のみを探している場合、これは便利です。

obj.instance_variables.map do |var|
  puts [var, obj.instance_variable_get(var)].join(":")
end

または、コピーと貼り付けのワンライナーとして:

obj.instance_variables.map{|var| puts [var, obj.instance_variable_get(var)].join(":")}
14
Mike

foo.to_jsonを置きます

jsonモジュールはデフォルトでロードされるため、便利になる可能性があります

10
tjerk

すでにインデントされたJSONを印刷する場合:

require 'json'
...
puts JSON.pretty_generate(JSON.parse(object.to_json))
5

似たようなものを探していたので、このスレッドに出会いました。私は応答が好きで、彼らはいくつかのアイデアをくれたので、.to_hashメソッドをテストし、ユースケースでも非常にうまく機能しました。 soo:

object.to_hash

3
Gregor