mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02:00
Update to RubyGems 1.3.7.pre.1
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d0e5a34ac7
commit
372dcece3f
64 changed files with 759 additions and 240 deletions
|
@ -70,6 +70,8 @@ class Gem::Platform
|
|||
when /hpux(\d+)/ then [ 'hpux', $1 ]
|
||||
when /^java$/, /^jruby$/ then [ 'java', nil ]
|
||||
when /^java([\d.]*)/ then [ 'java', $1 ]
|
||||
when /^dotnet$/ then [ 'dotnet', nil ]
|
||||
when /^dotnet([\d.]*)/ then [ 'dotnet', $1 ]
|
||||
when /linux/ then [ 'linux', $1 ]
|
||||
when /mingw32/ then [ 'mingw32', nil ]
|
||||
when /(mswin\d+)(\_(\d+))?/ then
|
||||
|
@ -148,6 +150,7 @@ class Gem::Platform
|
|||
when /^i686-darwin(\d)/ then ['x86', 'darwin', $1 ]
|
||||
when /^i\d86-linux/ then ['x86', 'linux', nil ]
|
||||
when 'java', 'jruby' then [nil, 'java', nil ]
|
||||
when /dotnet(\-(\d+\.\d+))?/ then ['universal','dotnet', $2 ]
|
||||
when /mswin32(\_(\d+))?/ then ['x86', 'mswin32', $2 ]
|
||||
when 'powerpc-darwin' then ['powerpc', 'darwin', nil ]
|
||||
when /powerpc-darwin(\d)/ then ['powerpc', 'darwin', $1 ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue