Sha256: b284c92182b63f6c44449990af1f0833848d1f2ae3215bbd2ae2598799a8110a

Contents?: true

Size: 362 Bytes

Versions: 42

Compression:

Stored size: 362 Bytes

Contents

module Awspec
  class Toolbox < Thor
    desc 'docgen > doc/resource_types.md', 'Generate doc/resource_types.md document'
    def docgen
      puts Awspec::Generator::Doc::Type.generate_doc
    end

    desc 'template [resource_type_name]', 'Generate template files'
    def template(type)
      puts Awspec::Generator::Template.generate(type)
    end
  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
awspec-0.44.0 lib/awspec/toolbox.rb
awspec-0.43.0 lib/awspec/toolbox.rb