From 311b0269b4eb9839fa63f80c8d7a58f32b8138a0 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 18 Nov 2021 13:16:36 +0000 Subject: Add latest changes from gitlab-org/gitlab@14-5-stable-ee --- Guardfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Guardfile') diff --git a/Guardfile b/Guardfile index 1d9ec406c1d..66a689ed978 100644 --- a/Guardfile +++ b/Guardfile @@ -9,7 +9,7 @@ cmd = ENV['GUARD_CMD'] || (ENV['SPRING'] ? 'spring rspec' : 'bundle exec rspec') directories %w(app ee lib rubocop tooling spec) rspec_context_for = proc do |context_path| - OpenStruct.new(to_s: "spec").tap do |rspec| + OpenStruct.new(to_s: "spec").tap do |rspec| # rubocop:disable Style/OpenStructUse rspec.spec_dir = "#{context_path}spec" rspec.spec = ->(m) { Guard::RSpec::Dsl.detect_spec_file_for(rspec, m) } rspec.spec_helper = "#{rspec.spec_dir}/spec_helper.rb" @@ -19,7 +19,7 @@ rspec_context_for = proc do |context_path| end rails_context_for = proc do |context_path, exts| - OpenStruct.new.tap do |rails| + OpenStruct.new.tap do |rails| # rubocop:disable Style/OpenStructUse rails.app_files = %r{^#{context_path}app/(.+)\.rb$} rails.views = %r{^#{context_path}app/(views/.+/[^/]*\.(?:#{exts}))$} -- cgit v1.2.1