class Gem::Commands::MigrateCommand

def description

def description
  'Deprecated method for migrating a gem you own from Rubyforge to Gemcutter.'
end

def execute

def execute
  say "This command is deprecated, RubyForge accounts/ownerships have been transferred to Gemcutter."
  say "Please see http://rubygems.org/pages/migrate for more information"
end

def initialize

def initialize
  super 'migrate', description
end