rcarver/orel

View on GitHub
Guardfile

Summary

Maintainability
Test Coverage
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', :version => 2 do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/orel/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/helper.rb')  { "spec" }
end