extract_details(options) protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/renderer/abstract_renderer.rb, line 16 def extract_details(options) details = {} @lookup_context.registered_details.each do |key| next unless value = options[key] details[key] = Array.wrap(value) end details end
Register or log in to add new notes.