pik 0.2.6 → 0.2.7

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.
Files changed (47) hide show
  1. data/History.txt +20 -0
  2. data/Manifest.txt +4 -1
  3. data/README.rdoc +40 -17
  4. data/Rakefile +68 -59
  5. data/bin/pik_install +42 -14
  6. data/features/add_command.feature +8 -8
  7. data/features/config_command.feature +1 -2
  8. data/features/default_command.feature +3 -3
  9. data/features/gemsync_command.feature +1 -1
  10. data/features/info_command.feature +62 -0
  11. data/features/install_command.feature +22 -17
  12. data/features/list_command.feature +5 -5
  13. data/features/pik_install.feature +34 -2
  14. data/features/remove_command.feature +2 -2
  15. data/features/run_command.feature +6 -5
  16. data/features/step_definitions/pik_commands.rb +21 -7
  17. data/features/support/env.rb +75 -0
  18. data/features/support/proxy.ru +81 -0
  19. data/features/switch_command.feature +14 -13
  20. data/features/tag_command.feature +5 -5
  21. data/features/uninstall_command.feature +5 -6
  22. data/features/version.feature +2 -1
  23. data/lib/pik.rb +13 -6
  24. data/lib/pik/commands/add_command.rb +13 -1
  25. data/lib/pik/commands/command.rb +6 -6
  26. data/lib/pik/commands/config_command.rb +4 -2
  27. data/lib/pik/commands/devkit_command.rb +69 -0
  28. data/lib/pik/commands/gemsync_command.rb +4 -2
  29. data/lib/pik/commands/help_command.rb +1 -1
  30. data/lib/pik/commands/info_command.rb +35 -14
  31. data/lib/pik/commands/install_command.rb +6 -11
  32. data/lib/pik/commands/list_command.rb +26 -7
  33. data/lib/pik/commands/uninstall_command.rb +4 -4
  34. data/lib/pik/contrib/uri_ext.rb +1 -1
  35. data/lib/pik/core_ext/pathname.rb +2 -2
  36. data/lib/pik/implementations.rb +51 -7
  37. data/lib/pik/version_parser.rb +8 -5
  38. data/spec/html/ruby.htm +61 -15
  39. data/spec/implementations_spec.rb +4 -4
  40. data/spec/pathname_spec.rb +12 -4
  41. data/spec/version_parser_spec.rb +9 -2
  42. data/tools/pik.bat +1 -1
  43. data/tools/pik/pik_runner +1 -1
  44. data/tools/pik/pik_runner.exe +0 -0
  45. data/tools/pik/pik_runner.exy +121 -114
  46. metadata +58 -15
  47. data/features/env.rb +0 -45
@@ -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
- [ruby, jruby, ironruby].each{|i| h[i.subclass] = i.versions }
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 = /(.+ruby\-(.+)\-i386\-mingw32\.7z)/
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 = /(.+ironruby\-(\d\.\d\.\d)\.zip)/
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
@@ -31,17 +31,20 @@ module Pik
31
31
  end
32
32
 
33
33
  def platform
34
- md = @version.match(/\[(.+)\]|(\.NET.+)/)
35
- md.to_a.compact.last if md
34
+ match(/\[(.+)\]|(\.NET.+)/)
36
35
  end
37
36
 
38
37
  def patchlevel
39
- md = @version.match(/patchlevel (\d+)|\dp(\d+)/)
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
- @version[5..-1]
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
@@ -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">&nbsp;</td></tr><tr bgcolor="#FFFFFF"><td colspan="3">&nbsp;&nbsp;<em>No releases</em></td><td colspan="4">&nbsp;</td></tr>
238
- <tr bgcolor="#DDDDDD"><td colspan="3"><h3>One-Click Installer - Windows
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">&nbsp;</td></tr>
238
+ <!-- multiTableRow -->
239
+ <tr bgcolor="#FFFFFF"><td colspan="3" >&nbsp;<strong>
240
+ <a href="shownotes.php?release_id=41273">3.4.5r3 (20091110)</a></strong></td><td colspan="4" align="middle" >&nbsp;<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">&nbsp;</td></tr>
240
250
  <!-- multiTableRow -->
