dotpromo/ar_json_serialize

View on GitHub
Guardfile

Summary

Maintainability
Test Coverage
guard 'rspec', cmd: 'rspec' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

guard 'bundler' do
  watch('Gemfile')
  watch('ar_json_serialize.gemspec')
end

guard :rubocop do
  watch(%r{.+\.rb$})
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

guard :preek, run_all_dir: 'lib' do
    watch(/^lib\/(.*).rb/)
end