pik 0.2.6 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +20 -0
- data/Manifest.txt +4 -1
- data/README.rdoc +40 -17
- data/Rakefile +68 -59
- data/bin/pik_install +42 -14
- data/features/add_command.feature +8 -8
- data/features/config_command.feature +1 -2
- data/features/default_command.feature +3 -3
- data/features/gemsync_command.feature +1 -1
- data/features/info_command.feature +62 -0
- data/features/install_command.feature +22 -17
- data/features/list_command.feature +5 -5
- data/features/pik_install.feature +34 -2
- data/features/remove_command.feature +2 -2
- data/features/run_command.feature +6 -5
- data/features/step_definitions/pik_commands.rb +21 -7
- data/features/support/env.rb +75 -0
- data/features/support/proxy.ru +81 -0
- data/features/switch_command.feature +14 -13
- data/features/tag_command.feature +5 -5
- data/features/uninstall_command.feature +5 -6
- data/features/version.feature +2 -1
- data/lib/pik.rb +13 -6
- data/lib/pik/commands/add_command.rb +13 -1
- data/lib/pik/commands/command.rb +6 -6
- data/lib/pik/commands/config_command.rb +4 -2
- data/lib/pik/commands/devkit_command.rb +69 -0
- data/lib/pik/commands/gemsync_command.rb +4 -2
- data/lib/pik/commands/help_command.rb +1 -1
- data/lib/pik/commands/info_command.rb +35 -14
- data/lib/pik/commands/install_command.rb +6 -11
- data/lib/pik/commands/list_command.rb +26 -7
- data/lib/pik/commands/uninstall_command.rb +4 -4
- data/lib/pik/contrib/uri_ext.rb +1 -1
- data/lib/pik/core_ext/pathname.rb +2 -2
- data/lib/pik/implementations.rb +51 -7
- data/lib/pik/version_parser.rb +8 -5
- data/spec/html/ruby.htm +61 -15
- data/spec/implementations_spec.rb +4 -4
- data/spec/pathname_spec.rb +12 -4
- data/spec/version_parser_spec.rb +9 -2
- data/tools/pik.bat +1 -1
- data/tools/pik/pik_runner +1 -1
- data/tools/pik/pik_runner.exe +0 -0
- data/tools/pik/pik_runner.exy +121 -114
- metadata +58 -15
- data/features/env.rb +0 -45
data/lib/pik/implementations.rb
CHANGED
@@ -19,13 +19,21 @@ module Pik
|
|
19
19
|
JRuby.new
|
20
20
|
end
|
21
21
|
|
22
|
+
def self.devkit
|
23
|
+
DevKit.new
|
24
|
+
end
|
25
|
+
|
22
26
|
def self.method_missing(meth)
|
23
27
|
raise "Pik isn't aware of an implementation called '#{meth}' for Windows."
|
24
28
|
end
|
29
|
+
|
30
|
+
def self.implementations
|
31
|
+
[ruby, jruby, ironruby, devkit]
|
32
|
+
end
|
25
33
|
|
26
34
|
def self.list
|
27
35
|
h = {}
|
28
|
-
|
36
|
+
implementations.each{|i| h[i.subclass] = i.versions }
|
29
37
|
h
|
30
38
|
end
|
31
39
|
|
@@ -34,10 +42,14 @@ module Pik
|
|
34
42
|
def self.find(*args)
|
35
43
|
new.find(*args)
|
36
44
|
end
|
37
|
-
|
45
|
+
|
38
46
|
def initialize
|
39
47
|
@url = 'http://rubyforge.org'
|
40
48
|
end
|
49
|
+
|
50
|
+
def url
|
51
|
+
@url + @path
|
52
|
+
end
|
41
53
|
|
42
54
|
def find(*args)
|
43
55
|
if args.empty?
|
@@ -56,8 +68,8 @@ module Pik
|
|
56
68
|
h = {}
|
57
69
|
Hpricot(read).search("a") do |a|
|
58
70
|
if a_href = a.attributes['href']
|
59
|
-
href, link, version = *a_href.match(@re)
|
60
|
-
h[version] = @url + link if version
|
71
|
+
href, link, version, rc = *a_href.match(@re)
|
72
|
+
h["#{version}#{rc}"] = @url + link if version
|
61
73
|
end
|
62
74
|
end
|
63
75
|
h
|
@@ -72,15 +84,24 @@ module Pik
|
|
72
84
|
self.class.to_s.split('::').last
|
73
85
|
end
|
74
86
|
alias :name :subclass
|
87
|
+
|
88
|
+
def after_install(install)
|
89
|
+
puts
|
90
|
+
p = Pik::Add.new([install.target + 'bin'], install.config)
|
91
|
+
p.execute
|
92
|
+
p.close
|
93
|
+
end
|
75
94
|
|
76
95
|
end
|
77
96
|
|
78
97
|
class Ruby < Base
|
79
98
|
|
99
|
+
# <a href="/frs/download.php/66874/ruby-1.9.1-p243-i386-mingw32-rc1.7z">
|
100
|
+
# <a href="/frs/download.php/62269/ruby-1.9.1-p243-i386-mingw32.7z">
|
80
101
|
def initialize
|
81
102
|
super
|
82
103
|
@path = "/frs/?group_id=167"
|
83
|
-
@re
|
104
|
+
@re = /(.+ruby\-(.+)\-i386\-mingw32(.*)\.7z)/
|
84
105
|
end
|
85
106
|
|
86
107
|
end
|
@@ -90,7 +111,7 @@ module Pik
|
|
90
111
|
def initialize
|
91
112
|
super
|
92
113
|
@path = "/frs/?group_id=4359"
|
93
|
-
@re
|
114
|
+
@re = /(.+ironruby\-(.*[^ipy])\.zip)/
|
94
115
|
end
|
95
116
|
|
96
117
|
end
|
@@ -103,8 +124,31 @@ module Pik
|
|
103
124
|
@path = "http://www.jruby.org/download"
|
104
125
|
@re = /(.+\-bin\-(.+)\.zip)/
|
105
126
|
end
|
127
|
+
|
106
128
|
end
|
107
|
-
|
129
|
+
|
130
|
+
class DevKit < Base
|
131
|
+
|
132
|
+
def initialize
|
133
|
+
super
|
134
|
+
@path = "/frs/?group_id=167"
|
135
|
+
@re = /(.+devkit-(.*)-.*\.7z)/
|
136
|
+
end
|
137
|
+
|
138
|
+
def after_install(install)
|
139
|
+
devkit = install.target + 'devkit'
|
140
|
+
p = Pik::Config.new(["devkit=#{devkit.to_windows}"], install.config)
|
141
|
+
p.execute
|
142
|
+
p.close
|
143
|
+
|
144
|
+
p = Pik::Devkit.new(["update"], install.config)
|
145
|
+
p.execute
|
146
|
+
p.close
|
147
|
+
puts
|
148
|
+
end
|
149
|
+
|
150
|
+
end
|
151
|
+
|
108
152
|
end
|
109
153
|
|
110
154
|
end
|
data/lib/pik/version_parser.rb
CHANGED
@@ -31,17 +31,20 @@ module Pik
|
|
31
31
|
end
|
32
32
|
|
33
33
|
def platform
|
34
|
-
|
35
|
-
md.to_a.compact.last if md
|
34
|
+
match(/\[(.+)\]|(\.NET.+)/)
|
36
35
|
end
|
37
36
|
|
38
37
|
def patchlevel
|
39
|
-
|
40
|
-
md.to_a.compact.last if md
|
38
|
+
match(/patchlevel (\d+)|\dp(\d+)/)
|
41
39
|
end
|
42
40
|
|
43
41
|
def full_version
|
44
|
-
|
42
|
+
match(/.+: (.+)/)
|
43
|
+
end
|
44
|
+
|
45
|
+
def match(re)
|
46
|
+
md = @version.match(re)
|
47
|
+
md.captures.compact[-1] if md
|
45
48
|
end
|
46
49
|
|
47
50
|
end
|
data/spec/html/ruby.htm
CHANGED
@@ -234,8 +234,18 @@ class="tabs"><li><a href='/projects/rubyinstaller/'>Summary</a></li><li><a href=
|
|
234
234
|
<tr align="center" ><td ><span class="titlebar">Size</span></td><td ><span class="titlebar">D/L</span></td><td ><span class="titlebar">Arch</span></td><td ><span class="titlebar">Type</span></td></tr>
|
235
235
|
<!-- end multiTableRow -->
|
236
236
|
<tr bgcolor="#FFFFFF"><td colspan="3"><h3>Development Kit
|
237
|
-
<a href="/frs/monitor.php?filemodule_id=12344&group_id=167&start=1"><img src="http://static.rubyforge.vm.bytemark.co.uk/themes/rubyforge/images/ic/mail16w.png" alt="Monitor this package" border="0" width="20" height="20" /></a></h3></td><td colspan="4"> </td></tr
|
238
|
-
|
237
|
+
<a href="/frs/monitor.php?filemodule_id=12344&group_id=167&start=1"><img src="http://static.rubyforge.vm.bytemark.co.uk/themes/rubyforge/images/ic/mail16w.png" alt="Monitor this package" border="0" width="20" height="20" /></a></h3></td><td colspan="4"> </td></tr>
|
238
|
+
<!-- multiTableRow -->
|
239
|
+
<tr bgcolor="#FFFFFF"><td colspan="3" > <strong>
|
240
|
+
<a href="shownotes.php?release_id=41273">3.4.5r3 (20091110)</a></strong></td><td colspan="4" align="middle" > <strong>
|
241
|
+
2009-11-09 22:00</strong></td></tr>
|
242
|
+
<!-- end multiTableRow -->
|
243
|
+
|
244
|
+
<!-- multiTableRow -->
|
245
|
+
<tr bgcolor="#FFFFFF"><td colspan=3 ><dd>
|
246
|
+
<a href="/frs/download.php/66888/devkit-3.4.5r3-20091110.7z">devkit-3.4.5r3-20091110.7z</a></td><td align="right" >12.66 MB</td><td align="right" >18</td><td >i386</td><td >Other</td></tr>
|
247
|
+
<!-- end multiTableRow -->
|
248
|
+
<tr bgcolor="#DDDDDD"><td colspan="3"><h3>One-Click Installer - Windows
|
239
249
|
<a href="/frs/monitor.php?filemodule_id=178&group_id=167&start=1"><img src="http://static.rubyforge.vm.bytemark.co.uk/themes/rubyforge/images/ic/mail16w.png" alt="Monitor this package" border="0" width="20" height="20" /></a></h3></td><td colspan="4"> </td></tr>
|
240
250
|
<!-- multiTableRow -->
|
241
251
|
<tr bgcolor="#DDDDDD"><td colspan="3" > <strong>
|
@@ -245,12 +255,12 @@ class="tabs"><li><a href='/projects/rubyinstaller/'>Summary</a></li><li><a href=
|
|
245
255
|
|
246
256
|
<!-- multiTableRow -->
|
247
257
|
<tr bgcolor="#DDDDDD"><td colspan=3 ><dd>
|
248
|
-
<a href="/frs/download.php/47082/ruby186-27_rc2.exe">ruby186-27_rc2.exe</a></td><td align="right" >24.42 MB</td><td align="right" >
|
258
|
+
<a href="/frs/download.php/47082/ruby186-27_rc2.exe">ruby186-27_rc2.exe</a></td><td align="right" >24.42 MB</td><td align="right" >412,196</td><td >i386</td><td >.exe (Windows executable)</td></tr>
|
249
259
|
<!-- end multiTableRow -->
|
250
260
|
|
251
261
|
<!-- multiTableRow -->
|
252
262
|
<tr bgcolor="#DDDDDD"><td colspan=3 ><dd>
|
253
|
-
<a href="/frs/download.php/47083/ruby186-27_rc2.md5">ruby186-27_rc2.md5</a></td><td align="right" >54 bytes</td><td align="right" >
|
263
|
+
<a href="/frs/download.php/47083/ruby186-27_rc2.md5">ruby186-27_rc2.md5</a></td><td align="right" >54 bytes</td><td align="right" >17,194</td><td >Universal</td><td >Other</td></tr>
|
254
264
|
<!-- end multiTableRow -->
|
255
265
|
|
256
266
|
<!-- multiTableRow -->
|
@@ -261,15 +271,51 @@ class="tabs"><li><a href='/projects/rubyinstaller/'>Summary</a></li><li><a href=
|
|
261
271
|
|
262
272
|
<!-- multiTableRow -->
|
263
273
|
<tr bgcolor="#DDDDDD"><td colspan=3 ><dd>
|
264
|
-
<a href="/frs/download.php/29263/ruby186-26.exe">ruby186-26.exe</a></td><td align="right" >23.72 MB</td><td align="right" >
|
274
|
+
<a href="/frs/download.php/29263/ruby186-26.exe">ruby186-26.exe</a></td><td align="right" >23.72 MB</td><td align="right" >965,486</td><td >i386</td><td >.exe (Windows executable)</td></tr>
|
265
275
|
<!-- end multiTableRow -->
|
266
276
|
|
267
277
|
<!-- multiTableRow -->
|
268
278
|
<tr bgcolor="#DDDDDD"><td colspan=3 ><dd>
|
269
|
-
<a href="/frs/download.php/29264/ruby186-26.md5">ruby186-26.md5</a></td><td align="right" >34 bytes</td><td align="right" >
|
279
|
+
<a href="/frs/download.php/29264/ruby186-26.md5">ruby186-26.md5</a></td><td align="right" >34 bytes</td><td align="right" >28,323</td><td >Other</td><td >Other Source File</td></tr>
|
270
280
|
<!-- end multiTableRow -->
|
271
|
-
<tr bgcolor="#B6B6B6"><td colspan="3"><h3>RubyInstaller
|
281
|
+
<tr bgcolor="#B6B6B6"><td colspan="3"><h3>RubyInstaller
|
272
282
|
<a href="/frs/monitor.php?filemodule_id=12111&group_id=167&start=1"><img src="http://static.rubyforge.vm.bytemark.co.uk/themes/rubyforge/images/ic/mail16w.png" alt="Monitor this package" border="0" width="20" height="20" /></a></h3></td><td colspan="4"> </td></tr>
|
283
|
+
<!-- multiTableRow -->
|
284
|
+
<tr bgcolor="#B6B6B6"><td colspan="3" > <strong>
|
285
|
+
<a href="shownotes.php?release_id=41267">Release Candidate 1</a></strong></td><td colspan="4" align="middle" > <strong>
|
286
|
+
2009-11-09 23:00</strong></td></tr>
|
287
|
+
<!-- end multiTableRow -->
|
288
|
+
|
289
|
+
<!-- multiTableRow -->
|
290
|
+
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
291
|
+
<a href="/frs/download.php/66879/ruby-1.8.6-p383-doc-chm-rc1.7z">ruby-1.8.6-p383-doc-chm-rc1.7z</a></td><td align="right" >3.44 MB</td><td align="right" >7</td><td >Universal</td><td >Other</td></tr>
|
292
|
+
<!-- end multiTableRow -->
|
293
|
+
|
294
|
+
<!-- multiTableRow -->
|
295
|
+
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
296
|
+
<a href="/frs/download.php/66873/ruby-1.8.6-p383-i386-mingw32-rc1.7z">ruby-1.8.6-p383-i386-mingw32-rc1.7z</a></td><td align="right" >3.43 MB</td><td align="right" >7</td><td >i386</td><td >Other</td></tr>
|
297
|
+
<!-- end multiTableRow -->
|
298
|
+
|
299
|
+
<!-- multiTableRow -->
|
300
|
+
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
301
|
+
<a href="/frs/download.php/66880/ruby-1.9.1-p243-doc-chm-rc1.7z">ruby-1.9.1-p243-doc-chm-rc1.7z</a></td><td align="right" >3.32 MB</td><td align="right" >10</td><td >Universal</td><td >Other</td></tr>
|
302
|
+
<!-- end multiTableRow -->
|
303
|
+
|
304
|
+
<!-- multiTableRow -->
|
305
|
+
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
306
|
+
<a href="/frs/download.php/66874/ruby-1.9.1-p243-i386-mingw32-rc1.7z">ruby-1.9.1-p243-i386-mingw32-rc1.7z</a></td><td align="right" >4.72 MB</td><td align="right" >8</td><td >i386</td><td >Other</td></tr>
|
307
|
+
<!-- end multiTableRow -->
|
308
|
+
|
309
|
+
<!-- multiTableRow -->
|
310
|
+
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
311
|
+
<a href="/frs/download.php/66871/rubyinstaller-1.8.6-p383-rc1.exe">rubyinstaller-1.8.6-p383-rc1.exe</a></td><td align="right" >9.7 MB</td><td align="right" >28</td><td >i386</td><td >.exe (Windows executable)</td></tr>
|
312
|
+
<!-- end multiTableRow -->
|
313
|
+
|
314
|
+
<!-- multiTableRow -->
|
315
|
+
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
316
|
+
<a href="/frs/download.php/66872/rubyinstaller-1.9.1-p243-rc1.exe">rubyinstaller-1.9.1-p243-rc1.exe</a></td><td align="right" >10.66 MB</td><td align="right" >74</td><td >i386</td><td >.exe (Windows executable)</td></tr>
|
317
|
+
<!-- end multiTableRow -->
|
318
|
+
|
273
319
|
<!-- multiTableRow -->
|
274
320
|
<tr bgcolor="#B6B6B6"><td colspan="3" > <strong>
|
275
321
|
<a href="shownotes.php?release_id=38052">Technology Preview2</a></strong></td><td colspan="4" align="middle" > <strong>
|
@@ -278,22 +324,22 @@ class="tabs"><li><a href='/projects/rubyinstaller/'>Summary</a></li><li><a href=
|
|
278
324
|
|
279
325
|
<!-- multiTableRow -->
|
280
326
|
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
281
|
-
<a href="/frs/download.php/62267/ruby-1.8.6-p383-i386-mingw32.7z">ruby-1.8.6-p383-i386-mingw32.7z</a></td><td align="right" >10.42 MB</td><td align="right" >1,
|
327
|
+
<a href="/frs/download.php/62267/ruby-1.8.6-p383-i386-mingw32.7z">ruby-1.8.6-p383-i386-mingw32.7z</a></td><td align="right" >10.42 MB</td><td align="right" >1,309</td><td >i386</td><td >Other</td></tr>
|
282
328
|
<!-- end multiTableRow -->
|
283
329
|
|
284
330
|
<!-- multiTableRow -->
|
285
331
|
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
286
|
-
<a href="/frs/download.php/62269/ruby-1.9.1-p243-i386-mingw32.7z">ruby-1.9.1-p243-i386-mingw32.7z</a></td><td align="right" >11.03 MB</td><td align="right" >1,
|
332
|
+
<a href="/frs/download.php/62269/ruby-1.9.1-p243-i386-mingw32.7z">ruby-1.9.1-p243-i386-mingw32.7z</a></td><td align="right" >11.03 MB</td><td align="right" >1,736</td><td >i386</td><td >Other</td></tr>
|
287
333
|
<!-- end multiTableRow -->
|
288
334
|
|
289
335
|
<!-- multiTableRow -->
|
290
336
|
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
291
|
-
<a href="/frs/download.php/62212/rubyinstaller-1.8.6-p383-preview2.exe">rubyinstaller-1.8.6-p383-preview2.exe</a></td><td align="right" >10.11 MB</td><td align="right" >
|
337
|
+
<a href="/frs/download.php/62212/rubyinstaller-1.8.6-p383-preview2.exe">rubyinstaller-1.8.6-p383-preview2.exe</a></td><td align="right" >10.11 MB</td><td align="right" >3,125</td><td >i386</td><td >.exe (Windows executable)</td></tr>
|
292
338
|
<!-- end multiTableRow -->
|
293
339
|
|
294
340
|
<!-- multiTableRow -->
|
295
341
|
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
296
|
-
<a href="/frs/download.php/62213/rubyinstaller-1.9.1-p243-preview2.exe">rubyinstaller-1.9.1-p243-preview2.exe</a></td><td align="right" >10.55 MB</td><td align="right" >
|
342
|
+
<a href="/frs/download.php/62213/rubyinstaller-1.9.1-p243-preview2.exe">rubyinstaller-1.9.1-p243-preview2.exe</a></td><td align="right" >10.55 MB</td><td align="right" >8,057</td><td >i386</td><td >.exe (Windows executable)</td></tr>
|
297
343
|
<!-- end multiTableRow -->
|
298
344
|
|
299
345
|
<!-- multiTableRow -->
|
@@ -304,12 +350,12 @@ class="tabs"><li><a href='/projects/rubyinstaller/'>Summary</a></li><li><a href=
|
|
304
350
|
|
305
351
|
<!-- multiTableRow -->
|
306
352
|
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
307
|
-
<a href="/frs/download.php/62347/rubyinstaller-1.8.6-p368-preview1.exe">rubyinstaller-1.8.6-p368-preview1.exe</a></td><td align="right" >3.44 MB</td><td align="right" >
|
353
|
+
<a href="/frs/download.php/62347/rubyinstaller-1.8.6-p368-preview1.exe">rubyinstaller-1.8.6-p368-preview1.exe</a></td><td align="right" >3.44 MB</td><td align="right" >538</td><td >i386</td><td >.exe (Windows executable)</td></tr>
|
308
354
|
<!-- end multiTableRow -->
|
309
355
|
|
310
356
|
<!-- multiTableRow -->
|
311
357
|
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
312
|
-
<a href="/frs/download.php/62348/rubyinstaller-1.9.1-p129-preview1.exe">rubyinstaller-1.9.1-p129-preview1.exe</a></td><td align="right" >4.54 MB</td><td align="right" >
|
358
|
+
<a href="/frs/download.php/62348/rubyinstaller-1.9.1-p129-preview1.exe">rubyinstaller-1.9.1-p129-preview1.exe</a></td><td align="right" >4.54 MB</td><td align="right" >930</td><td >i386</td><td >.exe (Windows executable)</td></tr>
|
313
359
|
<!-- end multiTableRow -->
|
314
360
|
|
315
361
|
<!-- multiTableRow -->
|
@@ -320,10 +366,10 @@ class="tabs"><li><a href='/projects/rubyinstaller/'>Summary</a></li><li><a href=
|
|
320
366
|
|
321
367
|
<!-- multiTableRow -->
|
322
368
|
<tr bgcolor="#B6B6B6"><td colspan=3 ><dd>
|
323
|
-
<a href="/frs/download.php/62353/devkit-3.4.5r3-20090411.7z">devkit-3.4.5r3-20090411.7z</a></td><td align="right" >12.92 MB</td><td align="right" >
|
369
|
+
<a href="/frs/download.php/62353/devkit-3.4.5r3-20090411.7z">devkit-3.4.5r3-20090411.7z</a></td><td align="right" >12.92 MB</td><td align="right" >2,384</td><td >i386</td><td >Other</td></tr>
|
324
370
|
<!-- end multiTableRow -->
|
325
371
|
<tr><td colspan="8"> </tr>
|
326
|
-
<tr><td><strong>Project totals</strong></td><td align="right"><strong><em>
|
372
|
+
<tr><td><strong>Project totals</strong></td><td align="right"><strong><em>7</em></strong></td><td align="right"><strong><em>18</em></strong></td><td align="right"><strong><em>159.11 MB</em></strong></td><td align="right"><strong><em>1441430</em></strong></td><td colspan="3"> </td></tr>
|
327
373
|
</table>
|
328
374
|
|
329
375
|
<hr/><a name='gem_namespace_ownership'></a><h3>Gem namespace ownership</h3>
|
@@ -76,14 +76,14 @@ describe Pik::Implementations::Ruby do
|
|
76
76
|
describe 'find' do
|
77
77
|
|
78
78
|
it 'should find the most recent version if no argument is given' do
|
79
|
-
v = '1.9.1-p243'
|
80
|
-
u = "http://rubyforge.org/frs/download.php/
|
79
|
+
v = '1.9.1-p243-rc1'
|
80
|
+
u = "http://rubyforge.org/frs/download.php/66874/ruby-1.9.1-p243-i386-mingw32-rc1.7z"
|
81
81
|
@ruby.find.should eql( [v, u] )
|
82
82
|
end
|
83
83
|
|
84
84
|
it 'should find a specific version if arguments are given' do
|
85
|
-
v = '1.8.6-p383'
|
86
|
-
u = "http://rubyforge.org/frs/download.php/
|
85
|
+
v = '1.8.6-p383-rc1'
|
86
|
+
u = "http://rubyforge.org/frs/download.php/66873/ruby-1.8.6-p383-i386-mingw32-rc1.7z"
|
87
87
|
@ruby.find('1.8').should eql( [v, u] )
|
88
88
|
end
|
89
89
|
|
data/spec/pathname_spec.rb
CHANGED
@@ -2,16 +2,24 @@
|
|
2
2
|
describe Pathname do
|
3
3
|
|
4
4
|
describe '==' do
|
5
|
-
it 'should test for equality' do
|
6
|
-
path1 = Pathname('
|
5
|
+
it 'should test for equality and ignore case and file sepearators' do
|
6
|
+
path1 = Pathname('z:/This/is/to/test/EQUALITY')
|
7
7
|
path2 = Pathname('Z:\\this\\is\\to\\test\\equality')
|
8
8
|
path1.should == path2
|
9
|
+
|
10
|
+
describe 'to_ruby' do
|
11
|
+
it 'should change the file separator' do
|
12
|
+
path = Pathname("this\\is\\to\\test\\separators")
|
13
|
+
result = 'this/is/to/test/separators'
|
14
|
+
path.to_ruby.should eql(result)
|
15
|
+
end
|
16
|
+
end
|
9
17
|
end
|
10
18
|
end
|
11
19
|
|
12
20
|
describe 'to_windows' do
|
13
21
|
it 'should change the file separator' do
|
14
|
-
path = Pathname('
|
22
|
+
path = Pathname('z:/This/is/to/test/separators')
|
15
23
|
result = "Z:\\This\\is\\to\\test\\separators"
|
16
24
|
path.to_windows.should eql(result)
|
17
25
|
p = "C:\\Doc\\gthiesfeld/.pik/dl/ir.zip"
|
@@ -21,7 +29,7 @@ describe Pathname do
|
|
21
29
|
|
22
30
|
describe 'to_ruby' do
|
23
31
|
it 'should change the file separator' do
|
24
|
-
path = Pathname("
|
32
|
+
path = Pathname("z:\\This\\is\\to\\test\\separators")
|
25
33
|
result = 'Z:/This/is/to/test/separators'
|
26
34
|
path.to_ruby.should eql(result)
|
27
35
|
end
|
data/spec/version_parser_spec.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
describe Pik::VersionParser do
|
1
|
+
describe Pik::VersionParser do
|
3
2
|
|
4
3
|
{
|
5
4
|
"091: IronRuby 0.9.1.0 on .NET 2.0.0.0" => OpenStruct.new(
|
@@ -81,6 +80,14 @@ describe Pik::VersionParser do
|
|
81
80
|
:platform => "i386-mingw32",
|
82
81
|
:patchlevel => "243",
|
83
82
|
:full_version => "ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-mingw32]"
|
83
|
+
),
|
84
|
+
"191-rc1: ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-mingw32]" => OpenStruct.new(
|
85
|
+
:interpreter => "ruby",
|
86
|
+
:version => "1.9.1",
|
87
|
+
:date => "2009-07-16",
|
88
|
+
:platform => "i386-mingw32",
|
89
|
+
:patchlevel => "243",
|
90
|
+
:full_version => "ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-mingw32]"
|
84
91
|
)
|
85
92
|
}.each do |string, data|
|
86
93
|
|
data/tools/pik.bat
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
@ECHO OFF
|
2
|
-
"%~dpn0\%~n0_runner.exe" "%~
|
2
|
+
"%~dpn0\%~n0_runner.exe" "%~f0" %*
|
data/tools/pik/pik_runner
CHANGED
data/tools/pik/pik_runner.exe
CHANGED
Binary file
|
data/tools/pik/pik_runner.exy
CHANGED
@@ -1,108 +1,85 @@
|
|
1
1
|
---
|
2
2
|
file:
|
3
3
|
./../../lib/pik.rb:
|
4
|
+
file: ./../../lib/pik.rb
|
5
|
+
C:/Ruby/ruby-187-p249/lib/ruby/gems/1.8/gems/gemcutter-0.5.0/lib/gemcutter.rb:
|
6
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/gems/1.8/gems/gemcutter-0.5.0/lib/gemcutter.rb
|
4
7
|
English.rb:
|
5
|
-
file:
|
8
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/English.rb
|
6
9
|
Win32API.so:
|
7
|
-
file:
|
10
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/Win32API.so
|
8
11
|
type: extension-library
|
9
12
|
abbrev.rb:
|
10
|
-
file:
|
11
|
-
bundler/commands/bundle_command.rb:
|
12
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/bundler-0.7.0/lib/bundler/commands/bundle_command.rb
|
13
|
-
bundler/commands/exec_command.rb:
|
14
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/bundler-0.7.0/lib/bundler/commands/exec_command.rb
|
13
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/abbrev.rb
|
15
14
|
cgi.rb:
|
16
|
-
file:
|
15
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/cgi.rb
|
17
16
|
date.rb:
|
18
|
-
file:
|
17
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/date.rb
|
19
18
|
date/format.rb:
|
20
|
-
file:
|
19
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/date/format.rb
|
21
20
|
delegate.rb:
|
22
|
-
file:
|
21
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/delegate.rb
|
23
22
|
erb.rb:
|
24
|
-
file:
|
23
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/erb.rb
|
25
24
|
etc.so:
|
26
|
-
file:
|
25
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/etc.so
|
27
26
|
type: extension-library
|
28
27
|
fast_xs.so:
|
29
|
-
file:
|
30
|
-
type: extension-library
|
31
|
-
fcntl.so:
|
32
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/fcntl.so
|
28
|
+
file: ./../../lib/vendor/lib/fast_xs.so
|
33
29
|
type: extension-library
|
34
30
|
fileutils.rb:
|
35
|
-
file:
|
31
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/fileutils.rb
|
36
32
|
find.rb:
|
37
|
-
file:
|
33
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/find.rb
|
38
34
|
highline.rb:
|
39
|
-
file:
|
35
|
+
file: ./../../lib/vendor/lib/highline.rb
|
40
36
|
highline/color_scheme.rb:
|
41
|
-
file:
|
37
|
+
file: ./../../lib/vendor/lib/highline/color_scheme.rb
|
42
38
|
highline/compatibility.rb:
|
43
|
-
file:
|
39
|
+
file: ./../../lib/vendor/lib/highline/compatibility.rb
|
44
40
|
highline/menu.rb:
|
45
|
-
file:
|
41
|
+
file: ./../../lib/vendor/lib/highline/menu.rb
|
46
42
|
highline/question.rb:
|
47
|
-
file:
|
43
|
+
file: ./../../lib/vendor/lib/highline/question.rb
|
48
44
|
highline/system_extensions.rb:
|
49
|
-
file:
|
45
|
+
file: ./../../lib/vendor/lib/highline/system_extensions.rb
|
50
46
|
hpricot.rb:
|
51
|
-
file:
|
47
|
+
file: ./../../lib/vendor/lib/hpricot.rb
|
52
48
|
hpricot/blankslate.rb:
|
53
|
-
file:
|
49
|
+
file: ./../../lib/vendor/lib/hpricot/blankslate.rb
|
54
50
|
hpricot/builder.rb:
|
55
|
-
file:
|
51
|
+
file: ./../../lib/vendor/lib/hpricot/builder.rb
|
56
52
|
hpricot/elements.rb:
|
57
|
-
file:
|
53
|
+
file: ./../../lib/vendor/lib/hpricot/elements.rb
|
58
54
|
hpricot/htmlinfo.rb:
|
59
|
-
file:
|
55
|
+
file: ./../../lib/vendor/lib/hpricot/htmlinfo.rb
|
60
56
|
hpricot/inspect.rb:
|
61
|
-
file:
|
57
|
+
file: ./../../lib/vendor/lib/hpricot/inspect.rb
|
62
58
|
hpricot/modules.rb:
|
63
|
-
file:
|
59
|
+
file: ./../../lib/vendor/lib/hpricot/modules.rb
|
64
60
|
hpricot/parse.rb:
|
65
|
-
file:
|
61
|
+
file: ./../../lib/vendor/lib/hpricot/parse.rb
|
66
62
|
hpricot/tag.rb:
|
67
|
-
file:
|
63
|
+
file: ./../../lib/vendor/lib/hpricot/tag.rb
|
68
64
|
hpricot/tags.rb:
|
69
|
-
file:
|
65
|
+
file: ./../../lib/vendor/lib/hpricot/tags.rb
|
70
66
|
hpricot/traverse.rb:
|
71
|
-
file:
|
67
|
+
file: ./../../lib/vendor/lib/hpricot/traverse.rb
|
72
68
|
hpricot_scan.so:
|
73
|
-
file:
|
69
|
+
file: ./../../lib/vendor/lib/hpricot_scan.so
|
74
70
|
type: extension-library
|
75
71
|
net/http.rb:
|
76
|
-
file:
|
77
|
-
net/https.rb:
|
78
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/net/https.rb
|
72
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/net/http.rb
|
79
73
|
net/protocol.rb:
|
80
|
-
file:
|
74
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/net/protocol.rb
|
81
75
|
open-uri.rb:
|
82
|
-
file:
|
83
|
-
openssl.rb:
|
84
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/openssl.rb
|
85
|
-
openssl.so:
|
86
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/openssl.so
|
87
|
-
type: extension-library
|
88
|
-
openssl/bn.rb:
|
89
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/openssl/bn.rb
|
90
|
-
openssl/buffering.rb:
|
91
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/openssl/buffering.rb
|
92
|
-
openssl/cipher.rb:
|
93
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/openssl/cipher.rb
|
94
|
-
openssl/digest.rb:
|
95
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/openssl/digest.rb
|
96
|
-
openssl/ssl.rb:
|
97
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/openssl/ssl.rb
|
98
|
-
openssl/x509.rb:
|
99
|
-
file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/openssl/x509.rb
|
76
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/open-uri.rb
|
100
77
|
optparse.rb:
|
101
|
-
file:
|
78
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/optparse.rb
|
102
79
|
parsedate.rb:
|
103
|
-
file:
|
80
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/parsedate.rb
|
104
81
|
pathname.rb:
|
105
|
-
file:
|
82
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/pathname.rb
|
106
83
|
pik/batch_file.rb:
|
107
84
|
file: ./../../lib/pik/batch_file.rb
|
108
85
|
pik/commands.rb:
|
@@ -119,6 +96,8 @@ file:
|
|
119
96
|
file: ./../../lib/pik/commands/config_file_editor.rb
|
120
97
|
pik/commands/default_command.rb:
|
121
98
|
file: ./../../lib/pik/commands/default_command.rb
|
99
|
+
pik/commands/devkit_command.rb:
|
100
|
+
file: ./../../lib/pik/commands/devkit_command.rb
|
122
101
|
pik/commands/gemsync_command.rb:
|
123
102
|
file: ./../../lib/pik/commands/gemsync_command.rb
|
124
103
|
pik/commands/help_command.rb:
|
@@ -166,111 +145,132 @@ file:
|
|
166
145
|
pik/windows_env.rb:
|
167
146
|
file: ./../../lib/pik/windows_env.rb
|
168
147
|
pik_runner:
|
148
|
+
file: pik_runner
|
169
149
|
pp.rb:
|
170
|
-
file:
|
150
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/pp.rb
|
171
151
|
prettyprint.rb:
|
172
|
-
file:
|
152
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/prettyprint.rb
|
173
153
|
rational.rb:
|
174
|
-
file:
|
154
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/rational.rb
|
175
155
|
rbconfig.rb:
|
176
|
-
file:
|
156
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/rbconfig.rb
|
177
157
|
rubygems.rb:
|
178
|
-
file:
|
158
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems.rb
|
179
159
|
rubygems/builder.rb:
|
180
|
-
file:
|
160
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/builder.rb
|
181
161
|
rubygems/command.rb:
|
182
|
-
file:
|
162
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/command.rb
|
183
163
|
rubygems/command_manager.rb:
|
184
|
-
file:
|
164
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/command_manager.rb
|
165
|
+
rubygems/commands/migrate.rb:
|
166
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/gems/1.8/gems/gemcutter-0.5.0/lib/rubygems/commands/migrate.rb
|
167
|
+
rubygems/commands/tumble.rb:
|
168
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/gems/1.8/gems/gemcutter-0.5.0/lib/rubygems/commands/tumble.rb
|
169
|
+
rubygems/commands/webhook.rb:
|
170
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/gems/1.8/gems/gemcutter-0.5.0/lib/rubygems/commands/webhook.rb
|
171
|
+
rubygems/commands/yank.rb:
|
172
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/gems/1.8/gems/gemcutter-0.5.0/lib/rubygems/commands/yank.rb
|
185
173
|
rubygems/config_file.rb:
|
186
|
-
file:
|
174
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/config_file.rb
|
187
175
|
rubygems/custom_require.rb:
|
188
|
-
file:
|
176
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb
|
189
177
|
rubygems/defaults.rb:
|
190
|
-
file:
|
178
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/defaults.rb
|
191
179
|
rubygems/dependency.rb:
|
192
|
-
file:
|
180
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/dependency.rb
|
193
181
|
rubygems/exceptions.rb:
|
194
|
-
file:
|
182
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/exceptions.rb
|
195
183
|
rubygems/gem_path_searcher.rb:
|
196
|
-
file:
|
184
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/gem_path_searcher.rb
|
185
|
+
rubygems/gemcutter_utilities.rb:
|
186
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/gemcutter_utilities.rb
|
187
|
+
rubygems/local_remote_options.rb:
|
188
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/local_remote_options.rb
|
197
189
|
rubygems/platform.rb:
|
198
|
-
file:
|
190
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/platform.rb
|
191
|
+
rubygems/remote_fetcher.rb:
|
192
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/remote_fetcher.rb
|
199
193
|
rubygems/requirement.rb:
|
200
|
-
file:
|
194
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/requirement.rb
|
201
195
|
rubygems/source_index.rb:
|
202
|
-
file:
|
196
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/source_index.rb
|
203
197
|
rubygems/specification.rb:
|
204
|
-
file:
|
198
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/specification.rb
|
205
199
|
rubygems/user_interaction.rb:
|
206
|
-
file:
|
200
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/user_interaction.rb
|
207
201
|
rubygems/version.rb:
|
208
|
-
file:
|
202
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/version.rb
|
203
|
+
rubygems/version_option.rb:
|
204
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/version_option.rb
|
209
205
|
singleton.rb:
|
210
|
-
file:
|
206
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/singleton.rb
|
211
207
|
socket.so:
|
212
|
-
file:
|
208
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/socket.so
|
213
209
|
type: extension-library
|
214
210
|
stringio.so:
|
215
|
-
file:
|
211
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/stringio.so
|
216
212
|
type: extension-library
|
217
213
|
strscan.so:
|
218
|
-
file:
|
214
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/strscan.so
|
219
215
|
type: extension-library
|
220
216
|
syck.so:
|
221
|
-
file:
|
217
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/syck.so
|
222
218
|
type: extension-library
|
223
219
|
tempfile.rb:
|
224
|
-
file:
|
220
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/tempfile.rb
|
225
221
|
thread.rb:
|
226
|
-
file:
|
222
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/thread.rb
|
227
223
|
thread.so:
|
228
|
-
file:
|
224
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/thread.so
|
229
225
|
type: extension-library
|
230
226
|
time.rb:
|
231
|
-
file:
|
227
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/time.rb
|
232
228
|
timeout.rb:
|
233
|
-
file:
|
229
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/timeout.rb
|
234
230
|
tmpdir.rb:
|
235
|
-
file:
|
231
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/tmpdir.rb
|
232
|
+
ubygems.rb:
|
233
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/ubygems.rb
|
236
234
|
uri.rb:
|
237
|
-
file:
|
235
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri.rb
|
238
236
|
uri/common.rb:
|
239
|
-
file:
|
237
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/common.rb
|
240
238
|
uri/ftp.rb:
|
241
|
-
file:
|
239
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/ftp.rb
|
242
240
|
uri/generic.rb:
|
243
|
-
file:
|
241
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/generic.rb
|
244
242
|
uri/http.rb:
|
245
|
-
file:
|
243
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/http.rb
|
246
244
|
uri/https.rb:
|
247
|
-
file:
|
245
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/https.rb
|
248
246
|
uri/ldap.rb:
|
249
|
-
file:
|
247
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/ldap.rb
|
248
|
+
uri/ldaps.rb:
|
249
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/ldaps.rb
|
250
250
|
uri/mailto.rb:
|
251
|
-
file:
|
251
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/mailto.rb
|
252
252
|
win32/registry.rb:
|
253
|
-
file:
|
253
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/win32/registry.rb
|
254
254
|
yaml.rb:
|
255
|
-
file:
|
255
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml.rb
|
256
256
|
yaml/basenode.rb:
|
257
|
-
file:
|
257
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/basenode.rb
|
258
258
|
yaml/constants.rb:
|
259
|
-
file:
|
259
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/constants.rb
|
260
260
|
yaml/error.rb:
|
261
|
-
file:
|
261
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/error.rb
|
262
262
|
yaml/rubytypes.rb:
|
263
|
-
file:
|
263
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/rubytypes.rb
|
264
264
|
yaml/stream.rb:
|
265
|
-
file:
|
265
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/stream.rb
|
266
266
|
yaml/syck.rb:
|
267
|
-
file:
|
267
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/syck.rb
|
268
268
|
yaml/tag.rb:
|
269
|
-
file:
|
269
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/tag.rb
|
270
270
|
yaml/types.rb:
|
271
|
-
file:
|
271
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/types.rb
|
272
272
|
yaml/ypath.rb:
|
273
|
-
file:
|
273
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/ypath.rb
|
274
274
|
zip/ioextras.rb:
|
275
275
|
file: ./../../lib/pik/contrib/zip/ioextras.rb
|
276
276
|
zip/stdrubyext.rb:
|
@@ -278,12 +278,19 @@ file:
|
|
278
278
|
zip/zip.rb:
|
279
279
|
file: ./../../lib/pik/contrib/zip/zip.rb
|
280
280
|
zlib.so:
|
281
|
-
file:
|
281
|
+
file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/zlib.so
|
282
282
|
type: extension-library
|
283
283
|
zlib1.dll:
|
284
|
-
file:
|
284
|
+
file: C:/Ruby/ruby-187-p249/bin/zlib1.dll
|
285
285
|
type: extension-library
|
286
286
|
general:
|
287
287
|
core: cui
|
288
288
|
kcode: none
|
289
289
|
startup: pik_runner
|
290
|
+
resource:
|
291
|
+
version:
|
292
|
+
comments: The Ruby version manager for Windows
|
293
|
+
file_description: Pik Runner
|
294
|
+
file_version_number: 0.2.7.0
|
295
|
+
original_filename: pik_runner.exe
|
296
|
+
product_name: Pik
|