Sha256: dd118d638e0719531fe89570ac7e81a57163ea4d2cceafc0ee0b75f92bec7fd4

Contents?: true

Size: 655 Bytes

Versions: 8

Compression:

Stored size: 655 Bytes

Contents

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

guard 'rspec', :cli => '--color --format Fuubar' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { "spec" }
  watch('spec/spec_helper.rb')  { "spec" }
end

guard 'cucumber', :notification => true, :cli => '--profile focus' 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/.+\.rb$})                   { 'features' }
  watch(%r{^features/yaml/.+$})             { 'features' }
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
data_magic-0.19 Guardfile
data_magic-0.18 Guardfile
data_magic-0.17 Guardfile
data_magic-0.16.1 Guardfile
data_magic-0.16 Guardfile
data_magic-0.15.2 Guardfile
data_magic-0.15.1 Guardfile
data_magic-0.15 Guardfile