Class: BB8::Commands::Help

Inherits:
Object
  • Object
show all
Defined in:
lib/bb8/commands/help.rb

Class Method Summary collapse

Class Method Details

.callObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/bb8/commands/help.rb', line 2

def self.call
  puts <<-MESSAGE
BB-8 Version #{BB8::VERSION}

Usage:

bb8 init .                                Set up a directory as a git
                                          repository.
bb8 environment staging my-voltos-bundle  Set up a directory for a specific
                                          environment.
bb8 ENVIRONMENT [show|apply|destroy|...]  Run a Terraform command within a
                                          specific environment's context.
bb8 version                               Outputs BB8's version.
bb8 help                                  Outputs this information.
  MESSAGE
end