Sha256: ba1f261325f8e145d51e48be0eeedfdb1e866f6ca8e99b86f46a17cca5fa46a5

Contents?: true

Size: 297 Bytes

Versions: 5

Compression:

Stored size: 297 Bytes

Contents

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

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

guard 'rspec', cmd: 'rspec' do
  watch(%r{^spec/.+_spec\.rb$}) { "spec" }
  watch(%r{^lib/(.+)\.rb$}) { "spec" }
  watch('spec/helper.rb')  { "spec" }
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
flipper-activerecord-0.1.3 Guardfile
flipper-activerecord-0.1.2 Guardfile
flipper-activerecord3dot2-0.1.2 Guardfile
flipper-activerecord-0.1.1 Guardfile
flipper-activerecord-0.1.0 Guardfile