Module: CloudFormationDSL

Defined in:
lib/cloudformation-dsl/version.rb,
lib/cloudformation-dsl.rb,
lib/cloudformation-dsl/helpers.rb,
lib/cloudformation-dsl/template.rb

Overview

Streamlined by Ho-Sheng Hsiao <[email protected]>

Defined Under Namespace

Modules: Helpers Classes: Template

Constant Summary collapse

VERSION =
"0.1.0"

Class Method Summary collapse

Class Method Details

.describe(&block) ⇒ Object



7
8
9
# File 'lib/cloudformation-dsl.rb', line 7

def self.describe(&block)
  CloudFormationDSL::Template.new(&block)
end

.load_from(filename) ⇒ Object



11
12
13
# File 'lib/cloudformation-dsl.rb', line 11

def self.load_from(filename)
  CloudFormationDSL::Template.new(filename)
end