class LtdTemplate::Proxy

Public Class Methods

new(template, original) click to toggle source
Calls superclass method LtdTemplate::Value::new
# File lib/ltdtemplate/proxy.rb, line 13
def initialize (template, original)
    super template
    @original = original
end

Public Instance Methods

rubyverse_original() click to toggle source

Return the Rubyverse original object.

# File lib/ltdtemplate/proxy.rb, line 19
def rubyverse_original; @original; end
rubyversed(obj) click to toggle source

Shortcut to rubyversed in the tamplate.

# File lib/ltdtemplate/proxy.rb, line 22
def rubyversed (obj); @template.rubyversed obj; end