From 0e74b21cb24eb11c7986ccabdcb5ebd0d40fac59 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 31 Oct 2023 18:16:46 +0000 Subject: [PATCH] Fix new rubocop warnings --- lib/tasks/auto_annotate_models.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/auto_annotate_models.rake b/lib/tasks/auto_annotate_models.rake index 103e7fcc9..e5ea3700a 100644 --- a/lib/tasks/auto_annotate_models.rake +++ b/lib/tasks/auto_annotate_models.rake @@ -1,7 +1,7 @@ # NOTE: only doing this in development as some production environments (Heroku) # NOTE: are sensitive to local FS writes, and besides -- it's just not proper # NOTE: to have a dev-mode tool do its thing in production. -if Rails.env.development? || Rails.env.test? +if Rails.env.local? task :set_annotation_options => :environment do # You can override any of these by setting an environment variable of the # same name. -- 2.39.5