class Tilt::RadiusTemplate

def evaluate(scope, locals, &block)

def evaluate(scope, locals, &block)
  context = self.class.context_class.new
  context.tilt_scope = scope
  context.define_tag("yield") do
    block.call
  end
  locals.each do |tag, value|
    context.define_tag(tag) do
      value
    end
  end
  options = {:tag_prefix => 'r'}.merge(@options)
  parser = Radius::Parser.new(context, options)
  parser.parse(data)
end