From 946dd9a441d8fe1e046237473f9c3fccae2dab65 Mon Sep 17 00:00:00 2001 From: Jon Rowe Date: Thu, 2 Mar 2023 10:53:32 +0000 Subject: [PATCH 1/6] Silence some LSP warnings --- Rakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index c3481d0..bf586cb 100644 --- a/Rakefile +++ b/Rakefile @@ -19,7 +19,7 @@ end def select_projects(options={}) projects = - if only_string = ENV['ONLY'] + if (only_string = ENV['ONLY']) filter_projects_by_string(only_string) else options.fetch(:only, Projects).flatten - Array(options[:except]) @@ -72,12 +72,12 @@ task :make_repos_directory do end desc "run an arbitrary command against all repos" -task :run, :command do |t, args| +task :run, :command do |_t, args| run_command args[:command] end desc "Updates the rspec.github.io docs" -task :update_docs, [:version, :website_path] do |t, args| +task :update_docs, [:version, :website_path] do |_t, args| abort "You must have ag installed to generate docs" if `which ag` == "" args.with_defaults(:website_path => "../rspec.github.io") From 66bda1e9529ca8c0760903acb6ead639f10a9e5b Mon Sep 17 00:00:00 2001 From: Jon Rowe Date: Thu, 2 Mar 2023 14:02:07 +0000 Subject: [PATCH 2/6] Add note about relish app to issue template --- common_plaintext_files/ISSUE_TEMPLATE.md.erb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common_plaintext_files/ISSUE_TEMPLATE.md.erb b/common_plaintext_files/ISSUE_TEMPLATE.md.erb index b980f54..fee8e0e 100644 --- a/common_plaintext_files/ISSUE_TEMPLATE.md.erb +++ b/common_plaintext_files/ISSUE_TEMPLATE.md.erb @@ -1,3 +1,8 @@ + ### Subject of the issue