Sha256: 2b48e30963ee4282ab7bc51a8e7bb80afaa2ef7232736d8bbd11d1df4666c38e

Contents?: true

Size: 555 Bytes

Versions: 4

Compression:

Stored size: 555 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', all_after_pass: true, failed_mode: :focus, all_on_start: true, cmd: 'rspec spec --drb --debugger' 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{^spec/support/(.+)\.rb$})                  { "spec" }
end

guard 'spork', :test_unit => false do
  watch('Gemfile')
  watch('Gemfile.lock')
  watch('lib/cupcakinator.rb')
  watch('spec/spec_helper.rb') { :rspec }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cupcakinator-2.0.0 Guardfile
cupcakinator-1.1.2 Guardfile
cupcakinator-1.1.1 Guardfile
cupcakinator-1.1.0 Guardfile