Here's what I've got working so far with Vagrant (Im only working with RSpec at the moment so Cucumber stuff is disabled):
Command
guard start --force-polling --no-interactions
Gemfile
group :test do
gem 'guard-rspec'
gem 'guard-spork'
end
Guardfile
guard 'spork', :cucumber => false 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') { :rspec }
watch(%r{features/support/}) { :cucumber }
end
guard 'rspec', :cli => "--drb" do
watch('spec/spec_helper.rb') { "spec" }
watch('config/routes.rb') { "spec/routing" }
watch('app/controllers/application_controller.rb') { "spec/controllers" }
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" }
end
Here's what I've got working so far with Vagrant (Im only working with RSpec at the moment so Cucumber stuff is disabled):
Command
Gemfile
Guardfile