Pasting a long string of text into Heroku rails console

Viewed 1773

Pasting any string longer than a couple hundred characters into a Heroku rails console takes forever. The more characters are pasted, the slower it goes, letter by letter. Is there a way to make this run at a reasonable speed?

2 Answers

Run this in project directory

heroku run 'bundle exec rails c -- --nomultiline'
Related