module Roda::RodaPlugins::RecheckPrecompiledAssets::ClassMethods
Private Instance Methods
Source
# File lib/roda/plugins/recheck_precompiled_assets.rb, line 88 def _compiled_assets_initial_hash CompiledAssetsHash.new end
Use a thread-safe wrapper of a hash for the :compiled assets option, since the recheck_precompiled_asset_metadata can modify it at runtime.
Source
# File lib/roda/plugins/recheck_precompiled_assets.rb, line 82 def _precompiled_asset_metadata(file) CompiledAssetsHash.new.replace(super) end
Wrap the precompiled asset metadata in a thread-safe hash.
Calls superclass method