Sha256: cd3764c28dfe8d0722f46ff4fd62eb42c12d2aefa379af1e21c0d6f9b399975a
Contents?: true
Size: 283 Bytes
Versions: 8
Compression:
Stored size: 283 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'bundler' do watch('Gemfile') watch(/^.+\.gemspec/) end guard 'rspec' do watch(%r{^spec/.+_spec\.rb$}) { "spec" } watch(%r{^lib/(.+)\.rb$}) { "spec" } watch('spec/helper.rb') { "spec" } end
Version data entries
8 entries across 8 versions & 2 rubygems