module Convection

Root module

nodoc

Constants

VERSION

Public Class Methods

stack(*args, &block) click to toggle source

Syntactic sugar for calling {Convection::Control::Stack#initialize}.

@see Convection::Control::Stack#initialize

# File lib/convection.rb, line 16
def stack(*args, &block)
  Control::Stack.new(*args, &block)
end
template(*args, &block) click to toggle source

Syntactic sugar for calling {Convection::Model::Template#initialize}.

@see Convection::Model::Template#initialize

# File lib/convection.rb, line 9
def template(*args, &block)
  Model::Template.new(*args, &block)
end