Rails 3: uninitialized constant IRB::ReadlineInputMethod::Readline (NameError) in Heroku

前端 未结 1 701
时光取名叫无心
时光取名叫无心 2021-02-14 12:16

Ever since we updated to Rails 3.2.13 we\'ve been unable to start the heroku rails console. The server is working just fine, but when we try to run the console, it gives the fol

1条回答
  •  囚心锁ツ
    2021-02-14 12:31

    Just experienced this myself. As it turns out the rb-readline gem bumped a version that causes rails console, and other things to fail. Try locking it to '~> 0.4.2'.

    gem 'rb-readline', '~> 0.4.2'
    

    0 讨论(0)
提交回复
热议问题