Sha256: c15f1cba9787d9bec0beb2c39c5a0082c7757c2563f33d9ea68e70ac13d21e66

Contents?: true

Size: 1003 Bytes

Versions: 5

Compression:

Stored size: 1003 Bytes

Contents

module Lono::Help
  def new_long_desc
<<-EOL
Examples:

$ lono new project

$ lono new lono
EOL
  end

  def import
<<-EOL
Examples:

$ lono import /path/to/file

$ lono import http://url.com/path/to/template.json

$ lono import http://url.com/path/to/template.yml

Imports a raw CloudFormation template and lono-fies it.
EOL
  end

  def generate
<<-EOL
Examples:

$ lono generate

$ lono g -c # shortcut

Builds both CloudFormation template and parameter files based on lono project and writes them to the output folder on the filesystem.
EOL
  end

  def template
<<-EOL
Examples:

$ lono template generate --help

$ lono template bashify --help
EOL

  end

  def cfn
<<-EOL
Examples:

$ lono cfn create my-stack

$ lono cfn preview my-stack

$ lono cfn update my-stack

$ lono cfn delete my-stack
EOL
  end

  def param
<<-EOL
Examples:

$ lono param generate
EOL
  end

  def inspector
<<-EOL
Examples:

$ lono inspect depends my-stack

$ lono inspect summary my-stack
EOL
  end

  extend self
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
lono-3.5.0 lib/lono/help.rb
lono-3.4.1 lib/lono/help.rb
lono-3.4.0 lib/lono/help.rb
lono-3.3.4 lib/lono/help.rb
lono-3.3.2 lib/lono/help.rb