Sha256: 85b8c8db66f2644661fdaf8a3c14abc4147d2f66369c98685fe9a2b8ed27b55c
Contents?: true
Size: 300 Bytes
Versions: 23
Compression:
Stored size: 300 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :rspec, all_on_start: true, all_after_pass: true, keep_mode: :failed do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { 'spec' } end
Version data entries
23 entries across 23 versions & 1 rubygems