# File lib/gitlab/shell.rb, line 65
    def execute(cmd=command, args=arguments)
      if actions.include?(cmd.to_sym)
        confirm_command(cmd)
        gitlab_helper(cmd, args)
      else
        fail "Unknown command: #{cmd}. " \
             "See the 'help' for a list of valid commands."
      end
    end