Sha256: 5aed9b2a7073e251a3b572857faee8846649264131ba7a86406e0fa2af99ad79
Contents?: true
Size: 453 Bytes
Versions: 8
Compression:
Stored size: 453 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$}) watch(%r{^lib/(.+)\.rb$}) { |m| [ "spec/unit/#{m[1]}_spec.rb", "spec/integration/#{m[1]}_spec.rb", ] } watch('spec/helper.rb') { "spec" } end
Version data entries
8 entries across 8 versions & 1 rubygems