Sha256: a52a379b490ddd4f3f16869737795a4d487c11117a153dd169a4e5dd11461a7b
Contents?: true
Size: 709 Bytes
Versions: 9
Compression:
Stored size: 709 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme require 'growl' guard 'rspec', { cli: '--colour --format documentation --fail-fast', version: 2, all_after_pass: false, all_on_start: false, notify: true } do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{/lib/facades/helpers/(.+)\.rb$}) { |m| "spec/unit/helpers/#{m[1]}_spec.rb" } watch(%r{/lib/facades/patterns/(.+)\.rb$}) { |m| "spec/unit/patterns/#{m[1]}_spec.rb" } end guard 'coffeescript', :input => 'src/javascript', :output => 'app/assets/javascripts/', :all_on_start => true
Version data entries
9 entries across 9 versions & 1 rubygems