241
251
  <tr bgcolor="#DDDDDD"><td colspan="3" >&nbsp;<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" >383,320</td><td >i386</td><td >.exe (Windows executable)</td></tr>
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" >16,630</td><td >Universal</td><td >Other</td></tr>
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" >953,986</td><td >i386</td><td >.exe (Windows executable)</td></tr>
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" >27,952</td><td >Other</td><td >Other Source File</td></tr>
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 - Previews
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">&nbsp;</td></tr>
283
+ <!-- multiTableRow -->
284
+ <tr bgcolor="#B6B6B6"><td colspan="3" >&nbsp;<strong>
285
+ <a href="shownotes.php?release_id=41267">Release Candidate 1</a></strong></td><td colspan="4" align="middle" >&nbsp;<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" >&nbsp;<strong>
275
321
  <a href="shownotes.php?release_id=38052">Technology Preview2</a></strong></td><td colspan="4" align="middle" >&nbsp;<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,081</td><td >i386</td><td >Other</td></tr>
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,435</td><td >i386</td><td >Other</td></tr>
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" >2,601</td><td >i386</td><td >.exe (Windows executable)</td></tr>
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" >6,526</td><td >i386</td><td >.exe (Windows executable)</td></tr>
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" >449</td><td >i386</td><td >.exe (Windows executable)</td></tr>
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" >761</td><td >i386</td><td >.exe (Windows executable)</td></tr>
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" >1,887</td><td >i386</td><td >Other</td></tr>
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">&nbsp;</tr>
326
- <tr><td><strong>Project totals</strong></td><td align="right"><strong><em>5</em></strong></td><td align="right"><strong><em>11</em></strong></td><td align="right"><strong><em>111.16 MB</em></strong></td><td align="right"><strong><em>1396628</em></strong></td><td colspan="3">&nbsp;</td></tr>
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">&nbsp;</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/62269/ruby-1.9.1-p243-i386-mingw32.7z"
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/62267/ruby-1.8.6-p383-i386-mingw32.7z"
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
 
@@ -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('Z:/This/is/to/test/EQUALITY')
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('Z:/This/is/to/test/separators')
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("Z:\\This\\is\\to\\test\\separators")
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
@@ -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
 
@@ -1,2 +1,2 @@
1
1
  @ECHO OFF
2
- "%~dpn0\%~n0_runner.exe" "%~dpf0" %*
2
+ "%~dpn0\%~n0_runner.exe" "%~f0" %*
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- lib = File.join(File.dirname(__FILE__), '..','..', 'lib')
3
+ lib = File.join(File.dirname(__FILE__), '..', '..', 'lib')
4
4
  require File.join(lib, 'pik')
5
5
 
6
6
  include Pik
Binary file
@@ -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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/English.rb
8
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/English.rb
6
9
  Win32API.so:
7
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/Win32API.so
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/abbrev.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/cgi.rb
15
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/cgi.rb
17
16
  date.rb:
18
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/date.rb
17
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/date.rb
19
18
  date/format.rb:
20
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/date/format.rb
19
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/date/format.rb
21
20
  delegate.rb:
22
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/delegate.rb
21
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/delegate.rb
23
22
  erb.rb:
24
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/erb.rb
23
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/erb.rb
25
24
  etc.so:
26
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/etc.so
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: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/fast_xs.so
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/fileutils.rb
31
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/fileutils.rb
36
32
  find.rb:
37
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/find.rb
33
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/find.rb
38
34
  highline.rb:
39
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/highline-1.5.1/lib/highline.rb
35
+ file: ./../../lib/vendor/lib/highline.rb
40
36
  highline/color_scheme.rb:
41
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/highline-1.5.1/lib/highline/color_scheme.rb
37
+ file: ./../../lib/vendor/lib/highline/color_scheme.rb
42
38
  highline/compatibility.rb:
43
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/highline-1.5.1/lib/highline/compatibility.rb
39
+ file: ./../../lib/vendor/lib/highline/compatibility.rb
44
40
  highline/menu.rb:
45
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/highline-1.5.1/lib/highline/menu.rb
41
+ file: ./../../lib/vendor/lib/highline/menu.rb
46
42
  highline/question.rb:
47
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/highline-1.5.1/lib/highline/question.rb
43
+ file: ./../../lib/vendor/lib/highline/question.rb
48
44
  highline/system_extensions.rb:
49
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/highline-1.5.1/lib/highline/system_extensions.rb
45
+ file: ./../../lib/vendor/lib/highline/system_extensions.rb
50
46
  hpricot.rb:
51
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot.rb
47
+ file: ./../../lib/vendor/lib/hpricot.rb
52
48
  hpricot/blankslate.rb:
53
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/blankslate.rb
49
+ file: ./../../lib/vendor/lib/hpricot/blankslate.rb
54
50
  hpricot/builder.rb:
55
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/builder.rb
51
+ file: ./../../lib/vendor/lib/hpricot/builder.rb
56
52
  hpricot/elements.rb:
57
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/elements.rb
53
+ file: ./../../lib/vendor/lib/hpricot/elements.rb
58
54
  hpricot/htmlinfo.rb:
59
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/htmlinfo.rb
55
+ file: ./../../lib/vendor/lib/hpricot/htmlinfo.rb
60
56
  hpricot/inspect.rb:
61
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/inspect.rb
57
+ file: ./../../lib/vendor/lib/hpricot/inspect.rb
62
58
  hpricot/modules.rb:
63
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/modules.rb
59
+ file: ./../../lib/vendor/lib/hpricot/modules.rb
64
60
  hpricot/parse.rb:
65
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/parse.rb
61
+ file: ./../../lib/vendor/lib/hpricot/parse.rb
66
62
  hpricot/tag.rb:
67
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/tag.rb
63
+ file: ./../../lib/vendor/lib/hpricot/tag.rb
68
64
  hpricot/tags.rb:
