Sha256: f0dd5ad2cdfec63d4d1e1d696626885c0c8624127c13d906b5eb00e584f3490b
Contents?: true
Size: 390 Bytes
Versions: 20
Compression:
Stored size: 390 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :rspec, cmd: 'bundle exec rspec' do watch(%r{^spec/.+_spec\.rb$}) # watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)\.rb$}) { 'spec' } watch('spec/spec_helper.rb') { 'spec' } watch(/spec\/fixtures\/(.+)/) { 'spec' } watch('Guardfile') { 'spec' } end
Version data entries
20 entries across 20 versions & 1 rubygems