2013-03-19 37 views
0

我安裝了webmock寶石,但我的RSpec的測試將不再工作,而是這個錯誤: (我用後衛自動測試)webmock和破解0.3.2問題

/home/neilmarion/.rvm/gems/[email protected]/gems/bundler-1.1.4/lib/bundler/spec_set.rb:90:in `block in materialize': Could not find crack-0.3.2 in any of the sources (Bundler::GemNotFound) 
    from /home/neilmarion/.rvm/gems/[email protected]/gems/bundler-1.1.4/lib/bundler/spec_set.rb:83:in `map!' 
    from /home/neilmarion/.rvm/gems/[email protected]/gems/bundler-1.1.4/lib/bundler/spec_set.rb:83:in `materialize' 
    from /home/neilmarion/.rvm/gems/[email protected]/gems/bundler-1.1.4/lib/bundler/definition.rb:127:in `specs' 
    from /home/neilmarion/.rvm/gems/[email protected]/gems/bundler-1.1.4/lib/bundler/environment.rb:27:in `specs' 
    from /home/neilmarion/.rvm/gems/[email protected]/gems/rubygems-bundler-1.0.2/lib/rubygems-bundler/noexec.rb:41:in `candidate?' 
    from /home/neilmarion/.rvm/gems/[email protected]/gems/rubygems-bundler-1.0.2/lib/rubygems-bundler/noexec.rb:60:in `setup' 
    from /home/neilmarion/.rvm/gems/[email protected]/gems/rubygems-bundler-1.0.2/lib/rubygems-bundler/noexec.rb:75:in `<top (required)>' 
    from /home/neilmarion/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:60:in `require' 
    from /home/neilmarion/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:60:in `rescue in require' 
    from /home/neilmarion/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:35:in `require' 
    from /home/neilmarion/.rvm/gems/[email protected]/bin/ruby_noexec_wrapper:9:in `<main>' 

我可以看到破解0.3 .2已經在寶石列表中。我不知道有什麼問題。

回答

0

嘗試bundle exec rake spec有時耙將不會拿起正確的寶石。

確保bundle exec gem list顯示破解0.3.2

0

我已經解決了這一點。我剛剛從組中刪除了「gem'webmock'」這一行:test block。

source 'https://rubygems.org' 

gem 'rails', '3.2.12' 

# Bundle edge Rails instead: 
# gem 'rails', :git => 'git://github.com/rails/rails.git' 

gem 'activerecord-postgresql-adapter' 


# Gems used only for assets and not required 
# in production environments by default. 
group :assets do 
    gem 'sass-rails', '~> 3.2.3' 
    gem 'coffee-rails', '~> 3.2.1' 

    # See https://github.com/sstephenson/execjs#readme for more supported runtimes 
    # gem 'therubyracer', :platforms => :ruby 

    gem 'uglifier', '>= 1.0.3' 
end 

gem 'jquery-rails' 
gem 'omniauth-twitter' 
gem 'omniauth-facebook' 
gem 'omniauth-identity' 
gem 'devise' 
gem 'webmock' 

# To use ActiveModel has_secure_password 
# gem 'bcrypt-ruby', '~> 3.0.0' 

# To use Jbuilder templates for JSON 
# gem 'jbuilder' 

# Use unicorn as the app server 
# gem 'unicorn' 

# Deploy with Capistrano 
# gem 'capistrano' 

# To use debugger 
# gem 'debugger' 

group :test, :development do 
    gem 'rspec-rails' 
    gem 'rb-inotify', '~> 0.9' 
    gem 'better_errors' 
end 

group :test do 
    gem 'capybara' 
    gem 'factory_girl' 
    gem 'guard-rspec' 
    gem 'shoulda' 
    gem 'launchy' 
    gem 'database_cleaner' 
end