Rails:Guard为什么不等待?

时间:2014-01-07 23:35:12

标签: ruby-on-rails rspec guard autotest

我正在尝试使用Guard代替Autotest RSpec,但我对它的行为感到有些困惑。当我运行bundle exec guard时,它只会启动pry窗口。我认为它应该像Autotest一样,每当有变化时它就会继续在后台运行测试。我在这里缺少什么?

当我启动bundle exec guard时,这就是我得到的:

18:52:44 - INFO - Guard is using TerminalTitle to send notifications.
18:52:44 - INFO - Guard::RSpec is running
18:52:44 - INFO - Guard is now watching at '/path/to/my/application'
[1] guard(main)> 

我不确定该怎么做。

3 个答案:

答案 0 :(得分:0)

您是否生成了Guardfile? (。app目录中的./Guardfile)。我看起来像这样:

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

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('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

上面列出的输出看起来是正确的,Guard会为您提供交互式shell以及在文件更改时触发事物。

答案 1 :(得分:0)

使用-i选项运行它应该有帮助

bundle exec guard -i

答案 2 :(得分:0)

Guard正在运行Pry以便与用户进行交互。可能你没有设置在启动时运行RSpec保护。要手动运行,请键入rspec并按回车键。它将运行你的守卫。要运行所有警卫(如果你有超过这个),只需输入all并点击返回。

PS Guard仍在观察并且会在文件更改时保持警惕,但它显示Pry提示允许用户交互(如上所述)。