forked from bikeindex/bike_index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Guardfile
45 lines (37 loc) · 1.68 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
directories %w(app spec lib config)
group :red_green_refactor, halt_on_fail: true do
rspec_options = {
cmd: "bin/rspec -f progress",
cmd_additional_args: "--require rails_helper --no-profile --order defined",
run_all: {
cmd: "bin/parallel_rspec --quiet --test-options='-f documentation -o /dev/null -f progress",
cmd_additional_args: "'",
},
failed_mode: :focus,
all_after_pass: false,
}
guard :rspec, rspec_options do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch(%r{^config/initializers/(.+)\.rb$}) { |m| "spec/initializers/#{m[1]}_spec.rb" }
watch("spec/spec_helper.rb") { "spec" }
watch("spec/rails_helper.rb") { "spec" }
watch(%r{^app/controllers/api/v2/(.+)\.rb$}) { |m| "spec/requests/api/v2/#{m[1]}_spec.rb" }
watch(%r{^app/controllers/api/v3/(.+)\.rb$}) { |m| "spec/requests/api/v3/#{m[1]}_spec.rb" }
watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch(%r{^app/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
watch("config/routes.rb") { "spec/routing" }
watch("app/controllers/application_controller.rb") { "spec/controllers" }
watch(%r{^app/controllers/(.+)_controller\.rb$}) { |m| "spec/requests/#{m[1]}_request_spec.rb" }
watch(%r{^app/controllers/(.+)_controller\.rb$}) { |m| "spec/requests/#{m[1]}_controller_spec.rb" }
end
guard :rubocop, all_on_start: false do
watch(%r{^app/(.+)\.rb$})
watch(%r{^spec/(.+)\.rb$})
watch(%r{^config/(.+)\.rb$})
watch(%r{^lib/(.+)\.rb$})
watch(%r{^lib/(.+)\.rake$})
watch(%r{^db/(.+)\.rb$})
watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end
end