When running User.first in the rails console I will get a beautiful output, something like:
I assume this is taken care of by pry. How can I get the same output styling when using the runner? Consider a file tinker.rb
u = User.first
puts u
and running it like: rails r './tinker.rb. While it will output something, it is not as polished as in the console:
#<User:0x00007fc6518acec8>
How can I make it exactly the same?
