Class: LibGems::Commands::PushCommand

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

Instance Attribute Summary

Attributes inherited from LibGems::Command

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

Instance Method Summary collapse

Methods included from GemcutterUtilities

#rubygems_api_request, #sign_in, #with_response

Methods included from LocalRemoteOptions

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

Methods inherited from LibGems::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

#methname

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
# File 'lib/libgems/commands/push_command.rb', line 21

def initialize
  super 'push', description
  add_proxy_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/libgems/commands/push_command.rb', line 13

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

#descriptionObject

:nodoc:



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

def description # :nodoc:
  "Push a gem up to rubygems.org"
end

#executeObject



33
34
35
36
# File 'lib/libgems/commands/push_command.rb', line 33

def execute
  
  send_gem get_one_gem_name
end

#send_gem(name) ⇒ Object



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

def send_gem name
  say "Pushing gem to #{options[:host] || LibGems.host}..."

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

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

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

  with_response response
end

#usageObject

:nodoc:



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

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