69
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/tags.rb
65
+ file: ./../../lib/vendor/lib/hpricot/tags.rb
70
66
  hpricot/traverse.rb:
71
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot/traverse.rb
67
+ file: ./../../lib/vendor/lib/hpricot/traverse.rb
72
68
  hpricot_scan.so:
73
- file: c:/ruby/Ruby-186-p383/lib/ruby/gems/1.8/gems/hpricot-0.8.1/lib/hpricot_scan.so
69
+ file: ./../../lib/vendor/lib/hpricot_scan.so
74
70
  type: extension-library
75
71
  net/http.rb:
76
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/net/http.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/net/protocol.rb
74
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/net/protocol.rb
81
75
  open-uri.rb:
82
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/open-uri.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/optparse.rb
78
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/optparse.rb
102
79
  parsedate.rb:
103
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/parsedate.rb
80
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/parsedate.rb
104
81
  pathname.rb:
105
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/pathname.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/pp.rb
150
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/pp.rb
171
151
  prettyprint.rb:
172
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/prettyprint.rb
152
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/prettyprint.rb
173
153
  rational.rb:
174
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/rational.rb
154
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/rational.rb
175
155
  rbconfig.rb:
176
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/rbconfig.rb
156
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/rbconfig.rb
177
157
  rubygems.rb:
178
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems.rb
158
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems.rb
179
159
  rubygems/builder.rb:
180
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/builder.rb
160
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/builder.rb
181
161
  rubygems/command.rb:
182
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/command.rb
162
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/command.rb
183
163
  rubygems/command_manager.rb:
184
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/command_manager.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/config_file.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb
176
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb
189
177
  rubygems/defaults.rb:
190
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/defaults.rb
178
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/defaults.rb
191
179
  rubygems/dependency.rb:
192
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/dependency.rb
180
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/dependency.rb
193
181
  rubygems/exceptions.rb:
194
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/exceptions.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/gem_path_searcher.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/platform.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/requirement.rb
194
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/requirement.rb
201
195
  rubygems/source_index.rb:
202
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/source_index.rb
196
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/source_index.rb
203
197
  rubygems/specification.rb:
204
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/specification.rb
198
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/specification.rb
205
199
  rubygems/user_interaction.rb:
206
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/user_interaction.rb
200
+ file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/user_interaction.rb
207
201
  rubygems/version.rb:
208
- file: c:/ruby/Ruby-186-p383/lib/ruby/site_ruby/1.8/rubygems/version.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/singleton.rb
206
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/singleton.rb
211
207
  socket.so:
212
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/socket.so
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/stringio.so
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/strscan.so
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/syck.so
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/tempfile.rb
220
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/tempfile.rb
225
221
  thread.rb:
226
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/thread.rb
222
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/thread.rb
227
223
  thread.so:
228
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/thread.so
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/time.rb
227
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/time.rb
232
228
  timeout.rb:
233
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/timeout.rb
229
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/timeout.rb
234
230
  tmpdir.rb:
235
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/tmpdir.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/uri.rb
235
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri.rb
238
236
  uri/common.rb:
239
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/uri/common.rb
237
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/common.rb
240
238
  uri/ftp.rb:
241
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/uri/ftp.rb
239
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/ftp.rb
242
240
  uri/generic.rb:
243
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/uri/generic.rb
241
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/generic.rb
244
242
  uri/http.rb:
245
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/uri/http.rb
243
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/http.rb
246
244
  uri/https.rb:
247
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/uri/https.rb
245
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/https.rb
248
246
  uri/ldap.rb:
249
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/uri/ldap.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/uri/mailto.rb
251
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/mailto.rb
252
252
  win32/registry.rb:
253
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/win32/registry.rb
253
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/win32/registry.rb
254
254
  yaml.rb:
255
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml.rb
255
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml.rb
256
256
  yaml/basenode.rb:
257
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml/basenode.rb
257
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/basenode.rb
258
258
  yaml/constants.rb:
259
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml/constants.rb
259
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/constants.rb
260
260
  yaml/error.rb:
261
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml/error.rb
261
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/error.rb
262
262
  yaml/rubytypes.rb:
263
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml/rubytypes.rb
263
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/rubytypes.rb
264
264
  yaml/stream.rb:
265
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml/stream.rb
265
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/stream.rb
266
266
  yaml/syck.rb:
267
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml/syck.rb
267
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/syck.rb
268
268
  yaml/tag.rb:
269
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml/tag.rb
269
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/tag.rb
270
270
  yaml/types.rb:
271
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml/types.rb
271
+ file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/types.rb
272
272
  yaml/ypath.rb:
273
- file: c:/ruby/Ruby-186-p383/lib/ruby/1.8/yaml/ypath.rb
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: c:/ruby/Ruby-186-p383/lib/ruby/1.8/i386-mingw32/zlib.so
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: c:/ruby/Ruby-186-p383/bin/zlib1.dll
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