From ad3b51bbdb948f37926a32ceaf395adee8049457 Mon Sep 17 00:00:00 2001 From: Siddharth Asthana Date: Thu, 4 Nov 2021 00:37:40 +0530 Subject: [PATCH] Fix the Style/OpenStructUse Cop offense for Guardfile Changelog: other --- Guardfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Guardfile b/Guardfile index 1d9ec406c1dd..66a689ed9789 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}))$}