Class: EacRubyUtils::Templates::VariableProviders::Generic

Inherits:
Base
  • Object
show all
Defined in:
lib/eac_ruby_utils/templates/variable_providers/generic.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/generic.rb', line 10

def accept?(variables_source)
  variables_source.is_a?(::Object)
end

Instance Method Details

#variable_exist?(name) ⇒ Boolean

Returns:



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

def variable_exist?(name)
  source.respond_to?(name)
end

#variable_fetch(name) ⇒ Object



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

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