Sha256: 07bcb92dc1a617f757919904a436b42bfdf2e9aab6385d6643c80777854a0802

Contents?: true

Size: 1.2 KB

Versions: 7

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

7 entries across 7 versions & 1 rubygems

Version Path
slimgems-1.3.9.5 lib/rubygems/commands/push_command.rb
slimgems-1.3.9.4 lib/rubygems/commands/push_command.rb
slimgems-1.3.9.3 lib/rubygems/commands/push_command.rb
slimgems-1.3.9.2 lib/rubygems/commands/push_command.rb
slimgems-1.3.9.1 lib/rubygems/commands/push_command.rb
slimgems-1.3.9 lib/rubygems/commands/push_command.rb
slimgems-1.3.8 lib/rubygems/commands/push_command.rb