Sha256: cc63bb135351940cf946245f6159cc6f43c29db36f0cafe31602130640f07da8
Contents?: true
Size: 305 Bytes
Versions: 13
Compression:
Stored size: 305 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/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
13 entries across 13 versions & 1 rubygems