Sha256: e6db36733478fee19f61f189a6c31f2eba8bbc84d788204c9caef3ea1ff35f4b

Contents?: true

Size: 681 Bytes

Versions: 14

Compression:

Stored size: 681 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$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

guard 'cucumber', :notification => true, :cli => '--profile default' 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

14 entries across 14 versions & 1 rubygems

Version Path
data_magic-0.14 Guardfile
data_magic-0.13 Guardfile
data_magic-0.12 Guardfile
data_magic-0.11 Guardfile
data_magic-0.10 Guardfile
data_magic-0.9 Guardfile
data_magic-0.8 Guardfile
data_magic-0.7 Guardfile
data_magic-0.6 Guardfile
data_magic-0.5 Guardfile
data_magic-0.4 Guardfile
data_magic-0.3 Guardfile
data_magic-0.2 Guardfile
data_magic-0.1 Guardfile