From a547662ad04c144b364203027e26ef69bfebbea6 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Fri, 26 Jan 2024 08:29:59 +0000 Subject: [PATCH] Fix RuboCop offense Style/MapToHash (#39111). git-svn-id: https://svn.redmine.org/redmine/trunk@22644 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/asset_path.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/redmine/asset_path.rb b/lib/redmine/asset_path.rb index b05a5f6f8..b115fe187 100644 --- a/lib/redmine/asset_path.rb +++ b/lib/redmine/asset_path.rb @@ -171,7 +171,7 @@ module Redmine def cache_sweeper @cache_sweeper ||= begin exts_to_watch = Mime::EXTENSION_LOOKUP.map(&:first) - files_to_watch = Array(all_paths).collect { |dir| [dir.to_s, exts_to_watch] }.to_h + files_to_watch = Array(all_paths).to_h { |dir| [dir.to_s, exts_to_watch] } Rails.application.config.file_watcher.new([], files_to_watch) do clear_cache end