2017-07-03 74 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 

解決了我的問題

相關問題