Class: ActionView::LookupContext::DetailsKey
- Inherits:
-
Object
- Object
- ActionView::LookupContext::DetailsKey
- Defined in:
- lib/action_view/lookup_context.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#hash ⇒ Object
(also: #object_hash)
readonly
Returns the value of attribute hash.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ DetailsKey
constructor
A new instance of DetailsKey.
Constructor Details
#initialize ⇒ DetailsKey
Returns a new instance of DetailsKey.
79 80 81 |
# File 'lib/action_view/lookup_context.rb', line 79 def initialize @hash = object_hash end |
Instance Attribute Details
#hash ⇒ Object (readonly) Also known as: object_hash
Returns the value of attribute hash.
61 62 63 |
# File 'lib/action_view/lookup_context.rb', line 61 def hash @hash end |
Class Method Details
.clear ⇒ Object
75 76 77 |
# File 'lib/action_view/lookup_context.rb', line 75 def self.clear @details_keys.clear end |
.get(details) ⇒ Object
64 65 66 67 68 69 70 71 72 73 |
# File 'lib/action_view/lookup_context.rb', line 64 def self.get(details) if details[:formats] details = details.dup syms = Set.new Mime::SET.symbols details[:formats] = details[:formats].select { |v| syms.include? v } end @details_keys[details] ||= new end |