Sha256: cc64f77ad19fbccd2f4986be16f1efa1844725e7aca4722e37b312ac7f5de501

Contents?: true

Size: 664 Bytes

Versions: 9

Compression:

Stored size: 664 Bytes

Contents

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

$ lono new project

$ lono new lono
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

  extend self
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
lono-3.0.1 lib/lono/help.rb
lono-3.0.0 lib/lono/help.rb
lono-2.1.0 lib/lono/help.rb
lono-2.0.5 lib/lono/help.rb
lono-2.0.4 lib/lono/help.rb
lono-2.0.3 lib/lono/help.rb
lono-2.0.2 lib/lono/help.rb
lono-2.0.1 lib/lono/help.rb
lono-2.0.0 lib/lono/help.rb