尝试让Guard使用rspec在Rails上使用Spork和Cucumber时出错

时间:2013-09-29 00:54:50

标签: ruby-on-rails rspec cucumber guard spork

我正在努力让Guard与Spork和Cucumber合作。我正在用rspec创建一个Rails应用程序。我尝试了许多不同的东西但无济于事,我感到失败了。

我假设问题必须在Gemfile或Guardfile中。我是新手只是学习所以如果你在我的设置中看到我可以改进和/或没有的东西,请随时告诉我,我会喜欢一些反馈。

但有一点,据我所知,黄瓜似乎正在发挥作用。但是,每当我尝试运行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

任何反馈和/或见解都会非常有用,也会受到赞赏!

1 个答案:

答案 0 :(得分:1)

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

` guard 'spork-rails' do

guard 'spork' do

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