class Fission::CommandLineParser

def initialize(args=ARGV)

Returns a Fission::CommandLineParser object.

CommandLineParser.new

CommandLineParser.new ['foo', 'bar']

Examples:

same format of ARGV (Array) (default: ARGV).
args - The command line arguments to parse. This is expected to be in the

Internal: Creates a new Fission::CommandLineParser object.
def initialize(args=ARGV)
  @args = args
  gather_commands_and_summaries
  setup_options_parser
end