Class: Gem::Commands::YankCommand

Inherits:
Gem::Command
  • Object
show all
Includes:
GemcutterUtilities, LocalRemoteOptions, VersionOption
Defined in:
lib/rubygems/commands/yank_command.rb

Instance Method Summary collapse

Constructor Details

#initializeYankCommand

Returns a new instance of YankCommand.



22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/rubygems/commands/yank_command.rb', line 22

def initialize
  super 'yank', description
  add_version_option("remove")
  add_platform_option("remove")
  add_option('--undo') do |value, options|
    options[:undo] = true
  end
  
  add_option('-k', '--key KEY_NAME',
             'Use API key from your gem credentials file') do |value, options|
    options[:key] = value
  end
end

Instance Method Details

#argumentsObject



14
15
16
# File 'lib/rubygems/commands/yank_command.rb', line 14

def arguments
  "GEM       name of gem"
end

#descriptionObject



10
11
12
# File 'lib/rubygems/commands/yank_command.rb', line 10

def description
  'Remove a specific gem version release from RubyGems.org'
end

#executeObject



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/rubygems/commands/yank_command.rb', line 36

def execute
  
  version   = get_version_from_requirements(options[:version])
  platform  = get_platform_from_requirements(options)
  api_key   = Gem.configuration.rubygems_api_key
  api_key   = Gem.configuration.api_keys[options[:key].to_sym] if options[:key]

  if !version.nil?
    if options[:undo]
      unyank_gem(version, platform, api_key)
    else
      yank_gem(version, platform, api_key)
    end
  else
    say "A version argument is required: #{usage}"
    terminate_interaction
  end
end

#unyank_gem(version, platform, api_key) ⇒ Object



60
61
62
63
# File 'lib/rubygems/commands/yank_command.rb', line 60

def unyank_gem(version, platform, api_key)
  say "Unyanking gem from RubyGems.org..."
  yank_api_request(:put, version, platform, "api/v1/gems/unyank", api_key)
end

#usageObject



18
19
20
# File 'lib/rubygems/commands/yank_command.rb', line 18

def usage
  "#{program_name} GEM -v VERSION [-p PLATFORM] [--undo] [--key KEY_NAME]"
end

#yank_gem(version, platform, api_key) ⇒ Object



55
56
57
58
# File 'lib/rubygems/commands/yank_command.rb', line 55

def yank_gem(version, platform, api_key)
  say "Yanking gem from RubyGems.org..."
  yank_api_request(:delete, version, platform, "api/v1/gems/yank", api_key)
end