Sha256: 700c05a53dc1626f9f4f36d677596ac55029eadeb4fe9360c70a23a5a4165cff

Contents?: true

Size: 970 Bytes

Versions: 2

Compression:

Stored size: 970 Bytes

Contents

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

notification :growl

guard 'rspec', :version => 2, :all_on_start => false, :all_after_pass => false, :cli => "--color --format nested", :bundler => true  do
  watch(%r{^spec/.*_spec\.rb$})
  watch(%r{^lib/(.*)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch(%r{^controllers/(.+)\.rb$})     { |m| "spec/integration/#{m[1]}_spec.rb" }
  watch(%r{^models/(.+)\.rb$})     { |m| "spec/models/#{m[1]}_spec.rb" }
  watch(%r{^spec/factories.rb$})     { |m| "spec/factories_spec.rb" }
  watch(%r{^spec/factories/*.rb$})     { |m| "spec/factories_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end


guard 'cucumber', :all_on_start => false, :notification => false 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' }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vimjar-0.3.1 Guardfile
vimjar-0.3.0 Guardfile