launchy 2.0.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ module Launchy
2
+ class Error < ::StandardError; end
3
+ class SchemeNotFoundError < Error; end
4
+ end
@@ -0,0 +1,8 @@
1
+ module Launchy
2
+ #
3
+ # Model all the Operating system families that can exist.
4
+ #
5
+ class OSFamily
6
+ extend DescendantTracker
7
+ end
8
+ end
@@ -0,0 +1,18 @@
1
+ module Launchy
2
+ VERSION = "2.0.0"
3
+
4
+ module Version
5
+
6
+ MAJOR = Integer(VERSION.split('.')[0])
7
+ MINOR = Integer(VERSION.split('.')[1])
8
+ PATCH = Integer(VERSION.split('.')[2])
9
+
10
+ def self.to_a
11
+ [MAJOR, MINOR, PATCH]
12
+ end
13
+
14
+ def self.to_s
15
+ VERSION
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,41 @@
1
+ require 'spec_helper'
2
+ require 'mock_scheme'
3
+
4
+ class JunkApp < Launchy::Application
5
+ def self.schemes
6
+ %w[ junk ]
7
+ end
8
+ end
9
+
10
+ describe Launchy::Application do
11
+ it 'registers inherited classes' do
12
+ class Junk2App < Launchy::Application
13
+ def self.schemes
14
+ %w[ junk2 ]
15
+ end
16
+ end
17
+ Launchy::Application.children.must_include( Junk2App )
18
+ Launchy::Application.children.delete( Junk2App )
19
+ end
20
+
21
+ it "can find an app" do
22
+ Launchy::Application.children.must_include( JunkApp )
23
+ Launchy::Application.scheme_list.size.must_equal 7
24
+ Launchy::Application.for_scheme( "junk" ).must_equal( JunkApp )
25
+ end
26
+
27
+ it "raises an error if an application cannot be found for the given scheme" do
28
+ lambda { Launchy::Application.for_scheme( "foo" ) }.must_raise( Launchy::SchemeNotFoundError )
29
+ end
30
+
31
+ it "can find open or curl" do
32
+ found = %w[ open curl ].any? do |app|
33
+ Launchy::Application.find_executable( app )
34
+ end
35
+ found.must_equal true
36
+ end
37
+
38
+ it "does not find xyzzy" do
39
+ Launchy::Application.find_executable( "xyzzy" ).must_equal nil
40
+ end
41
+ end
@@ -0,0 +1,40 @@
1
+ require 'spec_helper'
2
+ require 'yaml'
3
+
4
+ describe Launchy::Detect::HostOsFamily do
5
+
6
+ before do
7
+ Launchy.reset_global_options
8
+ end
9
+
10
+ after do
11
+ Launchy.reset_global_options
12
+ end
13
+
14
+ YAML::load( IO.read( File.expand_path( "../../tattle-host-os.yaml", __FILE__ ) ) )['host_os'].keys.sort.each do |os|
15
+ it "OS family of #{os} is detected" do
16
+ Launchy::Detect::HostOsFamily.detect( os ).must_be_kind_of Launchy::Detect::HostOsFamily
17
+ end
18
+ end
19
+
20
+ { 'mswin' => :windows?,
21
+ 'darwin' => :darwin?,
22
+ 'linux' => :nix?,
23
+ 'cygwin' => :cygwin? }.each_pair do |os, method|
24
+ it "#{method} returns true for #{os} " do
25
+ Launchy::Detect::HostOsFamily.detect( os ).send( method ).must_equal true
26
+ end
27
+ end
28
+
29
+ it "uses the global host_os overrides" do
30
+ ENV['LAUNCHY_HOST_OS'] = "fake-os-2"
31
+ lambda { Launchy::Detect::HostOsFamily.detect }.must_raise Launchy::Detect::HostOsFamily::NotFoundError
32
+ ENV.delete('LAUNCHY_HOST_OS')
33
+ end
34
+
35
+
36
+ it "does not find an os of 'dos'" do
37
+ lambda { Launchy::Detect::HostOsFamily.detect( 'dos' ) }.must_raise Launchy::Detect::HostOsFamily::NotFoundError
38
+ end
39
+
40
+ end
@@ -0,0 +1,19 @@
1
+ require 'spec_helper'
2
+
3
+ describe Launchy::Detect::HostOs do
4
+
5
+ it "uses the defult host os from ruby's config" do
6
+ Launchy::Detect::HostOs.new.host_os.must_equal RbConfig::CONFIG['host_os']
7
+ end
8
+
9
+ it "uses the passed in value as the host os" do
10
+ Launchy::Detect::HostOs.new( "fake-os-1").host_os.must_equal "fake-os-1"
11
+ end
12
+
13
+ it "uses the environment variable LAUNCHY_HOST_OS to override ruby's config" do
14
+ ENV['LAUNCHY_HOST_OS'] = "fake-os-2"
15
+ Launchy::Detect::HostOs.new.host_os.must_equal "fake-os-2"
16
+ ENV.delete('LAUNCHY_HOST_OS')
17
+ end
18
+
19
+ end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe Launchy::Detect::NixDesktopEnvironment do
4
+
5
+ { "KDE_FULL_SESSION" => Launchy::Detect::NixDesktopEnvironment::Kde,
6
+ "GNOME_DESKTOP_SESSION_ID" => Launchy::Detect::NixDesktopEnvironment::Gnome }.each_pair do |k,v|
7
+ it "can detect the desktop environment of a *nix machine using ENV[#{k}]" do
8
+ ENV[k] = "launchy-test"
9
+ Launchy::Detect::NixDesktopEnvironment.detect.must_equal v
10
+ ENV.delete( k )
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,37 @@
1
+ require 'spec_helper'
2
+
3
+ describe Launchy::Detect::RubyEngine do
4
+
5
+ before do
6
+ Launchy.reset_global_options
7
+ end
8
+
9
+ after do
10
+ Launchy.reset_global_options
11
+ end
12
+
13
+ %w[ ruby jruby rbx macruby ].each do |ruby|
14
+ it "detects the #{ruby} RUBY_ENGINE" do
15
+ Launchy::Detect::RubyEngine.detect( ruby ).ancestors.must_include Launchy::Detect::RubyEngine
16
+ end
17
+ end
18
+
19
+ it "uses the global ruby_engine overrides" do
20
+ ENV['LAUNCHY_RUBY_ENGINE'] = "rbx"
21
+ Launchy::Detect::RubyEngine.detect.must_equal Launchy::Detect::RubyEngine::Rbx
22
+ ENV.delete('LAUNCHY_RUBY_ENGINE')
23
+ end
24
+
25
+ it "does not find a ruby engine of 'foo'" do
26
+ lambda { Launchy::Detect::RubyEngine.detect( 'foo' ) }.must_raise Launchy::Detect::RubyEngine::NotFoundError
27
+ end
28
+
29
+ { 'rbx' => :rbx?,
30
+ 'ruby' => :mri?,
31
+ 'macruby' => :macruby?,
32
+ 'jruby' => :jruby? }.each_pair do |engine, method|
33
+ it "#{method} returns true for #{engine} " do
34
+ Launchy::Detect::RubyEngine.detect( engine ).send( method ).must_equal true
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,42 @@
1
+ require 'spec_helper'
2
+
3
+ describe Launchy do
4
+
5
+ before do
6
+ Launchy.reset_global_options
7
+ end
8
+
9
+ after do
10
+ Launchy.reset_global_options
11
+ end
12
+
13
+ it "logs to stderr when LAUNCHY_DEBUG environment variable is set" do
14
+ ENV["LAUNCHY_DEBUG"] = 'true'
15
+ old_stderr = $stderr
16
+ $stderr = StringIO.new
17
+ Launchy.log "This is a test log message"
18
+ $stderr.string.strip.must_equal "LAUNCHY_DEBUG: This is a test log message"
19
+ $stderr = old_stderr
20
+ ENV["LAUNCHY_DEBUG"] = nil
21
+ end
22
+
23
+ it "has the global option :debug" do
24
+ Launchy.extract_global_options( { :debug => 'true' } )
25
+ Launchy.debug?.must_equal true
26
+ end
27
+
28
+ it "has the global option :application" do
29
+ Launchy.extract_global_options( { :application => "wibble" } )
30
+ Launchy.application.must_equal 'wibble'
31
+ end
32
+
33
+ it "has the global option :host_os" do
34
+ Launchy.extract_global_options( { :host_os => "my-special-os-v2" } )
35
+ Launchy.host_os.must_equal 'my-special-os-v2'
36
+ end
37
+
38
+ it "has the global option :ruby_engine" do
39
+ Launchy.extract_global_options( { :ruby_engine => "myruby" } )
40
+ Launchy.ruby_engine.must_equal 'myruby'
41
+ end
42
+ end
@@ -0,0 +1,5 @@
1
+ class MockScheme < Launchy::Application
2
+ def self.schemes
3
+ %w[ mock mockother ]
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ require 'rubygems'
2
+ require 'minitest/autorun'
3
+ require 'minitest/pride'
4
+ require 'launchy'
5
+ require 'stringio'
@@ -0,0 +1,427 @@
1
+ # SOURCE: http://tattle.rubygarden.org
2
+ ---
3
+ ruby_version:
4
+ 1.8.4: 506
5
+ 1.8.5: 842
6
+ 1.8.6: 270
7
+ 1.9.0: 1
8
+ 1.8.1: 9
9
+ 1.8.2: 36
10
+ host_vendor:
11
+ "": 1
12
+ mandrake: 1
13
+ sun: 18
14
+ apple: 619
15
+ mandriva: 1
16
+ slackware: 1
17
+ portbld: 27
18
+ pc: 858
19
+ ibm: 1
20
+ suse: 5
21
+ Apple Computer, Inc.: 13
22
+ Sun Microsystems Inc.: 6
23
+ unknown: 45
24
+ redhat: 70
25
+ ruby_install_name:
26
+ jruby.bat: 2
27
+ ruby185: 1
28
+ jruby: 17
29
+ ruby18: 175
30
+ ruby1.8: 222
31
+ ruby1.8.4: 1
32
+ ruby: 1248
33
+ build:
34
+ sparc-sun-solaris2.9: 8
35
+ i686-apple-darwin8.6.1: 81
36
+ i686-apple-darwin8.5.2: 11
37
+ java1.5: 3
38
+ i386-unknown-freebsd4.11: 1
39
+ powerpc-apple-darwin8.2.0: 3
40
+ i386-pc-solaris2.8: 2
41
+ x86_64-suse-linux-gnu: 2
42
+ x86_64-pc-linux-gnu: 89
43
+ i686-apple-darwin8.7.1: 31
44
+ i686-apple-darwin8.6.2: 15
45
+ java1.6: 6
46
+ i686-apple-darwin8.5.3: 4
47
+ i686-pc-mswin32: 375
48
+ i386-pc-linux-gnu: 2
49
+ i386-pc-linux: 3
50
+ powerpc-apple-darwin8.3.0: 3
51
+ i686-apple-darwin8.8.1: 140
52
+ i686-redhat-linux-gnu: 30
53
+ i686-apple-darwin8.7.2: 2
54
+ powerpc-apple-darwin8.4.0: 6
55
+ amd64-portbld-freebsd6: 2
56
+ i686-apple-darwin8.8.2: 53
57
+ i686-apple-darwin8.9.1: 27
58
+ i686-apple-darwin8.7.3: 3
59
+ x86_64-unknown-linux-gnu: 29
60
+ i686-suse-linux-gnu: 2
61
+ powerpc-apple-darwin8.10.0: 2
62
+ i686-apple-darwin8.8.3: 15
63
+ powerpc-apple-darwin7.9.0: 12
64
+ powerpc-apple-darwin8.5.0: 8
65
+ i386-mingw32: 1
66
+ i686-apple-darwin8.9.3: 1
67
+ i686-apple-darwin8.8.4: 5
68
+ x86_64-redhat-linux-gnu: 7
69
+ powerpc-apple-darwin8.6.0: 25
70
+ sparc-sun-solaris2.10: 7
71
+ i686-apple-darwin8.9.4: 3
72
+ i686-apple-darwin8.8.5: 3
73
+ powerpc-apple-darwin8.7.0: 39
74
+ powerpc-apple-darwin8.11.0: 1
75
+ powerpc-ibm-aix5.3.0.0: 1
76
+ powerpc-apple-darwin8.8.0: 53
77
+ i386-unknown-netbsdelf3.1.: 1
78
+ powerpc-unknown-linux-gnu: 3
79
+ powerpc-apple-darwin8.8.1: 1
80
+ i486-slackware-linux: 1
81
+ i386-pc-solaris2.10: 7
82
+ powerpc-apple-darwin8.9.0: 8
83
+ i686-pc-cygwin: 14
84
+ x86_64-unknown-openbsd4.0: 4
85
+ i686-pc-linux-gnu: 343
86
+ java: 8
87
+ i586-mandrake-linux-gnu: 1
88
+ i386-redhat-linux-gnu: 33
89
+ i686-apple-darwin9.0: 29
90
+ i586-mandriva-linux-gnu: 1
91
+ i386-portbld-freebsd5: 3
92
+ powerpc-apple-darwin8.0: 10
93
+ i386-unknown-freebsd6.0: 2
94
+ i486-pc-linux-gnu: 22
95
+ i686-suse-linux: 1
96
+ i686-apple-darwin: 1
97
+ i386-portbld-freebsd6: 20
98
+ powerpc-apple-darwin9.0: 5
99
+ i386-unknown-freebsd6.1: 1
100
+ x86_64-unknown-openbsd3.9: 1
101
+ i686-apple-darwin8.10.1: 13
102
+ i386-portbld-freebsd7: 2
103
+ i686-apple-darwin9.1.0: 1
104
+ i686-apple-darwin8.4.1: 1
105
+ i686-apple-darwin8.11.1: 2
106
+ powerpc64-unknown-linux-gnu: 2
107
+ i686-apple-darwin8.5.1: 1
108
+ i686-apple-darwin8.10.3: 1
109
+ java1.4: 2
110
+ sparc-sun-solaris2.8: 3
111
+ i386-unknown-openbsd4.0: 2
112
+ arch:
113
+ x86-java1.5: 1
114
+ i686-darwin8.8.1: 140
115
+ i686-darwin8.7.2: 2
116
+ i386-mswin32: 375
117
+ i686-darwin8.8.2: 53
118
+ i686-darwin8.9.1: 27
119
+ i686-darwin8.7.3: 3
120
+ x86-java1.6: 1
121
+ i686-darwin8.8.3: 15
122
+ i686-darwin8.9.3: 1
123
+ i686-darwin8.8.4: 5
124
+ amd64-freebsd6: 2
125
+ sparc-solaris2.8: 3
126
+ x86_64-openbsd4.0: 4
127
+ powerpc-aix5.3.0.0: 1
128
+ powerpc-darwin8.2.0: 3
129
+ sparc-solaris2.9: 8
130
+ i386-netbsdelf: 1
131
+ i386-mingw32: 1
132
+ powerpc-darwin8.3.0: 3
133
+ i686-darwin8.9.4: 3
134
+ i686-darwin8.8.5: 3
135
+ i386-linux-gnu: 8
136
+ powerpc-darwin8.10.0: 2
137
+ i586-linux-gnu: 2
138
+ powerpc-darwin8.4.0: 6
139
+ powerpc-darwin8.11.0: 1
140
+ powerpc-darwin8.5.0: 8
141
+ i386-freebsd5: 3
142
+ powerpc-darwin8.6.0: 25
143
+ i386-linux: 71
144
+ i386-freebsd6: 20
145
+ powerpc-darwin8.7.0: 39
146
+ i486-linux: 188
147
+ x86_64-linux: 127
148
+ i386-freebsd7: 2
149
+ powerpc-darwin8.8.0: 53
150
+ i586-linux: 3
151
+ java: 8
152
+ i386-freebsd4.11: 1
153
+ powerpc-darwin8.9.0: 8
154
+ powerpc-darwin8.8.1: 1
155
+ x86_64-openbsd3.9: 1
156
+ i686-darwin: 1
157
+ powerpc-darwin8.0: 7
158
+ sparc-solaris2.10: 7
159
+ universal-darwin8.0: 5
160
+ powerpc-linux: 3
161
+ i386-freebsd6.0: 2
162
+ powerpc64-linux: 2
163
+ universal-darwin9.0: 34
164
+ i386-cygwin: 14
165
+ powerpc-darwin7.9.0: 12
166
+ i386-freebsd6.1: 1
167
+ i386-solaris2.10: 7
168
+ i386-java1.5: 2
169
+ i386-openbsd4.0: 2
170
+ i686-darwin8.4.1: 1
171
+ i686-darwin8.10.1: 11
172
+ i386-solaris2.8: 2
173
+ i686-darwin9.1.0: 1
174
+ i686-darwin8.5.1: 1
175
+ i686-darwin8.11.1: 2
176
+ i386-java1.6: 7
177
+ i686-darwin8.6.1: 81
178
+ i686-darwin8.5.2: 11
179
+ i686-darwin8.10.3: 1
180
+ i686-linux: 167
181
+ i686-darwin8.7.1: 31
182
+ i686-darwin8.6.2: 15
183
+ i686-darwin8.5.3: 4
184
+ target_cpu:
185
+ x86: 2
186
+ powerpc64: 2
187
+ i686: 610
188
+ powerpc: 180
189
+ amd64: 2
190
+ x86_64: 132
191
+ i386: 527
192
+ i486: 188
193
+ i586: 5
194
+ sparc: 18
195
+ host_os:
196
+ freebsd6.1: 1
197
+ darwin8.11.1: 2
198
+ darwin8.5.3: 4
199
+ solaris2.9: 8
200
+ darwin7.9.0: 12
201
+ darwin8.6.2: 15
202
+ darwin8.7.1: 31
203
+ darwin8.8.0: 53
204
+ darwin8.10.3: 1
205
+ freebsd4.11: 1
206
+ darwin9.1.0: 1
207
+ darwin8.7.2: 2
208
+ darwin8.9.0: 8
209
+ darwin8.0: 10
210
+ darwin8.8.1: 141
211
+ darwin8.7.3: 3
212
+ linux: 9
213
+ darwin8.9.1: 27
214
+ darwin9.0: 34
215
+ darwin8.8.2: 53
216
+ openbsd3.9: 1
217
+ Windows XP: 2
218
+ cygwin: 14
219
+ darwin8.8.3: 15
220
+ darwin8.9.3: 1
221
+ darwin8.2.0: 3
222
+ darwin8.8.4: 5
223
+ darwin8.8.5: 3
224
+ darwin8.9.4: 3
225
+ darwin8.3.0: 3
226
+ openbsd4.0: 6
227
+ Mac OS X: 13
228
+ aix5.3.0.0: 1
229
+ darwin: 1
230
+ freebsd5: 3
231
+ darwin8.4.0: 6
232
+ darwin8.4.1: 1
233
+ darwin8.10.0: 2
234
+ darwin8.5.0: 8
235
+ freebsd6: 22
236
+ netbsdelf: 1
237
+ darwin8.5.1: 1
238
+ darwin8.11.0: 1
239
+ freebsd7: 2
240
+ darwin8.10.1: 13
241
+ darwin8.6.0: 25
242
+ freebsd6.0: 2
243
+ solaris2.8: 5
244
+ darwin8.5.2: 11
245
+ solaris2.10: 14
246
+ darwin8.7.0: 39
247
+ darwin8.6.1: 81
248
+ mswin32: 376
249
+ linux-gnu: 566
250
+ rubygems_version:
251
+ 1.1.0: 11
252
+ 0.9.3: 11
253
+ 0.9.0.8: 16
254
+ 1.0.1: 71
255
+ 0.8.5: 2
256
+ 0.8.10: 12
257
+ 1.1.1: 16
258
+ 0.9.0.9: 21
259
+ 0.9.4: 95
260
+ 0.9.5: 6
261
+ 0.8.11: 235
262
+ 0.9.4.7: 1
263
+ 0.8.8: 1
264
+ 0.9.0.10: 5
265
+ 0.9.0: 912
266
+ 0.9.1: 78
267
+ 0.9.0.6: 5
268
+ 0.9.2: 162
269
+ 0.9.0.7: 2
270
+ 1.0.0: 2
271
+ SHELL:
272
+ /bin/bash: 75
273
+ /bin/sh: 1212
274
+ $(COMSPEC): 375
275
+ cmd.exe: 2
276
+ /usr/local/bin/bash: 2
277
+ host_cpu:
278
+ powerpc64: 2
279
+ x86: 2
280
+ i686: 1208
281
+ powerpc: 180
282
+ amd64: 2
283
+ x86_64: 132
284
+ i386: 97
285
+ i486: 23
286
+ i586: 2
287
+ sparc: 18
288
+ LIBRUBY:
289
+ libruby.so.1.8.6: 9
290
+ libruby1.8.4.1.8.4.dylib: 1
291
+ libruby18.so.1.8.4: 3
292
+ libruby185-static.a: 1
293
+ libruby1.8.so.1.8.2: 7
294
+ libruby18.so.1.8.5: 127
295
+ libruby18.so.1.8.6: 17
296
+ libruby.1.8.5.dylib: 166
297
+ jruby: 8
298
+ libruby.1.8.6.dylib: 41
299
+ libruby.so.1.9.0: 1
300
+ libruby.so.1.8.1: 8
301
+ libruby1.8.so.1.8.4: 125
302
+ libruby.so.1.8.2: 1
303
+ libruby18.so.18.5: 1
304
+ libruby.so.1.84: 2
305
+ jruby.jar: 11
306
+ libruby1.8.so.1.8.5: 62
307
+ libmsvcrt-ruby18.dll.a: 1
308
+ libruby.so.1.85: 1
309
+ libruby1.8-static.a: 1
310
+ libruby.so.1: 4
311
+ libruby.1.8.2.dylib: 5
312
+ libruby1.8.so.1.8.6: 26
313
+ libruby.dll.a: 14
314
+ libruby.so.1.8.4: 15
315
+ libruby.1.dylib: 43
316
+ libruby-static.a: 454
317
+ libruby.1.8.4.dylib: 50
318
+ libruby.so.1.8.5: 59
319
+ msvcrt-ruby18.lib: 375
320
+ libruby18.so.18: 27
321
+ LIBRUBY_SO:
322
+ libruby.so.1.8.6: 47
323
+ libruby1.8.4.1.8.4.dylib: 1
324
+ libruby18.so.1.8.4: 3
325
+ libruby1.8.so.1.8.2: 7
326
+ libruby18.so.1.8.5: 127
327
+ libruby18.so.1.8.6: 17
328
+ libruby.1.8.5.dylib: 166
329
+ jruby: 8
330
+ libruby.1.8.6.dylib: 41
331
+ libruby.so.1.9.0: 1
332
+ libruby.so.1.8.1: 9
333
+ libruby1.8.so.1.8.4: 125
334
+ libruby18.so.18.5: 1
335
+ libruby.so.1.84: 2
336
+ libruby.so.1.8.2: 3
337
+ jruby.jar: 11
338
+ libruby1.8.so.1.8.5: 63
339
+ libruby.so.1.85: 1
340
+ libruby.so.1: 4
341
+ libruby.1.8.2.dylib: 5
342
+ libruby1.8.so.1.8.6: 26
343
+ libruby185.so.1.8.5: 1
344
+ cygruby18.dll: 14
345
+ libruby.1.dylib: 43
346
+ libruby.so.1.8.4: 253
347
+ msvcrt-ruby18.dll: 376
348
+ libruby.1.8.4.dylib: 50
349
+ libruby.so.1.8.5: 234
350
+ libruby18.so.18: 27
351
+ target:
352
+ sparc-sun-solaris2.9: 8
353
+ i686-apple-darwin8.6.1: 81
354
+ i686-apple-darwin8.5.2: 11
355
+ i386--netbsdelf: 1
356
+ powerpc-apple-darwin8.2.0: 3
357
+ i386-unknown-freebsd4.11: 1
358
+ i386-pc-solaris2.8: 2
359
+ x86_64-pc-linux-gnu: 105
360
+ i686-apple-darwin8.7.1: 31
361
+ i686-apple-darwin8.6.2: 15
362
+ i686-apple-darwin8.5.3: 4
363
+ x86_64-suse-linux: 2
364
+ i386-pc-linux-gnu: 2
365
+ i386-pc-linux: 15
366
+ powerpc-apple-darwin8.3.0: 3
367
+ i686-apple-darwin8.8.1: 140
368
+ i686-apple-darwin8.7.2: 2
369
+ powerpc-apple-darwin8.4.0: 6
370
+ amd64-portbld-freebsd6: 2
371
+ i686-apple-darwin8.8.2: 53
372
+ i686-apple-darwin8.9.1: 27
373
+ i686-apple-darwin8.7.3: 3
374
+ x86_64-unknown-linux-gnu: 13
375
+ powerpc-apple-darwin8.10.0: 2
376
+ i686-apple-darwin8.8.3: 15
377
+ powerpc-apple-darwin7.9.0: 12
378
+ powerpc-apple-darwin8.5.0: 8
379
+ i386-mingw32: 1
380
+ i686-apple-darwin8.9.3: 1
381
+ i586-suse-linux: 3
382
+ i686-apple-darwin8.8.4: 5
383
+ x86_64-redhat-linux-gnu: 7
384
+ powerpc-apple-darwin8.6.0: 25
385
+ powerpc-apple-darwin8.11.0: 1
386
+ sparc-sun-solaris2.10: 7
387
+ i686-apple-darwin8.9.4: 3
388
+ i686-apple-darwin8.8.5: 3
389
+ powerpc-apple-darwin8.7.0: 39
390
+ powerpc-ibm-aix5.3.0.0: 1
391
+ i386-redhat-linux: 1
392
+ powerpc-apple-darwin8.8.0: 53
393
+ powerpc-unknown-linux-gnu: 3
394
+ i486-slackware-linux: 1
395
+ i386-pc-solaris2.10: 7
396
+ powerpc-apple-darwin8.9.0: 8
397
+ powerpc-apple-darwin8.8.1: 1
398
+ i686-pc-cygwin: 14
399
+ x86_64-unknown-openbsd4.0: 4
400
+ i686-pc-linux-gnu: 166
401
+ java: 8
402
+ i586-mandrake-linux-gnu: 1
403
+ i386-redhat-linux-gnu: 61
404
+ i586-mandriva-linux-gnu: 1
405
+ i686-apple-darwin9.0: 29
406
+ i386-portbld-freebsd5: 3
407
+ powerpc-apple-darwin8.0: 10
408
+ i386-unknown-freebsd6.0: 2
409
+ i486-pc-linux-gnu: 187
410
+ i686-apple-darwin: 1
411
+ i386-portbld-freebsd6: 20
412
+ powerpc-apple-darwin9.0: 5
413
+ i386-unknown-freebsd6.1: 1
414
+ x86_64-unknown-openbsd3.9: 1
415
+ i686-redhat-linux: 1
416
+ i686-apple-darwin8.10.1: 13
417
+ i386-portbld-freebsd7: 2
418
+ i686-apple-darwin9.1.0: 1
419
+ i686-apple-darwin8.4.1: 1
420
+ i686-apple-darwin8.11.1: 2
421
+ powerpc64-unknown-linux-gnu: 2
422
+ i386-pc-mswin32: 375
423
+ i686-apple-darwin8.5.1: 1
424
+ java1.4: 11
425
+ sparc-sun-solaris2.8: 3
426
+ i386-unknown-openbsd4.0: 2
427
+ i686-apple-darwin8.10.3: 1