-
Notifications
You must be signed in to change notification settings - Fork 2
/
Guardfile
49 lines (40 loc) · 1.21 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
46
47
48
49
# frozen_string_literal: true
group :everything, halt_on_fail: true do
rspec_options = {
all_after_pass: false,
all_on_start: false,
failed_mode: :keep,
cmd: "bundle exec rspec",
}
guard :rspec, rspec_options do
require "guard/rspec/dsl"
dsl = Guard::RSpec::Dsl.new(self)
rspec = dsl.rspec
watch(rspec.spec_files)
ruby = dsl.ruby
dsl.watch_spec_files_for(ruby.lib_files)
rails = dsl.rails(view_extensions: ["haml"])
dsl.watch_spec_files_for(rails.app_files)
dsl.watch_spec_files_for(rails.views)
watch(rails.controllers) do |m|
[
rspec.spec.call("controllers/#{m[1]}_controller"),
rspec.spec.call("requests/#{m[1]}_controller"),
]
end
watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
end
guard :haml_lint, all_on_start: false do
watch(/.+\.html.*\.haml$/)
watch(%r{(?:.+/)?\.haml-lint\.yml$}) { |m| File.dirname(m[0]) }
end
guard :rubocop, all_on_start: false, cli: ["-A", "--display-cop-names"] do
watch(/.+\.rb$/)
watch(%r{bin/*})
watch(/Guardfile/)
watch(/Rakefile/)
watch(/.+\.rake$/)
watch(/.+\.ru$/)
watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end
end