class Bundler::Thor

def retrieve_command_name(args) #:nodoc:

:nodoc:
Retrieve the command name from given args.
def retrieve_command_name(args) #:nodoc:
  meth = args.first.to_s unless args.empty?
  args.shift if meth && (map[meth] || meth !~ /^\-/)
end