PHP関数print_r
と同様に、var_dump
デバッグの理由から、オブジェクトの構造をダンプする方法を探しています。
PHP関数print_r
と同様に、var_dump
デバッグの理由から、オブジェクトの構造をダンプする方法を探しています。
回答:
ビューで:
include DebugHelper
...your code...
debug(object)
コントローラー、モデル、およびその他のコード:
puts YAML::dump(object)
RailsコンソールでYAML :: dump省略表記(y)を使用することもできます。
>> y User.first
--- !ruby/object:User
attributes:
created_at: 2009-05-24 20:16:11.099441
updated_at: 2009-05-26 22:46:29.501245
current_login_ip: 127.0.0.1
id: "1"
current_login_at: 2009-05-24 20:20:46.627254
login_count: "1"
last_login_ip:
last_login_at:
login: admin
attributes_cache: {}
=> nil
>>
一部の文字列コンテンツをプレビューするだけの場合は、レイズを使用してみてください(たとえば、モデル、コントローラー、またはその他のアクセスできない場所で)。あなたは無料でバックトレースを取得します:)
>> raise Rails.root
RuntimeError: /home/marcin/work/github/project1
from (irb):17
>>
また、ruby-debugを試すことを強くお勧めします。
とても便利です!
使用できますputs some_variable.inspect
。または短いバージョン:p some_variable
。よりきれいな出力には、awesome_print gemを使用できます。
以前の答えは素晴らしいですが、コンソール(ターミナル)を使用したくない場合は、RailsでデバッグのヘルパーActionView :: Helpers :: DebugHelperを使用してビューに結果を印刷できます。
#app/view/controllers/post_controller.rb
def index
@posts = Post.all
end
#app/view/posts/index.html.erb
<%= debug(@posts) %>
#start your server
rails -s
結果(ブラウザ内)
- !ruby/object:Post
raw_attributes:
id: 2
title: My Second Post
body: Welcome! This is another example post
published_at: '2015-10-19 23:00:43.469520'
created_at: '2015-10-20 00:00:43.470739'
updated_at: '2015-10-20 00:00:43.470739'
attributes: !ruby/object:ActiveRecord::AttributeSet
attributes: !ruby/object:ActiveRecord::LazyAttributeHash
types: &5
id: &2 !ruby/object:ActiveRecord::Type::Integer
precision:
scale:
limit:
range: !ruby/range
begin: -2147483648
end: 2147483648
excl: true
title: &3 !ruby/object:ActiveRecord::Type::String
precision:
scale:
limit:
body: &4 !ruby/object:ActiveRecord::Type::Text
precision:
scale:
limit:
published_at: !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter
subtype: &1 !ruby/object:ActiveRecord::Type::DateTime
precision:
scale:
limit:
created_at: !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter
subtype: *1
updated_at: !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter
subtype: *1
私はこれを使います:)
require 'yaml'
module AppHelpers
module Debug
module VarDump
class << self
def dump(dump_object, file_path)
File.open file_path, "a+" do |log_file|
current_date = Time.new.to_s + "\n" + YAML::dump(dump_object) + "\n"
log_file.puts current_date
log_file.close
end
end
end
end
end
end
最近、コンソールとビューの両方で機能するawesome_printのap
メソッドを使用しています。
String
または Numeric
オブジェクトを視覚的にスキャンする必要がある場合、タイプ固有の色付き出力は本当に違いをもたらします(洗練された外観を得るためにスタイルシートを少し調整する必要がありましたが)
puts theobject.inspect.gsub(",", "\n")