Sha256: dd9a38522badedbcd8e02ae9a8e9eafab7994ca6f5e8a7c1233dbb0b460f0b03
Contents?: true
Size: 323 Bytes
Versions: 63
Compression:
Stored size: 323 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme notification :growl if `uname` =~ /Darwin/ guard :bundler do watch('Gemfile') 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
63 entries across 63 versions & 2 rubygems