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