Sha256: 12c087cf75e9c0dce717548b0619bb838a1fb57a3a55bd42a23d0a14c2bcd68c

Contents?: true

Size: 346 Bytes

Versions: 3

Compression:

Stored size: 346 Bytes

Contents

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

guard 'rspec', :version => 2, :all_after_pass => false, :all_on_start => false, :cli => '--color --format nested --fail-fast' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { 'spec' }
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
rails_best_practices-1.19.1 Guardfile
bullet-5.7.0 Guardfile
bullet-5.6.1 Guardfile