wijet-launchy 2.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY +111 -0
- data/LICENSE +16 -0
- data/NOTES +1 -0
- data/README +100 -0
- data/Rakefile +70 -0
- data/bin/launchy +4 -0
- data/lib/launchy.rb +115 -0
- data/lib/launchy/application.rb +62 -0
- data/lib/launchy/applications/browser.rb +79 -0
- data/lib/launchy/cli.rb +83 -0
- data/lib/launchy/deprecated.rb +52 -0
- data/lib/launchy/descendant_tracker.rb +49 -0
- data/lib/launchy/detect.rb +10 -0
- data/lib/launchy/detect/host_os.rb +31 -0
- data/lib/launchy/detect/host_os_family.rb +71 -0
- data/lib/launchy/detect/nix_desktop_environment.rb +60 -0
- data/lib/launchy/detect/ruby_engine.rb +78 -0
- data/lib/launchy/detect/runner.rb +111 -0
- data/lib/launchy/error.rb +4 -0
- data/lib/launchy/os_family.rb +8 -0
- data/lib/launchy/version.rb +18 -0
- data/spec/application_spec.rb +43 -0
- data/spec/applications/browser_spec.rb +54 -0
- data/spec/cli_spec.rb +75 -0
- data/spec/detect/host_os_family_spec.rb +40 -0
- data/spec/detect/host_os_spec.rb +19 -0
- data/spec/detect/nix_desktop_environment_spec.rb +33 -0
- data/spec/detect/ruby_engine_spec.rb +37 -0
- data/spec/detect/runner_spec.rb +98 -0
- data/spec/launchy_spec.rb +58 -0
- data/spec/mock_application.rb +9 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/tattle-host-os.yaml +427 -0
- data/spec/version_spec.rb +11 -0
- data/tasks/bundler.rake +13 -0
- data/tasks/contribute.rake +36 -0
- metadata +200 -0
@@ -0,0 +1,98 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Launchy::Detect::Runner do
|
4
|
+
before do
|
5
|
+
Launchy.reset_global_options
|
6
|
+
@test_url = "http://example.com/?foo=bar&baz=wibble"
|
7
|
+
end
|
8
|
+
|
9
|
+
after do
|
10
|
+
Launchy.reset_global_options
|
11
|
+
end
|
12
|
+
|
13
|
+
it "raises an error when there is an unknown host os" do
|
14
|
+
Launchy.host_os = "foo"
|
15
|
+
lambda{ Launchy::Detect::Runner.detect }.must_raise Launchy::Detect::HostOsFamily::NotFoundError
|
16
|
+
end
|
17
|
+
|
18
|
+
it "raises an error when there is an unknown ruby engine" do
|
19
|
+
Launchy.ruby_engine = "wibble"
|
20
|
+
lambda{ Launchy::Detect::Runner.detect }.must_raise Launchy::Detect::RubyEngine::NotFoundError
|
21
|
+
end
|
22
|
+
|
23
|
+
# On anything that has fork, use Forkable
|
24
|
+
%w[ linux darwin cygwin ].each do |host_os|
|
25
|
+
%w[ ruby rbx macruby ].each do |engine_name|
|
26
|
+
it "engine '#{engine_name}' on OS '#{host_os}' uses runner Forkable" do
|
27
|
+
Launchy.host_os = host_os
|
28
|
+
Launchy.ruby_engine = engine_name
|
29
|
+
engine = Launchy::Detect::Runner.detect
|
30
|
+
engine.must_be_instance_of Launchy::Detect::Runner::Forkable
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
|
36
|
+
# Jruby always uses the Jruby runner except on Windows
|
37
|
+
{ 'mingw' => Launchy::Detect::Runner::Windows,
|
38
|
+
'linux' => Launchy::Detect::Runner::Jruby,
|
39
|
+
'darwin' => Launchy::Detect::Runner::Jruby,
|
40
|
+
'cygwin' => Launchy::Detect::Runner::Jruby, }.each_pair do |host_os, runner|
|
41
|
+
it "engine 'jruby' on OS '#{host_os}' uses runner #{runner.name}" do
|
42
|
+
Launchy.host_os = host_os
|
43
|
+
Launchy.ruby_engine = 'jruby'
|
44
|
+
engine = Launchy::Detect::Runner.detect
|
45
|
+
engine.must_be_instance_of runner
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
# If you are on windows, no matter what engine, you use the windows runner
|
50
|
+
%w[ ruby rbx jruby macruby ].each do |engine_name|
|
51
|
+
it "uses a Windows runner when the engine is '#{engine_name}'" do
|
52
|
+
Launchy.host_os = "mingw"
|
53
|
+
Launchy.ruby_engine = engine_name
|
54
|
+
e = Launchy::Detect::Runner.detect
|
55
|
+
e.must_be_instance_of Launchy::Detect::Runner::Windows
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
it "Windows launches use the 'cmd' command" do
|
60
|
+
win = Launchy::Detect::Runner::Windows.new
|
61
|
+
cmd = win.dry_run( "not-really", [ "http://example.com" ] )
|
62
|
+
cmd.must_equal 'cmd /c not-really http://example.com'
|
63
|
+
end
|
64
|
+
|
65
|
+
%w[ & | ( ) < > ^ ].each do |reserved_char|
|
66
|
+
it "Windows escapes '#{reserved_char}' in urls" do
|
67
|
+
win = Launchy::Detect::Runner::Windows.new
|
68
|
+
parts = [ 'http://example.com/?foo=bar', 'baz=wibble' ]
|
69
|
+
url = parts.join( reserved_char )
|
70
|
+
output_url = parts.join( "^#{reserved_char}" )
|
71
|
+
|
72
|
+
win.all_args( "not-really", [ url ] ).must_equal [ 'cmd', '/c', 'not-really', output_url ]
|
73
|
+
|
74
|
+
cmd = win.dry_run( "not-really", [ url ] )
|
75
|
+
cmd.must_equal "cmd /c not-really #{output_url}"
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
it "Jruby doesnot escapes '&' in urls" do
|
80
|
+
jruby = Launchy::Detect::Runner::Jruby.new
|
81
|
+
cmd = jruby.dry_run( "not-really", [ @test_url ])
|
82
|
+
cmd.must_equal 'not-really http://example.com/?foo=bar&baz=wibble'
|
83
|
+
end
|
84
|
+
|
85
|
+
it "does not escape %38 items in urls" do
|
86
|
+
l = Launchy::Detect::Runner::Forkable.new
|
87
|
+
cmd = l.dry_run( "not-really", [ "http://ja.wikipedia.org/wiki/%E3%81%82" ] )
|
88
|
+
cmd.must_equal( 'not-really http://ja.wikipedia.org/wiki/%E3%81%82' )
|
89
|
+
end
|
90
|
+
|
91
|
+
it "can launch a utf8 url" do
|
92
|
+
url = "http://ja.wikipedia.org/wiki/あ"
|
93
|
+
l = Launchy::Detect::Runner::Forkable.new
|
94
|
+
cmd = l.dry_run( "not-really", [ url ] )
|
95
|
+
cmd.must_equal( "not-really #{url}" )
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Launchy do
|
4
|
+
|
5
|
+
before do
|
6
|
+
Launchy.reset_global_options
|
7
|
+
@stderr = $stderr
|
8
|
+
$stderr = StringIO.new
|
9
|
+
end
|
10
|
+
|
11
|
+
after do
|
12
|
+
Launchy.reset_global_options
|
13
|
+
$stderr = @stderr
|
14
|
+
end
|
15
|
+
|
16
|
+
it "logs to stderr when LAUNCHY_DEBUG environment variable is set" do
|
17
|
+
ENV["LAUNCHY_DEBUG"] = 'true'
|
18
|
+
old_stderr = $stderr
|
19
|
+
$stderr = StringIO.new
|
20
|
+
Launchy.log "This is a test log message"
|
21
|
+
$stderr.string.strip.must_equal "LAUNCHY_DEBUG: This is a test log message"
|
22
|
+
$stderr = old_stderr
|
23
|
+
ENV["LAUNCHY_DEBUG"] = nil
|
24
|
+
end
|
25
|
+
|
26
|
+
it "sets the global option :dry_run to value of LAUNCHY_DRY_RUN environment variable" do
|
27
|
+
ENV['LAUNCHY_DRY_RUN'] = 'true'
|
28
|
+
Launchy.extract_global_options({})
|
29
|
+
Launchy.dry_run?.must_equal 'true'
|
30
|
+
ENV['LAUNCHY_DRY_RUN'] = nil
|
31
|
+
end
|
32
|
+
|
33
|
+
it "has the global option :debug" do
|
34
|
+
Launchy.extract_global_options( { :debug => 'true' } )
|
35
|
+
Launchy.debug?.must_equal true
|
36
|
+
end
|
37
|
+
|
38
|
+
it "has the global option :application" do
|
39
|
+
Launchy.extract_global_options( { :application => "wibble" } )
|
40
|
+
Launchy.application.must_equal 'wibble'
|
41
|
+
end
|
42
|
+
|
43
|
+
it "has the global option :host_os" do
|
44
|
+
Launchy.extract_global_options( { :host_os => "my-special-os-v2" } )
|
45
|
+
Launchy.host_os.must_equal 'my-special-os-v2'
|
46
|
+
end
|
47
|
+
|
48
|
+
it "has the global option :ruby_engine" do
|
49
|
+
Launchy.extract_global_options( { :ruby_engine => "myruby" } )
|
50
|
+
Launchy.ruby_engine.must_equal 'myruby'
|
51
|
+
end
|
52
|
+
|
53
|
+
it "prints an error on stderr when no scheme is found for the given uri" do
|
54
|
+
Launchy.open( "blah://something/invalid" )
|
55
|
+
$stderr.string.must_match( /Failure in opening/ )
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -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
|