Sha256: c9e04931b04ac9c913cb48e22fd70e0aff391a0cb525dcdefd99d2198afcbffd
Contents?: true
Size: 285 Bytes
Versions: 10
Compression:
Stored size: 285 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme notification :terminal_notifier guard 'rspec', :version => 2 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
10 entries across 10 versions & 1 rubygems