-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathGuardfile
24 lines (19 loc) · 966 Bytes
/
Guardfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
notification :off
guard :spork do
watch('Gemfile')
watch('spec/spec_helper.rb') { :rspec }
watch(%r{^spec/support/.+\.rb$}) { :rspec }
end
guard :rspec, cmd: "bundle exec rspec --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('lib/mb/config_validator.rb') { "spec/unit/mb/config_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end
guard :cucumber, cli: "--drb --require features --format pretty", all_on_start: false, all_after_pass: 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' }
watch(%r{^lib/mb/cli.rb}) { 'features/core' }
end