Sha256: 0bbf534f53c81b5c895247d50875a39b70cb6b136964992e95661891de1d02ef
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 KB
Contents
module FasterRubyGems def self.install_over_rubygems! raise 'only needed on 1.8 -- for 1.9 you have to \n $ export RUBYOPT=$RUBYOPT -rfaster_rubygems' if RUBY_VERSION >= '1.9.0' require 'fileutils' old = rubygems_path new = old + ".bak.rb" raise 'cannot install twice--please uninstall first' if File.exist?(new) FileUtils.cp old, new File.open(old, 'w') do |f| f.write "require 'faster_rubygems'" end puts 'success--it will load by default in place of normal rubygems' end def self.rubygems_path Gem::Dependency raise unless $LOADED_FEATURES.include? "rubygems.rb" # now go and look for it $:.detect{|path| File.exist?(path + '/rubygems.rb') || File.exist?(path + '/rubygems.rb.bak.rb')} + "/rubygems.rb" end def self.uninstall_over_rubygems! raise 'only needed on 1.8' if RUBY_VERSION >= '1.9.0' require 'fileutils' old = rubygems_path + ".bak.rb" FileUtils.cp old, rubygems_path File.delete old puts 'successfully reverted back to normal rubygems' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
faster_rubygems-0.5.5 | lib/faster_rubygems/install_helper.rb |
faster_rubygems-0.5.4 | lib/faster_rubygems/install_helper.rb |