File: Guardfile

package info (click to toggle)
ruby-varia-model 0.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 204 kB
  • sloc: ruby: 783; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 678 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
notification :off
interactor :coolline

guard 'spork' do
  watch('Gemfile')
  watch('spec/spec_helper.rb')     { :rspec }
  watch(%r{^spec/support/.+\.rb$}) { :rspec }
end

guard 'rspec', version: 2, cli: "--color --drb --format Fuubar", all_on_start: false, all_after_pass: false do
  watch(%r{^spec/unit/.+_spec\.rb$})
  watch(%r{^spec/acceptance/.+_spec\.rb$})

  watch(%r{^lib/(.+)\.rb$})                     { |m| "spec/unit/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')                  { "spec" }
  watch(%r{^spec/support/.+\.rb$})              { "spec" }
  watch(%r{^spec/shared_examples/(.*)\.rb$})    { |m| ["spec/unit/#{m[1]}_spec.rb", "spec/unit/#{m[1]}"] }
end