Parcourir la source

Fix RuboCop offense Style/MapToHash (#39111).


git-svn-id: https://svn.redmine.org/redmine/trunk@22644 e93f8b46-1217-0410-a6f0-8f06a7374b81
pull/145/merge
Go MAEDA il y a 4 mois
Parent
révision
a547662ad0
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      lib/redmine/asset_path.rb

+ 1
- 1
lib/redmine/asset_path.rb Voir le fichier

@@ -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

Chargement…
Annuler
Enregistrer