Module: Meroku::CLI::Help

Included in:
Session
Defined in:
lib/meroku/cli/help.rb

Overview

The help thats printed when a command is unspecified or unrecognized

Instance Method Summary collapse

Instance Method Details

#helpObject



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/meroku/cli/help.rb', line 5

def help
  <<~HEREDOC
    Usage:
        meroku command subcommand

    Examples:
      meroku signup    # if you havent done already

      meroku login

      meroku logout

      meroku create

      meroku keys:add

      meroku infrastrucuture spawn    # Spawns server

  HEREDOC
end