diff options
author | Robert Speicher <rspeicher@gmail.com> | 2021-01-20 13:34:23 -0600 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2021-01-20 13:34:23 -0600 |
commit | 6438df3a1e0fb944485cebf07976160184697d72 (patch) | |
tree | 00b09bfd170e77ae9391b1a2f5a93ef6839f2597 /Guardfile | |
parent | 42bcd54d971da7ef2854b896a7b34f4ef8601067 (diff) | |
download | gitlab-ce-6438df3a1e0fb944485cebf07976160184697d72.tar.gz |
Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42
Diffstat (limited to 'Guardfile')
-rw-r--r-- | Guardfile | 4 |
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)) |