使用WDM Gem时,Guard会静默退出

时间:2013-12-31 19:57:49

标签: ruby guard wdm

每当我尝试在Windows上使用wdm与guard一起使用时,守卫会默默地退出。但是,如果我强制轮询,那么防护工作正常。可能最好的方式来说明这一点就是一个例子。当我用wdm运行后卫时会发生这种情况:

C:/path/to/code>bundle exec guard init rspec
11:47:02 - INFO - rspec guard added to Guardfile, feel free to edit it

C:/path/to/code>bundle exec guard
11:48:06 - INFO - Guard is using TerminalTitle to send notifications.
11:48:06 - INFO - Guard::RSpec is running
11:48:06 - INFO - Guard is now watching at 'C:/path/to/code'

C:/path/to/code>

但是,如果我强制警卫轮询更改,那么它会在警卫控制台结束时表现正确:

C:/path/to/code>bundle exec guard -p
11:50:03 - INFO - Guard is using TerminalTitle to send notifications.
11:50:03 - INFO - Guard::RSpec is running
11:50:03 - INFO - Guard is now watching at 'C:/path/to/code'
[1] guard(main)>

我希望有人可以解决这个问题。我试过很多搜索,但一直没能找到这个问题的答案。

我的Gemfile的相关摘录:

source 'http://rubygems.org'
ruby '1.9.3'
require "rbconfig"
gem 'rails', '3.2.13'
gem "figaro", ">= 0.5.3"
gem "rspec-rails", ">= 2.12.2", :group => [:development, :test]
gem "factory_girl_rails", ">= 4.2.0", :group => [:development, :test]
group :test do
    gem "capybara", ">= 2.0.2"
    gem "database_cleaner", ">= 0.9.1"
    gem "email_spec", ">= 1.4.0"
    gem "guard-rspec"
    gem "wdm", ">= 0.1.0" if RbConfig::CONFIG["target_os"] =~ /mswin|mingw|cygwin/i
end

我的警卫档案:

# 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

1 个答案:

答案 0 :(得分:0)

我对此没有答案,但我想我可能会收集一些与之相关的问题。

主要问题是listen gem中的Problems on Windows

guard Guard 2.0.3 daemon doesn't stay running on windows上存在一个相关问题,该问题因listen问题而被暂停。

wdm gem还有一个未解决的问题:fail with listen gem

抱歉,我无法解决,但至少有这个问题的持续问题。使用Ruby for Windows的少数人就是这样的宝石!我为双关语道歉:)。