1

我正在关注Ruby on Rails 教程

一切运行良好,但我注意到 Guard 仅在我保存一些文件(视图或控制器文件)后运行,但在我保存其他文件(路由或规范文件)时不运行。我已经让 Guard 连接到 Spork,不确定这是否重要。

当我查看运行 Guard/Spork 的控制台窗口时,我在保存非运行测试后发现了一个错误:

Exception encountered: #<LoadError: no such file to load -- /Users/Tyler/Development/FirstRails/sample_app/spec/routing

我不确定Guard文件的语法是什么,我只是复制了示例。这是警卫文件:

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', :version => 2, :all_after_pass=>false, :cli => '--drb' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }

  # my edits
  watch(%r{^app/controllers/(.+)_(controller)\.rb$}) do |m|
   ["spec/routing/#{m[1]}_routing}spec.rb",
   "spec/#{m[2]}s/#{m[1]}_${m[2]}_spec.rb",
   "spec/acceptance/#{m[1]}_spec.rb",
   "spec/requests/#{m[1]}_spec.rb"]
 end

  # Rails example
  watch(%r{^spec/.+_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{^lib/(.+)\.rb$})                           { |m| "spec/lib/#{m[1]}_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('spec/spec_helper.rb')                        { "spec" }
  watch('config/routes.rb')                           { "spec/routing" }
  watch('app/controllers/application_controller.rb')  { "spec/controllers" }
  # Capybara request specs
  watch(%r{^app/views/(.+)/.*\.(erb|haml)$})          { |m| "spec/requests/#{m[1]}_spec.rb" }
end

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

特别是,我的编辑:

  # my edits
  watch(%r{^app/controllers/(.+)_(controller)\.rb$}) do |m|
   ["spec/routing/#{m[1]}_routing}spec.rb",
   "spec/#{m[2]}s/#{m[1]}_${m[2]}_spec.rb",
   "spec/acceptance/#{m[1]}_spec.rb",
   "spec/requests/#{m[1]}_spec.rb"]
 end    

我没有规范/路由文件夹。

有人看到一个简单的错字吗?还是我需要考虑其他一些因素?

我在轨道上 3.2

谢谢

4

2 回答 2

2

找到了:

 ["spec/routing/#{m[1]}_routing}spec.rb",

注意和之间的第二}routingspec

现在读到:

 ["spec/routing/#{m[1]}_routing_spec.rb",

还解释了缺少的目录 shananigans。

谢谢!

于 2012-02-01T20:18:19.860 回答
1

无法评论您的回答 Tyler(可能是因为我是新来的),但我认为您在 Guardfile 中重复了几行:

watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb')  { "spec" }

我注意到这是两次运行测试;删除重复的行解决了这个问题。

于 2012-09-07T12:27:18.447 回答