Sha256: cd3764c28dfe8d0722f46ff4fd62eb42c12d2aefa379af1e21c0d6f9b399975a

Contents?: true

Size: 283 Bytes

Versions: 8

Compression:

Stored size: 283 Bytes

Contents

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

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

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

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
flipper-mongo-0.6.0 Guardfile
flipper-mongo-0.5.0 Guardfile
flipper-mongo-0.3.0 Guardfile
flipper-0.3.0 Guardfile
flipper-0.2.1 Guardfile
flipper-mongo-0.2.2 Guardfile
flipper-mongo-0.2.1 Guardfile
flipper-0.2.0 Guardfile