Module Erubis::Evaluator
In: erubis/evaluator.rb

evaluate code

Methods

Attributes

filename  [RW] 
src  [RW] 

Public Instance methods

[Source]

# File erubis/evaluator.rb, line 34
    def evaluate(*args)
      raise NotSupportedError.new("evaluation of code except Ruby is not supported.")
    end

[Source]

# File erubis/evaluator.rb, line 26
    def init_evaluator(properties)
      @filename = properties[:filename]
    end

[Source]

# File erubis/evaluator.rb, line 30
    def result(*args)
      raise NotSupportedError.new("evaluation of code except Ruby is not supported.")
    end

[Validate]