2017-07-03 65 views
0

我不是在轨道上的红宝石。当我启动:无法加载这样的文件 - rspec/core/rake_task与capistrano

cap integration deploy 

我得到一个错误:

INFO [90feb630] Running /usr/local/rvm/bin/rvm [email protected]_gemset do bundle exec rake assets:precompile as [email protected] 
DEBUG [90feb630] Command: cd /home/myproject/myproject_rails/releases/20170703135523 && (export RAILS_ENV="staging" RAILS_GROUPS="" ; /usr/local/rvm/bin/rvm [email protected]_gemset do bundle exec rake assets:precompile) 
DEBUG [90feb630] rake aborted! 
LoadError: cannot load such file -- rspec/core/rake_task 

这里我Capistrano的配置文件进行部署:

set :user, 'myproject' 

server 'myproject-server.com', 
    user: fetch(:user), 
    roles: %w{web app db}, 
    ssh_options: {forward_agent: true} 

set :deploy_to, "/home/#{fetch(:user)}/#{fetch(:application)}" 

set :rails_env, 'staging' 

set :conditionally_migrate, true 

set :keep_releases, 2 

set :branch, 'master' 

set :app_version, '0.1' 

编辑

的问题是从文件/lib/tasks/integration.rake:

require 'rspec/core/rake_task' 

    namespace :integration do 
     desc 'integration test the JSON API endpoints' 
     RSpec::Core::RakeTask.new(:test) do |t| 
     # set the RAILS_ENV such that :integration tagged 
     # specs are run 
     ENV['RAILS_ENV'] = 'test' 

     # only run those files in the 'integration' directory 
     t.pattern = './spec/integration{,/*/**}/*_spec.rb' 
     end 
    end 

回答

0

gem'rspec-core'其中只安装在dev/test env中。

所以它失踪了。

gem 'rspec-core', '~> 3.4' 

出的

group :development, :test do 

解决了我的问题

相关问题