Sha256: 73ce57334e330421dc91b607a7e113159ed8bbf4139ec79eef939ff9b68c7de5

Contents?: true

Size: 1.2 KB

Versions: 6

Compression:

Stored size: 1.2 KB

Contents

require 'rubygems/command'
require 'rubygems/local_remote_options'
require 'rubygems/gemcutter_utilities'

class Gem::Commands::PushCommand < Gem::Command
  include Gem::LocalRemoteOptions
  include Gem::GemcutterUtilities

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

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

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

  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

  def execute
    sign_in
    send_gem get_one_gem_name
  end

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

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

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

    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",  Gem.configuration.rubygems_api_key
    end

    with_response response
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubygems-update-1.5.3 lib/rubygems/commands/push_command.rb
rubygems-update-1.5.2 lib/rubygems/commands/push_command.rb
rubygems-update-1.5.0 lib/rubygems/commands/push_command.rb
rubygems-update-1.4.2 lib/rubygems/commands/push_command.rb
rubygems-update-1.4.1 lib/rubygems/commands/push_command.rb
rubygems-update-1.4.0 lib/rubygems/commands/push_command.rb