Sha256: b779886f8c02c7018ab01a759d2d0e1f519ffef5147bd14b8d22705120f2d4cc
Contents?: true
Size: 452 Bytes
Versions: 8
Compression:
Stored size: 452 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, :keep_failed => false, } 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
8 entries across 8 versions & 2 rubygems