Sha256: 31de4d5b34556f770bac71ee8ce4d963adc1a5ad20168682801c1df3fecef47b

Contents?: true

Size: 998 Bytes

Versions: 5

Compression:

Stored size: 998 Bytes

Contents

#!/usr/bin/env ruby
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems'

if ARGV.include? '-h' or ARGV.include? '--help'
  $stderr.puts "rubygems_update [options]"
  $stderr.puts
  $stderr.puts "This will install the latest version of RubyGems."
  $stderr.puts
  $stderr.puts "\t--version=X.Y\tUpdate RubyGems from the X.Y version."
  exit
end

unless ARGV.grep(/--version=([\d\.]*)/).empty?
  exec Gem.ruby, '-S', $PROGRAM_NAME, "_#{$1}_"
end

update_dir = $LOAD_PATH.find { |dir| dir =~ /rubygems-update/ }

if update_dir.nil?
  puts "Error: Cannot find RubyGems update path!"
  puts
  puts "RubyGems has already been updated."
  puts "The rubygems-update gem may now be uninstalled."
  puts "E.g.    gem uninstall rubygems-update"
else
  update_dir = File.dirname(update_dir)
  Dir.chdir update_dir
  ENV["GEM_PREV_VER"] = Gem::VERSION
  abort unless system(Gem.ruby, 'setup.rb', *ARGV)
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubygems-update-3.1.6 bin/update_rubygems
rubygems-update-3.1.5 bin/update_rubygems
rubygems-update-3.1.4 bin/update_rubygems
rubygems-update-3.1.3 bin/update_rubygems
rubygems-update-3.1.2 bin/update_rubygems