Sha256: 3dae6d12af5d6709230bf8eab1bfebad466da10df3b0ae352dbbd4f01c608251

Contents?: true

Size: 428 Bytes

Versions: 3

Compression:

Stored size: 428 Bytes

Contents

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

guard "rspec",
      cmd: "bundle exec rspec",
      all_after_pass: true,
      all_on_start: true do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch("spec/spec_helper.rb")  { "spec" }
end

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activerecord-turntable-3.0.0.alpha3 Guardfile
activerecord-turntable-3.0.0.alpha2 Guardfile
activerecord-turntable-3.0.0.alpha1 Guardfile