It freezes when trying to run an Activerecord association. For instance:
User has_many :journeys
I'm inside User.some_method:
def some_method
jard
journeys
end
Inside the method, when I run:
jard >> journeys
It just freezes and won't output the ActiveRecord::Associations::CollectionProxy instance.
This doesn't happen with gem 'byebug', where I'm able to see the result.
Thanks!
It freezes when trying to run an Activerecord association. For instance:
User
has_many :journeysI'm inside User.some_method:
Inside the method, when I run:
jard >> journeysIt just freezes and won't output the ActiveRecord::Associations::CollectionProxy instance.
This doesn't happen with gem 'byebug', where I'm able to see the result.
Thanks!