module Framer

Constants

VERSION

Public Class Methods

frame(yaml_path, build_path) click to toggle source
# File lib/framer.rb, line 7
def self.frame(yaml_path, build_path)
  parser = Parser.new yaml_path
  builder = Builder.new(build_path, parser.tree)
  builder.build
end