繁体   English   中英

运行自动测试时,在任何来源中都找不到ZenTest-4.7.0

[英]Could not find ZenTest-4.7.0 in any of the sources when running Autotest

运行自动测试时,出现错误Could not find ZenTest-4.7.0 in any of the sources 查看本文后 ,我删除了gemfile.lock,运行“捆绑安装”,然后尝试重新运行自动测试。 现在,我得到错误, Could not find rake-10.0.3 in any of the sources 仅供参考,我正在使用RBENV,并且在运行我的应用程序时没有其他问题(rails c,rails s,rake等)。 这是我的gem文件(顺便说一句,两个“缺失”文件都出现在gemfile.lock中):

source 'http://rubygems.org'

gem 'rails', '3.1.3'

gem 'rake'

gem 'pg', '0.13.2'

# Sidekiq handles background jobs, using threading
gem 'sidekiq', '>= 2.6.1'
# Need the following gems for sidekiq/web
gem 'slim'
# if you require 'sinatra' you get the DSL extended to Object
gem 'sinatra', :require => nil

gem 'heroku-api'    # Need the API for scaling sidekiq

gem 'json'

gem 'premailer'   

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',  '3.1.4'
  gem 'coffee-rails', '~> 3.1.1'
  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'

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

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

# Deploy with Capistrano
# gem 'capistrano'

# Bundle the extra gems:
gem 'mechanize'
gem 'nokogiri'
gem 'spreadsheet'
gem 'xml-simple'
gem 'faker', '~> 0.3.1'

# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development do
  gem 'rspec-rails'
    gem 'ruby-debug19'
end

group :test do
    gem 'rspec-rails'
    gem 'ZenTest'
  gem 'shoulda-matchers'
  gem 'webrat', '0.7.1'
    gem 'factory_girl_rails'
    gem 'ruby-debug19'
end

gem 'geoip'
gem 'thin'

gem 'htmlentities'

我不确定100%,但是我认为您可以这样做:

gem install ZenTest

而且可能

gem install autotest-rails

从您的应用程序目录中。 这些家伙不受您的gemfile和捆绑程序管理

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM