Rails 4.0.0 & Ruby 2.0.0でdebuggerでReadlineのエラー
Aug 9, 2013AD:
せっかく新しい案件が来たので、Ruby2 & Rails4で開発しているんですが、debuggerでReadlineのエラーがでたので、メモしておきます。
まず環境
- Vagrantのubuntu12.10.64bit
- rbenv – Ruby 2.0.0p247
- rbenv – Rails 4.0.0
エラー内容
1 2 |
$ rails s --debugger /home/vagrant/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/debugger-1.6.1/lib/ruby-debug/interface.rb:67:in `block (2 levels) in initialize': uninitialized constant Debugger::LocalInterface::Readline (NameError) |
エラーを読みかぎりReadlineがないらしいので、Readlineをインストール
Readlineを指定して、rbenvでRubyを入れなおし
1 2 3 4 |
$ sudo apt-get install libreadline6 libreadline6-dev $ CONFIGURE_OPTS="--with-readline-dir=/usr/include/readline" rbenv install 2.0.0-p247 $ rbenv global 2.0.0-p247 $ rbenv rehash |
Related posts
AD:
No Comments, Comment or Ping
Reply to “Rails 4.0.0 & Ruby 2.0.0でdebuggerでReadlineのエラー”
You must be logged in to post a comment.