2013-09-29 28 views
0

我試圖讓守衛與Spork和黃瓜一起工作。我正在用rspec創建一個Rails應用程序。我嘗試了許多不同的事情,但都無濟於事,感覺已經失敗。錯誤試圖讓守衛與使用rspec的導軌上的Spork和黃瓜

我假設問題必須在Gemfile或Guardfile中。我是一名剛剛學習的新手,如果您在我的設置中看到我可以改進和/或沒有的東西,請隨時告訴我,我很樂意提供一些反饋。

儘管如此,據我所知,黃瓜似乎在工作。然而,每次我嘗試運行保護時間,它說:

ERROR - Could not load 'guard/spork-rails' or find class Guard::Sporkrails 
ERROR - cannot load such file -- guard/spork-rails 
ERROR - Invalid Guardfile, original error is: > [#] undefined method `new' for nil:NilClass 
ERROR - Could not start Spork server for RSpec, Cucumber. Make sure you can use it manually first. 

這裏是我的Gemfile:

source 'https://rubygems.org' 

gem 'rails' 
gem 'pg' 
gem 'sass-rails' 
gem 'uglifier' 
gem 'coffee-rails' 
gem 'jquery-rails' 
gem 'turbolinks' 
gem 'jbuilder' 
gem 'guard-gitpusher' 
gem 'bundler' 

group :development, :test do 
    gem 'rspec-rails' 
    gem 'guard-rails' 
    gem 'guard' 
    gem 'guard-rspec' 
    gem 'growl' 
    gem 'guard-rake' 
    gem 'guard-gitpusher' 
    gem 'guard-yaml' 
    gem 'guard-cucumber' 
    gem 'gherkin' 
    gem 'spork-rails', github: 'sporkrb/spork-rails' 
    gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i 
    gem 'guard-spork', '1.4.2' 
    gem 'childprocess', '0.3.6' 
end 

group :test do 
    gem 'rspec-rails' 
    gem 'shoulda-matchers' 
    gem 'guard-migrate' 
    gem 'guard-rake' 
    gem 'guard-migrate' 
    gem 'guard-webrick' 
    gem 'guard-gitpusher' 
    gem 'guard-yaml' 
    gem 'cucumber', '1.2.5' 
    gem 'cucumber-rails', '1.3.0', :require => false 
    gem 'selenium-webdriver' 
    gem 'capybara' 
    gem 'factory_girl_rails' 
    gem 'database_cleaner' 
end 

這裏是我Guardfile:

guard 'spork', :cucumber_env => { 'RAILS_ENV' => 'test' }, :rspec_env => { 'RAILS_ENV' => 'test' } do 
    watch('config/application.rb') 
    watch('config/environment.rb') 
    watch('config/environments/test.rb') 
    watch(%r{^config/initializers/.+\.rb$}) 
    watch('Gemfile.lock') 
    watch('spec/spec_helper.rb') { :rspec } 
    watch('test/test_helper.rb') { :test_unit } 
    watch(%r{features/support/}) { :cucumber } 
end 

guard 'cucumber' do 
watch(%r{^features/.+\.feature$}) 
watch(%r{^features/support/.+$}) { 'features' } 
watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' } 
end 

guard 'spork-rails' do 
    watch('config/application.rb') 
    watch('config/environment.rb') 
    watch(%r{^config/environments/.*\.rb$}) 
    watch(%r{^config/initializers/.*\.rb$}) 
    watch('Gemfile.lock') 
    watch('spec/spec_helper.rb') { :rspec } 
    watch(%r{features/support/}) { :cucumber } 
end 


guard 'bundler' do 
  watch('Gemfile') 
  watch(%r{^.+\.gemspec$}) 
end 

guard 'webrick' do 
end 

guard :yaml do 
    watch(%r{^config/(.*).yml}) 
end 

guard 'rspec', after_all_pass: false, cli: '--color --format nested --drb' do 
    watch(%r{^spec/.+_spec\.rb$}) 
    watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } 

    watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } 
    watch(%r{^app/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" } 
    watch(%r{^app/controllers/(.+)\.rb}) { |m| "spec/requests/#{m[1]}_spec.rb" } 
    watch(%r{^app/decorators/(.+)_decorator\.rb$}) { |m| "spec/requests/#{m[1]}_controller_spec.rb" } 
    watch('app/controllers/application_controller.rb') { "spec/requests" } 

    watch(%r{^app/views/(.+)/(.+)\.rabl$}) { |m| "spec/requests/#{m[1]}_controller_spec.rb" } 
    watch(%r{^spec/requests/support/views/(.+)_view\.rb$}) { |m| "spec/requests/#{m[1]}_controller_spec.rb" } 

    # Rails example 
    watch(%r{^app/(.+)\.rb$})       { |m| "spec/#{m[1]}_spec.rb" } 
    watch(%r{^app/(.*)(\.erb|\.haml|\.slim)$})   { |m| "spec/#{m[1]}#{m[2]}_spec.rb" } 
    watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] } 
    watch(%r{^spec/support/(.+)\.rb$})     { "spec" } 
    watch('config/routes.rb')       { "spec/routing" } 
    watch('app/controllers/application_controller.rb') { "spec/controllers" } 

    # Capybara features specs 
    watch(%r{^app/views/(.+)/.*\.(erb|haml|slim)$})  { |m| "spec/features/#{m[1]}_spec.rb" } 

    # Turnip features and steps 
    watch(%r{^spec/acceptance/(.+)\.feature$}) 
    watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' } 
end 

,最後,這裏是我的spec_helper.rb:

require 'rubygems' 
require 'spork' 

Spork.prefork do 
    ENV["RAILS_ENV"] ||= 'test' 
    require File.expand_path("../../config/environment", __FILE__) 
    require 'rspec/rails' 
    require 'rspec/autorun' 
    Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f } 

ActiveRecord::Migration.check_pending! if defined?(ActiveRecord::Migration) 

RSpec.configure do |config| 

    config.fixture_path = "#{::Rails.root}/spec/fixtures" 

    config.use_transactional_fixtures = true 

    config.infer_base_class_for_anonymous_controllers = false 


    config.order = "random" 
end 

end 

Spork.each_run do 

end 

任何反饋和/或洞察力都將非常有幫助,也將得到讚賞!

回答

1

gem spork-rails是Spork服務器,不是Guard插件,但guard-spork是一個用於管理Spork服務器的Guard插件。所以,你需要改變

` guard 'spork-rails' do

guard 'spork' do

衛隊啓動時自動啓動叉勺服務器。