Sha256: 700d042ad5c2ebba3227f1126ef6b46e15be4ea07c60e11d7a42a6e5fb8c9b8c
Contents?: true
Size: 699 Bytes
Versions: 3
Compression:
Stored size: 699 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' require 'rubygems/gem_runner' required_version = Gem::Requirement.new ">= 1.8.2" unless required_version.satisfied_by? Gem::Version.new(RUBY_VERSION) then abort "Expected Ruby Version #{required_version}, was #{RUBY_VERSION}" end # We need to preserve the original ARGV to use for passing gem options # to source gems. If there is a -- in the line, strip all options after # it...its for the source building process. args = !ARGV.include?("--") ? ARGV.clone : ARGV[0...ARGV.index("--")] Gem::GemRunner.new.run args
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rubygems-update-1.0.0 | bin/gem |
rubygems-update-0.9.5 | bin/gem |
rubygems-update-1.0.1 | bin/gem |