我已将我的应用升级为使用Ruby 1.9.3p0和Rails 3.2.2。为了让捆绑工作,我改变了这个:
gem 'ruby-debug'
到此:
gem 'ruby-debug19'
现在rails server
给出:
Could not find archive-tar-minitar-0.5.2 in any of the sources
Run `bundle install` to install missing gems.
运行bundle install
无济于事。当我从Gemfile中删除ruby-debug19
gem时,错误消失了,但是调试也消失了。
我也尝试将Gemfile更改为:
gem 'ruby-debug19', :require => 'ruby-debug'
没有帮助。我是Rails的新手,所以也许这是显而易见的事情。