Sha256: 2d5ddf2709edd8dd97ea9096264b2a1efb76d5dc3fa335279d2a834cc04b2d4a
Contents?: true
Size: 516 Bytes
Versions: 18
Compression:
Stored size: 516 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme #guard 'spork', :wait => 50 do # watch('Gemfile') # watch('Gemfile.lock') # watch('spec/spec_helper.rb') #end guard :rspec, :version => 2, :cli => "--color", :bundler => false, :all_after_pass => false, :all_on_start => false, :keep_failed => false do #guard 'rspec', :version => 2 do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/epitools/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
18 entries across 18 versions & 1 rubygems