4

If I run a console on heroku, it looks like this:

heroku run console --app myapp-production
irb(main):001:0>

This seems a whole lot more dangerous than something like this:

heroku run console --app myapp-production
myapp-production:001:0>

Anyone know how to solve this?

Peter Ehrlich
  • 6,969
  • 4
  • 49
  • 65

1 Answers1

1

@Peter,

You need to create a plugin as this: https://github.com/hone/heroku_colorize_console

And after run this heroku plugins:install <your_git_repo>.

Based on the example above this appeared very simple to implement.

Bruno Arueira
  • 314
  • 1
  • 4
  • 17