summaryrefslogtreecommitdiff
path: root/Guardfile
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-01-13 18:10:55 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-01-13 18:10:55 +0000
commit716896e8cac8a516cd36efada8c8c5f383b63f62 (patch)
treecfa6c76580b2a3a1b48c0cb6bc9d9dc1caa211ab /Guardfile
parent9b1b702f0fc3820e13fd3810bf096687d3378dc5 (diff)
downloadgitlab-ce-716896e8cac8a516cd36efada8c8c5f383b63f62.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Guardfile b/Guardfile
index baaa52bd204..1d9ec406c1d 100644
--- a/Guardfile
+++ b/Guardfile
@@ -6,7 +6,7 @@ require "guard/rspec/dsl"
cmd = ENV['GUARD_CMD'] || (ENV['SPRING'] ? 'spring rspec' : 'bundle exec rspec')
-directories %w(app ee lib spec)
+directories %w(app ee lib rubocop tooling spec)
rspec_context_for = proc do |context_path|
OpenStruct.new(to_s: "spec").tap do |rspec|
@@ -42,6 +42,8 @@ guard_setup = proc do |context_path|
# Ruby files
watch(%r{^#{context_path}(lib/.+)\.rb$}) { |m| rspec.spec.call(m[1]) }
+ watch(%r{^#{context_path}(rubocop/.+)\.rb$}) { |m| rspec.spec.call(m[1]) }
+ watch(%r{^#{context_path}(tooling/.+)\.rb$}) { |m| rspec.spec.call(m[1]) }
# Rails files
rails = rails_context_for.call(context_path, %w(erb haml slim))