Sha256: 081913955b039721c904236fa5d73d082e1bb138f3256db78bed0ee6b0290d89

Contents?: true

Size: 647 Bytes

Versions: 13

Compression:

Stored size: 647 Bytes

Contents

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

guard 'rspec', :cli => "--format RSpec::Pride --tty --fail-fast"  do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

guard 'cucumber', :cli => '--tags ~@wip --format Cucumber::Pride::Formatter' do
  watch(%r{^features/.+\.feature$})
  watch(%r{^(bin|lib)/.+$})                 { 'features' }
  watch(%r{^features/support/.+$})          { 'features' }
  watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
git-semaphore-2.1.0 Guardfile
git-semaphore-2.0.1 Guardfile
git-semaphore-2.0.0 Guardfile
git-semaphore-1.2.0 Guardfile
git-semaphore-1.1.0 Guardfile
git-semaphore-1.0.0 Guardfile
git-semaphore-0.0.9 Guardfile
git-semaphore-0.0.7 Guardfile
git-semaphore-0.0.6 Guardfile
git-semaphore-0.0.5 Guardfile
git-semaphore-0.0.4 Guardfile
git-semaphore-0.0.3 Guardfile
git-semaphore-0.0.2 Guardfile