Sha256: 481adaad11032c71a33e13695e7d3a2ed58e8ec48be4348a8f161edd4bbc28d4
Contents?: true
Size: 494 Bytes
Versions: 3
Compression:
Stored size: 494 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, :failed_mode => :keep, :cmd => "bundle exec rspec", } guard 'rspec', rspec_options do watch(%r{^spec/.+_spec\.rb$}) { "spec" } watch(%r{^lib/(.+)\.rb$}) { "spec" } watch(%r{shared_adapter_specs\.rb$}) { "spec" } watch('spec/helper.rb') { "spec" } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
flipper-0.7.0.beta3 | Guardfile |
flipper-0.7.0.beta2 | Guardfile |
flipper-0.7.0.beta1 | Guardfile |