class Awspec::Toolbox

Public Instance Methods

docgen() click to toggle source
# File lib/awspec/toolbox.rb, line 4
def docgen
  puts Awspec::Generator::Doc::Type.generate_doc
end
template(type) click to toggle source
# File lib/awspec/toolbox.rb, line 10
def template(type)
  if options[:account_attribute]
    puts Awspec::Generator::Template.generate_account_attribute(type)
  else
    puts Awspec::Generator::Template.generate(type)
  end
end