Sha256: 40372ffb4fab06f4e16075a2f5faf267de3a1cd394599300438813d2c3dda90a
Contents?: true
Size: 1.02 KB
Versions: 4
Compression:
Stored size: 1.02 KB
Contents
# require some "necessary" gems require 'rubygems' if RUBY_VERSION < '1.9' # for the other requires require 'require_all' require 'hash_set_operators' # not sure why this one isn't in core require_rel 'sane' # and require all files in sub directory class Sane # helper for installing it locally on 1.8 # if you want to be able to use it without rubygems # except, then you'll still need rubygems anyway... # I hate 1.8 def self.install_local! if RUBY_VERSION >= '1.9' raise 'you dont need to install local for 1.9!' end require 'fileutils' require 'rbconfig' Dir.chdir File.dirname(__FILE__) do for file in Dir['*'] do FileUtils.cp_r file, Config::CONFIG['sitelibdir'] # copy subdirs, too end installed_sane = Config::CONFIG['sitelibdir'] + '/' + 'sane.rb' old_contents = File.read installed_sane File.write installed_sane, "require 'faster_rubygems'\n" + old_contents puts 'hardened sane with this gem version (and faster rubygems) to ' + installed_sane end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
sane-0.12.0 | lib/sane.rb |
sane-0.11.1 | lib/sane.rb |
sane-0.11.0 | lib/sane.rb |
sane-0.10.3 | lib/sane.rb |