0

我正试图让 Guard 与 Spork 和 Cucumber 一起工作。我正在使用 rspec 创建一个 Rails 应用程序。我尝试了许多不同的方法,但都无济于事,感觉很失败。

我假设问题必须在 Gemfile 或 Guardfile 中。我是一个刚刚学习的新手,所以如果你在我的设置中看到一些我可以改进和/或没有的东西,请随时让我知道,我希望得到一些反馈。

不过,据我所知,Cucumber 似乎在起作用。但是,每次我尝试运行 Guard 时,它都会说:

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

任何反馈和/或见解都将非常有帮助和赞赏!

4

1 回答 1

1

gemspork-rails是 Spork 服务器而不是 Guard 插件,而是guard-spork用于管理 Spork 服务器的 Guard 插件。所以你需要改变

` guard 'spork-rails' do

guard 'spork' do

在 Guard 启动时自动启动 Spork 服务器。

于 2013-09-30T17:31:08.827 回答