class EacRubyUtils::Templates::VariableProviders::Generic

def accept?(variables_source)

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

def variable_exist?(name)

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

def variable_fetch(name)

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