It seems like the Rails console limits its character output to about 880 characters. How do I remove this limitation?
Printing large objects, or text fields from the database, gives output like this:
=> #<User id: ....
system_password: ni
(...
inserted for brevity. The output contains lots and lots of text.)
You can see that the output is truncated / capped/ limited, so that nothing after 'ni' is displayed (should have been atleast an 'l', for 'nil').
This is so annoying. It doesn't allow me to fully inspect the string / text fields in the DB that contain a lot of text.
I presume it must be a setting somewhere, but I can't seem find it.
How do I remove this limitation, so I can see all of the text output?