1
我升級了我的應用程序以使用Ruby 1.9.3p0和Rails 3.2.2。要獲得捆綁的工作我改變了這一點:升級到Ruby 1.9.3和Rails 3.2.2後Debug不工作
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有點新鮮,所以也許這是顯而易見的。
的可能重複[紅寶石調試使用Ruby 1.9.3?](http://stackoverflow.com/questions/8087610/ruby-debug-with-ruby-1-9-3) – 2012-03-05 17:30:47
葉氏..本作品對我來說「bash <<(curl -L https://raw.github.com/gist/1333785)」 – 2012-03-05 17:37:38
沒有不行。試過了。同樣的錯誤。 – 2012-03-05 18:12:25