mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-22 16:56:10 +01:00
16 lines
371 B
Ruby
16 lines
371 B
Ruby
|
|
module CacheDigests
|
||
|
|
class Engine < ::Rails::Engine
|
||
|
|
initializer 'cache_digests' do |app|
|
||
|
|
require 'cache_digests'
|
||
|
|
|
||
|
|
ActiveSupport.on_load :action_view do
|
||
|
|
ActionView::Base.send :include, CacheDigests::FragmentHelper
|
||
|
|
end
|
||
|
|
|
||
|
|
config.to_prepare do
|
||
|
|
CacheDigests::TemplateDigestor.logger = Rails.logger
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|