instance method
get_var
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.2.3 PrivateSignature
get_var(name)
Called during variable substitution to get the value for the named variable.
Parameters
-
namereq
Source
# File activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb, line 733
def get_var(name)
if @_var_values.has_key?(name)
return @_var_values[name]
else
return "${#{name}}"
end
end
Defined in activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb line 733
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in XmlSimple