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

Version Path
epitools-0.5.19 Guardfile
epitools-0.5.18 Guardfile
epitools-0.5.17 Guardfile
epitools-0.5.16 Guardfile
epitools-0.5.15 Guardfile
epitools-0.5.14 Guardfile
epitools-0.5.13 Guardfile
epitools-0.5.12 Guardfile
epitools-0.5.11 Guardfile
epitools-0.5.10 Guardfile
epitools-0.5.9 Guardfile
epitools-0.5.8 Guardfile
epitools-0.5.7 Guardfile
epitools-0.5.6 Guardfile
epitools-0.5.5 Guardfile
epitools-0.5.4 Guardfile
epitools-0.5.3 Guardfile
epitools-0.5.2 Guardfile