Class: Angus::HelpCommand

Inherits:
Thor::Group
  • Object
show all
Defined in:
lib/angus/commands/help_command.rb

Instance Method Summary collapse

Instance Method Details

#helpObject



4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/angus/commands/help_command.rb', line 4

def help
  puts <<-HELP
    Usages:
      angus new [API NAME]  # This generate an empty angus project.

      angus demo # This generate an demo angus project.

    Examples:
      angus new great-api

      This generates a skeletal angus installation in great-api.
  HELP
end