Sha256: 7be0527c2206532087ef06946f59dfc168425ba9bd49641eeaa6773cec2fe1f5

Contents?: true

Size: 1.31 KB

Versions: 38

Compression:

Stored size: 1.31 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_key_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
    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

end

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
rubygems-update-1.8.30 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.29 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.28 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.23.2 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.27 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.26 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.25 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.24 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.23 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.22 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.21 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.20 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.19 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.18 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.17 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.16 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.15 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.14 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.13 lib/rubygems/commands/push_command.rb
rubygems-update-1.8.12 lib/rubygems/commands/push_command.rb