我无法让 Guard 在 jruby 上工作。我已经通过 rvm 在 1.9.3 旁边安装了 jruby。尝试在 1.9.3 上运行 Guard - 工作正常。如何使其在spec
or的每次更改时自动运行规范lib
?
这是我运行后得到bundle exec guard
的,同时没有更改文件
vagrant@precise64:/vagrant/sample$ bundle exec guard
21:16:46 - INFO - Guard uses TerminalTitle to send notifications.
21:16:47 - INFO - Guard::RSpec is running
21:16:47 - INFO - Running all specs
...
Finished in 0.025 seconds
3 examples, 0 failures
21:17:20 - INFO - Guard is now watching at '/vagrant/sample'
before_session hook failed: Errno::ENOENT: No such file or directory - /vagrant/sample
org/jruby/RubyFile.java:333:in `initialize'
(see _pry_.hooks.errors to debug)
[1] guard(main)>
再次运行规范的唯一方法是在此处按 ENTER。我也无法确定这No such file or directory
件事的来源(它不会在 1.9.3 MRI 上弹出)。我不熟悉守卫的内部结构,也无法真正找到发生这种情况的原因。
我Guardfile
的是标准的:
guard 'rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end
并且Gemfile
仅包含:
gem 'rspec', '~>2.13.0'
gem 'guard-rspec'
gem 'rb-inotify', '~>0.9'