Class: EacTemplates::Variables::Providers::Hash
- Defined in:
- lib/eac_templates/variables/providers/hash.rb
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(source) ⇒ Hash
constructor
A new instance of Hash.
- #variable_exist?(name) ⇒ Boolean
- #variable_fetch(name) ⇒ Object
Methods inherited from Base
Constructor Details
#initialize(source) ⇒ Hash
Returns a new instance of Hash.
15 16 17 |
# File 'lib/eac_templates/variables/providers/hash.rb', line 15 def initialize(source) super(source.with_indifferent_access) end |
Class Method Details
.accept?(variables_source) ⇒ Boolean
10 11 12 |
# File 'lib/eac_templates/variables/providers/hash.rb', line 10 def accept?(variables_source) variables_source.is_a?(::Hash) end |
Instance Method Details
#variable_exist?(name) ⇒ Boolean
19 20 21 |
# File 'lib/eac_templates/variables/providers/hash.rb', line 19 def variable_exist?(name) source.key?(name) end |
#variable_fetch(name) ⇒ Object
23 24 25 |
# File 'lib/eac_templates/variables/providers/hash.rb', line 23 def variable_fetch(name) source.fetch(name) end |