class Ufo::Stack::TemplateBody

Public Class Methods

new(context) click to toggle source
# File lib/ufo/stack/template_body.rb, line 3
def initialize(context)
  @context = context
end

Public Instance Methods

build() click to toggle source
# File lib/ufo/stack/template_body.rb, line 7
def build
  builder = Builder.new(@context)
  builder.build
end