class Fission::CommandLineParser

def parse

Returns nothing.

@command_line_parser.parse

Examples:

instance of the determined command class.
arguments are valid, then the @command variable will be set to a new
invalid, the appropriate help will be output and then will exit. If the
Internal: Parses the command line arguments. If the arguments are
def parse
  @options_parser.order! @args
  determine_command_provided
  self
rescue OptionParser::InvalidOption => e
  ui.output e
  show_all_help
  exit 1
end