| Class | Gem::Platform |
| In: |
lib/rubygems/platform.rb
|
| Parent: | Object |
Available list of platforms for targeting Gem installations.
| RUBY | = | 'ruby' | A pure-ruby gem that may use Gem::Specification#extensions to build binary files. | |
| CURRENT | = | 'current' | A platform-specific gem that is built for the packaging ruby‘s platform. This will be replaced with Gem::Platform::local. |
| cpu | [RW] | |
| os | [RW] | |
| version | [RW] |
# File lib/rubygems/platform.rb, line 16
16: def self.local
17: arch = Gem::ConfigMap[:arch]
18: arch = "#{arch}_60" if arch =~ /mswin32$/
19: @local ||= new(arch)
20: end
# File lib/rubygems/platform.rb, line 22
22: def self.match(platform)
23: Gem.platforms.any? do |local_platform|
24: platform.nil? or local_platform == platform or
25: (local_platform != Gem::Platform::RUBY and local_platform =~ platform)
26: end
27: end
# File lib/rubygems/platform.rb, line 40
40: def initialize(arch)
41: case arch
42: when Array then
43: @cpu, @os, @version = arch
44: when String then
45: arch = arch.split '-'
46:
47: if arch.length > 2 and arch.last !~ /\d/ then # reassemble x86-linux-gnu
48: extra = arch.pop
49: arch.last << "-#{extra}"
50: end
51:
52: cpu = arch.shift
53:
54: @cpu = case cpu
55: when /i\d86/ then 'x86'
56: else cpu
57: end
58:
59: if arch.length == 2 and arch.last =~ /^\d+(\.\d+)?$/ then # for command-line
60: @os, @version = arch
61: return
62: end
63:
64: os, = arch
65: @cpu, os = nil, cpu if os.nil? # legacy jruby
66:
67: @os, @version = case os
68: when /aix(\d+)/ then [ 'aix', $1 ]
69: when /cygwin/ then [ 'cygwin', nil ]
70: when /darwin(\d+)?/ then [ 'darwin', $1 ]
71: when /freebsd(\d+)/ then [ 'freebsd', $1 ]
72: when /hpux(\d+)/ then [ 'hpux', $1 ]
73: when /^java$/, /^jruby$/ then [ 'java', nil ]
74: when /^java([\d.]*)/ then [ 'java', $1 ]
75: when /linux/ then [ 'linux', $1 ]
76: when /mingw32/ then [ 'mingw32', nil ]
77: when /(mswin\d+)(\_(\d+))?/ then
78: os, version = $1, $3
79: @cpu = 'x86' if @cpu.nil? and os =~ /32$/
80: [os, version]
81: when /netbsdelf/ then [ 'netbsdelf', nil ]
82: when /openbsd(\d+\.\d+)/ then [ 'openbsd', $1 ]
83: when /solaris(\d+\.\d+)/ then [ 'solaris', $1 ]
84: # test
85: when /^(\w+_platform)(\d+)/ then [ $1, $2 ]
86: else [ 'unknown', nil ]
87: end
88: when Gem::Platform then
89: @cpu = arch.cpu
90: @os = arch.os
91: @version = arch.version
92: else
93: raise ArgumentError, "invalid argument #{arch.inspect}"
94: end
95: end
Is other equal to this platform? Two platforms are equal if they have the same CPU, OS and version.
# File lib/rubygems/platform.rb, line 113
113: def ==(other)
114: self.class === other and
115: @cpu == other.cpu and @os == other.os and @version == other.version
116: end
Does other match this platform? Two platforms match if they have the same CPU, or either has a CPU of ‘universal’, they have the same OS, and they have the same version, or either has no version.
# File lib/rubygems/platform.rb, line 123
123: def ===(other)
124: return nil unless Gem::Platform === other
125:
126: # cpu
127: (@cpu == 'universal' or other.cpu == 'universal' or @cpu == other.cpu) and
128:
129: # os
130: @os == other.os and
131:
132: # version
133: (@version.nil? or other.version.nil? or @version == other.version)
134: end
Does other match this platform? If other is a String it will be converted to a Gem::Platform first. See #=== for matching rules.
# File lib/rubygems/platform.rb, line 140
140: def =~(other)
141: case other
142: when Gem::Platform then # nop
143: when String then
144: # This data is from http://gems.rubyforge.org/gems/yaml on 19 Aug 2007
145: other = case other
146: when /^i686-darwin(\d)/ then ['x86', 'darwin', $1]
147: when /^i\d86-linux/ then ['x86', 'linux', nil]
148: when 'java', 'jruby' then [nil, 'java', nil]
149: when /mswin32(\_(\d+))?/ then ['x86', 'mswin32', $2]
150: when 'powerpc-darwin' then ['powerpc', 'darwin', nil]
151: when /powerpc-darwin(\d)/ then ['powerpc', 'darwin', $1]
152: when /sparc-solaris2.8/ then ['sparc', 'solaris', '2.8']
153: when /universal-darwin(\d)/ then ['universal', 'darwin', $1]
154: else other
155: end
156:
157: other = Gem::Platform.new other
158: else
159: return nil
160: end
161:
162: self === other
163: end
# File lib/rubygems/platform.rb, line 97
97: def inspect
98: "#<%s:0x%x @cpu=%p, @os=%p, @version=%p>" % [self.class, object_id, *to_a]
99: end