forked from graphiti-api/graphiti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Guardfile
32 lines (26 loc) · 889 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
25
26
27
28
29
30
31
32
guard :rspec, cmd: "bundle exec rspec --color --format documentation" do
require "guard/rspec/dsl"
dsl = Guard::RSpec::Dsl.new(self)
watch(%r{^spec/(.*)/?(.*)_spec\.rb$})
# Feel free to open issues for suggestions and improvements
# RSpec files
rspec = dsl.rspec
watch(rspec.spec_helper) { rspec.spec_dir }
watch(rspec.spec_support) { rspec.spec_dir }
watch(rspec.spec_files)
# Ruby files
ruby = dsl.ruby
dsl.watch_spec_files_for(ruby.lib_files)
# Rails files
rails = dsl.rails(view_extensions: %w[erb haml slim])
watch(rails.controllers) do |m|
[
rspec.spec.call("controllers/#{m[1]}_controller"),
rspec.spec.call("api/#{m[1]}")
]
end
# Rails config changes
watch(rails.spec_helper) { rspec.spec_dir }
watch(rails.routes) { "#{rspec.spec_dir}/routing" }
watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
end