Class: EacRubyUtils::Templates::VariableProviders::EntriesReader

Inherits:
Base
  • Object
show all
Defined in:
lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb

Instance Attribute Summary

Attributes inherited from Base

#source

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#initialize, #variable_value

Constructor Details

This class inherits a constructor from EacRubyUtils::Templates::VariableProviders::Base

Class Method Details

.accept?(variables_source) ⇒ Boolean

Returns:



10
11
12
# File 'lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb', line 10

def accept?(variables_source)
  variables_source.respond_to?(:read_entry)
end

Instance Method Details

#variable_exist?(_name) ⇒ Boolean

Returns:



15
16
17
# File 'lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb', line 15

def variable_exist?(_name)
  true
end

#variable_fetch(name) ⇒ Object



19
20
21
# File 'lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb', line 19

def variable_fetch(name)
  source.read_entry(name)
end