Class: Gem::Commands::PushCommand

Inherits:
Gem::Command show all
Includes:
GemcutterUtilities, LocalRemoteOptions
Defined in:
lib/rubygems/commands/push_command.rb

Instance Attribute Summary

Attributes inherited from Gem::Command

#command, #defaults, #options, #program_name, #summary

Instance Method Summary collapse

Methods included from GemcutterUtilities

#add_key_option, #api_key, #rubygems_api_request, #sign_in, #verify_api_key, #with_response

Methods included from LocalRemoteOptions

#accept_uri_http, #add_bulk_threshold_option, #add_clear_sources_option, #add_local_remote_options, #add_proxy_option, #add_source_option, #add_update_sources_option, #both?, #local?, #remote?

Methods inherited from Gem::Command

add_common_option, #add_extra_args, #add_option, add_specific_extra_args, #begins?, build_args, build_args=, common_options, #defaults_str, extra_args, extra_args=, #get_all_gem_names, #get_one_gem_name, #get_one_optional_argument, #handle_options, #handles?, #invoke, #merge_options, #remove_option, #show_help, #show_lookup_failure, specific_extra_args, specific_extra_args_hash, #when_invoked

Methods included from UserInteraction

#alert, #alert_error, #alert_warning, #ask, #ask_for_password, #ask_yes_no, #choose_from_list, #say, #terminate_interaction

Methods included from DefaultUserInteraction

ui, #ui, ui=, #ui=, use_ui, #use_ui

Constructor Details

#initializePushCommand

Returns a new instance of PushCommand.



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

def initialize
  super 'push', description
  add_proxy_option
  add_key_option

  add_option(
    '--host HOST',
    'Push to another gemcutter-compatible host'
  ) do |value, options|
    options[:host] = value
  end
end

Instance Method Details

#argumentsObject

:nodoc:



13
14
15
# File 'lib/rubygems/commands/push_command.rb', line 13

def arguments # :nodoc:
  "GEM       built gem to push up"
end

#descriptionObject

:nodoc:



9
10
11
# File 'lib/rubygems/commands/push_command.rb', line 9

def description # :nodoc:
  'Push a gem up to RubyGems.org'
end

#executeObject



34
35
36
37
# File 'lib/rubygems/commands/push_command.rb', line 34

def execute
  
  send_gem get_one_gem_name
end

#send_gem(name) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/rubygems/commands/push_command.rb', line 39

def send_gem name
  args = [:post, "api/v1/gems"]

  args << options[:host] if options[:host]

  if Gem.latest_rubygems_version < Gem::Version.new(Gem::VERSION) then
    alert_error "Using beta/unreleased version of rubygems. Not pushing."
    terminate_interaction 1
  end

  response = rubygems_api_request(*args) do |request|
    request.body = Gem.read_binary name
    request.add_field "Content-Length", request.body.size
    request.add_field "Content-Type",   "application/octet-stream"
    request.add_field "Authorization",  api_key
  end

  with_response response
end

#usageObject

:nodoc:



17
18
19
# File 'lib/rubygems/commands/push_command.rb', line 17

def usage # :nodoc:
  "#{program_name} GEM"
end