$NetBSD: patch-ap,v 1.1.1.1 2010/09/12 03:50:06 taca Exp $ Add install_root option for pkgsrc's rubygems support. --- lib/rubygems/install_update_options.rb.orig 2010-06-11 14:02:18.000000000 +0000 +++ lib/rubygems/install_update_options.rb @@ -22,6 +22,12 @@ module Gem::InstallUpdateOptions value end + add_option(:"Install/Update", '-B', '--install-root DIR', + 'Root directory for gem files on install') do |value, options| + options[:install_root] = File.expand_path(value) + Gem.ensure_gem_subdirectories File.join options[:install_root], Gem.dir + end + add_option(:"Install/Update", '-i', '--install-dir DIR', 'Gem repository directory to get installed', 'gems') do |value, options|