module Cubic

Cubic is a small framework built on the idea of quick generation using templates.

Constants

VERSION

Public Class Methods

application() click to toggle source
# File lib/cubic.rb, line 25
def application
  @app ||= Application
end
sitemap(&block) click to toggle source

First method to be called in the generation process.

# File lib/cubic.rb, line 21
def sitemap(&block)
  Generator.run(&block)
end