This package is Ruby 1.9 based release. And this new release has several features and some incompatibility. Please refer changes from Ruby 1.8.7: http://svn.ruby-lang.org/repos/ruby/tags/v1_9_1_0/NEWS http://svn.ruby-lang.org/repos/ruby/tags/v1_9_2_0/NEWS *Note* NetBSD isn't "supported" but "perhaps" platform by Ruby. Please refer about it "Supported Platform" in http://www.ruby-lang.org/en/news/2010/08/18/ruby-1-9-2-is-released/.
18 lines
690 B
Text
18 lines
690 B
Text
$NetBSD: patch-ah,v 1.1.1.1 2010/09/12 03:50:06 taca Exp $
|
|
|
|
Add install_root option for pkgsrc's rubygems support.
|
|
|
|
--- lib/rubygems/commands/uninstall_command.rb.orig 2009-10-02 10:45:39.000000000 +0000
|
|
+++ lib/rubygems/commands/uninstall_command.rb
|
|
@@ -21,6 +21,11 @@ class Gem::Commands::UninstallCommand <
|
|
options[:all] = value
|
|
end
|
|
|
|
+ add_option('-B', '--install-root DIR',
|
|
+ 'Root directory for gem files') do |value, options|
|
|
+ options[:install_root] = File.expand_path(value)
|
|
+ end
|
|
+
|
|
add_option('-I', '--[no-]ignore-dependencies',
|
|
'Ignore dependency requirements while',
|
|
'uninstalling') do |value, options|
|