Sha256: f6735d9b545ede6889724ba77f58758eb80512d1bbe9dc124970af15a6bec91e

Contents?: true

Size: 375 Bytes

Versions: 14

Compression:

Stored size: 375 Bytes

Contents

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

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

rspec_options = {
  :all_after_pass => false,
  :all_on_start   => false,
}

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

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
flipper-redis-0.7.0.beta1 Guardfile
flipper-redis-0.6.2 Guardfile
flipper-redis-0.6.1 Guardfile
flipper-redis-0.6.0 Guardfile
flipper-redis-0.5.0 Guardfile
flipper-redis-0.3.0 Guardfile
flipper-redis-0.2.0 Guardfile
flipper-mongo-0.2.0 Guardfile
flipper-mongo-0.1.1 Guardfile
flipper-redis-0.1.1 Guardfile
flipper-0.1.1 Guardfile
flipper-mongo-0.1.0 Guardfile
flipper-redis-0.1.0 Guardfile
flipper-0.1.0 Guardfile