Sha256: d1196f1a044d05b2b687ade3fb55928c96678174e1d8a2341e38458fb6b26226
Contents?: true
Size: 682 Bytes
Versions: 5
Compression:
Stored size: 682 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" } end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
pretty_face-0.5 | Guardfile |
pretty_face-0.4 | Guardfile |
pretty_face-0.3 | Guardfile |
pretty_face-0.2 | Guardfile |
pretty_face-0.1 | Guardfile |