7even / awesome_pry

pry + awesome_print = happiness
MIT License
7 stars 0 forks source link

ActiveRecord::Relation output #1

Open 7even opened 9 years ago

7even commented 9 years ago

awesome_print is incompatible with activerecord 4 so it needs a little hack to output the relations:

class ActiveRecord::Relation
  def ai(*args)
    to_a.ai(*args)
  end
end
foxweb commented 6 years ago

👍