# File lib/rubygems/gem_commands.rb, line 418
    def initialize
      super('uninstall', 'Uninstall gems from the local repository',
            { :version => "> 0" })

      add_option('-a', '--[no-]all',
        'Uninstall all matching versions'
        ) do |value, options|
        options[:all] = value
      end

        add_option('-i', '--[no-]ignore-dependencies',
                   'Ignore dependency requirements while',
                   'uninstalling') do |value, options|
        options[:ignore] = value
      end

        add_option('-x', '--[no-]executables',
                   'Uninstall applicable executables without',
                   'confirmation') do |value, options|
        options[:executables] = value
      end

      add_version_option('uninstall')
    end