Awesome Print generally works perfectly for me in Rails.
But when doing ap Post.all
in the Rails console I only get the standard full line output.
Has it to do with the returned ActiveRecord_Relation
class or something else, because when an array is returned, like in ap Post.all.each {|p| p}
, Awesome Print does it's job.
Why not just convert it to array?
or you can create a patch:You are right. Maybe it's an incompatible problem with Rails4 as the last commit on github is 6 months ago. Here is the problem:
awesome_print-1.2.0/lib/awesome_print/ext/active_record.rb@24
the method will set the cast to array when the
type
is:activerecord_relation
while in awesome_print-1.2.0/lib/awesome_print/inspector.rb@151
But the class of Relation object in rails4 is like:
So the condition in
cast_with_active_record
gets a type "activerecord_relation_activerecord_relation_post" rather than "activerecord_relation". Then the condition is failed, and no cast done.Here's a new patch that may work: