instance method
fragment_name_with_digest
Ruby on Rails 5.2.8.1
Since v5.2.8.1 PrivateSignature
fragment_name_with_digest(name, virtual_path)
No documentation comment.
Parameters
-
namereq -
virtual_pathreq
Source
# File actionview/lib/action_view/helpers/cache_helper.rb, line 221
def fragment_name_with_digest(name, virtual_path)
virtual_path ||= @virtual_path
if virtual_path
name = controller.url_for(name).split("://").last if name.is_a?(Hash)
if digest = Digestor.digest(name: virtual_path, finder: lookup_context, dependencies: view_cache_dependencies).presence
[ "#{virtual_path}:#{digest}", name ]
else
[ virtual_path, name ]
end
else
name
end
end
Defined in actionview/lib/action_view/helpers/cache_helper.rb line 221
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::CacheHelper