vagrant-lxc-ng/Guardfile
2013-02-25 02:04:31 -03:00

11 lines
294 B
Ruby

# A sample Guardfile
# More info at https://github.com/guard/guard#readme
raise 'You should start guard from the dev box!' unless ENV['USER'] == 'vagrant'
guard 'rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch('spec/spec_helper.rb') { 'spec' }
watch('lib/provider') { 'spec' }
end