Sha256: d111abc75f173dafee3e1efa96411e0c8cc94a15190a9b265228371170452779

Contents?: true

Size: 742 Bytes

Versions: 21

Compression:

Stored size: 742 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, :all_after_pass => false, :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{^lib/.+\.erb$})                  { "features" }
  watch(%r{^lib/.+\.css$})                  { "features" }

end

Version data entries

21 entries across 21 versions & 3 rubygems

Version Path
ugly_face-0.8 Guardfile
ugly_face-0.7 Guardfile
ugly_face-0.6 Guardfile
ugly_face-0.5 Guardfile
ugly_face-0.4 Guardfile
ugly_face-0.3 Guardfile
ugly_face-0.2 Guardfile
ugly_face-0.1 Guardfile
pretty_face-0.10.3 Guardfile
sponte_pretty_face-0.10.3 Guardfile
pretty_face-0.10.2 Guardfile
pretty_face-0.10.1 Guardfile
pretty_face-0.10 Guardfile
pretty_face-0.9.1 Guardfile
pretty_face-0.9 Guardfile
pretty_face-0.8.2 Guardfile
pretty_face-0.8.1 Guardfile
pretty_face-0.8 Guardfile
pretty_face-0.7 Guardfile
pretty_face-0.6.1 Guardfile