class Gem::Commands::MirrorCommand

def description # :nodoc:

:nodoc:
def description # :nodoc:
  <<-EOF
mirror command has been moved to the rubygems-mirror gem.
  EOF
end

def execute

def execute
  alert_error "Install the rubygems-mirror gem for the mirror command"
end

def initialize

def initialize
  super("mirror", "Mirror all gem files (requires rubygems-mirror)")
  begin
    Gem::Specification.find_by_name("rubygems-mirror").activate
  rescue Gem::LoadError
    # no-op
  end
end