我有一个带有文件spec/features/login_spec.rb
的Rails 3.2应用程序。我正在尝试 - 没有运气 - 让Guard在这个文件发生变化时运行。
这是我的Guardfile
:
guard :rspec do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
# 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(%r{^spec/factories/(.+)\.rb$}) { "spec" }
watch('config/routes.rb') { "spec/routing" }
watch('app/controllers/application_controller.rb') { "spec/controllers" }
end
guard 'spork', :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 }
end
当我更改spec/models/
或spec/support/
中的文件时,它会接收更改并重新运行。它只是spec/features/' that's no good. It doesn't seem to be Rspec's fault, as running
rspec`运行这些文件(因此在Guard控制台中点击[enter])。
当我将文件名更改为login_spec.rb
之外的任何内容(好吧,我尝试过的任何内容)时,它都会被拾取。
那么为什么Guard不喜欢这个文件名呢?任何帮助将不胜感激。