Sha256: c9d0d03e76519ece6e8715e8c8584e9d49c80b06f441382e959a361747d8d18f

Contents?: true

Size: 1014 Bytes

Versions: 20

Compression:

Stored size: 1014 Bytes

Contents

guard 'spork' do
  watch('Gemfile')
  watch('spec/spec_helper.rb')  { :rspec }
  watch(%r{^features/support/}) { :cucumber }
end

guard 'yard', stdout: '/dev/null', stderr: '/dev/null' do
  watch(%r{app/.+\.rb})
  watch(%r{lib/.+\.rb})
  watch(%r{ext/.+\.c})
end

guard 'rspec', cli: '--color --drb --format Fuubar', all_on_start: false, all_after_pass: false do
  watch(%r{^spec/unit/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})          { |m| "spec/unit/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')       { 'spec' }
end

guard 'cucumber', cli: '--drb --format pretty --tags ~@no_run --tags ~@wip', all_on_start: false, all_after_pass: false do
  watch(%r{^features/.+\.feature$})
  watch(%r{^features/support/.+$})                      { 'features' }
  watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }

  watch(%r{^lib/berkshelf/cli.rb})                      { 'features' }
end

guard 'cane', run_all_on_start: false do
  watch(/.*\.rb/)
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
berkshelf-2.0.18 Guardfile
berkshelf-2.0.17 Guardfile
berkshelf-2.0.16 Guardfile
berkshelf-2.0.15 Guardfile
berkshelf-2.0.14 Guardfile
berkshelf-2.0.13 Guardfile
berkshelf-2.0.12 Guardfile
berkshelf-2.0.11 Guardfile
berkshelf-2.0.10 Guardfile
berkshelf-2.0.9 Guardfile
berkshelf-2.0.8 Guardfile
berkshelf-3.0.0.beta2 Guardfile
berkshelf-3.0.0.beta1 Guardfile
berkshelf-2.0.7 Guardfile
berkshelf-2.0.6 Guardfile
berkshelf-2.0.5 Guardfile
berkshelf-2.0.4 Guardfile
berkshelf-2.0.3 Guardfile
berkshelf-2.0.1 Guardfile
berkshelf-2.0.0 Guardfile