Explorar el Código

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 hace 3 meses
padre
commit
a547662ad0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      lib/redmine/asset_path.rb

+ 1
- 1
lib/redmine/asset_path.rb Ver fichero

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

Cargando…
Cancelar
Guardar