Sha256: 94f91e5134f0943f8d60ab4854fdd2d588bb9a73c25a7fceac47fd81efd89708
Contents?: true
Size: 606 Bytes
Versions: 102
Compression:
Stored size: 606 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(%r{^lib/epitools/([^/]+)/.+\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
102 entries across 102 versions & 1 rubygems