0
0
Fork 0

added simple guardfile

This commit is contained in:
Gibheer 2012-11-13 21:56:18 +01:00
parent 77130b3a23
commit d9c22d2103
1 changed files with 15 additions and 0 deletions

15
Guardfile Normal file
View File

@ -0,0 +1,15 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard 'bundler' do
watch('Gemfile')
# Uncomment next line if Gemfile contain `gemspec' command
watch(/^.+\.gemspec/)
end
guard 'rspec', :version => 2 do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end