I'm new to Rails and linux world. Question looks very simple but I'm having tough time writing some long commands in console. Say, I have to run some active record queries to see the results in console, below line works perfect
User.find(1)
But I can't type below query as last 3 characters simply gets truncated
Category.includes(:posts => [{:comments => :guest}, :tags]).find(1)
or something weird happens like below
nd(1)-p327 :009 > Category.includes(:posts => [{:comments => :guest}, :tags]).fin
What I need to do to get it work?