pik 0.2.7 → 0.2.8

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.
@@ -1,2 +1,3 @@
1
1
  @ECHO OFF
2
- "%~dpn0\%~n0_runner.exe" "%~f0" %*
2
+ "%~dp0pik_runner.exe" "%~f0" %*
3
+ IF EXIST "%USERPROFILE%\.pik\pik.bat" (call "%USERPROFILE%\.pik\pik.bat")
@@ -0,0 +1,3 @@
1
+ pik_runner.exe $MyInvocation.MyCommand.Definition $args
2
+ if(test-path -path "$ENV:USERPROFILE\.pik\pik.ps1"){& $ENV:USERPROFILE\.pik\pik.ps1}
3
+
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pik
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 7
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 7
10
- version: 0.2.7
9
+ - 8
10
+ version: 0.2.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Gordon Thiesfeld
@@ -15,29 +15,13 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-06-15 00:00:00 -05:00
18
+ date: 2010-06-22 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
- - !ruby/object:Gem::Dependency
22
- name: highline
23
- prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- hash: 31
30
- segments:
31
- - 0
32
- - 0
33
- - 0
34
- version: 0.0.0
35
- type: :runtime
36
- version_requirements: *id001
37
21
  - !ruby/object:Gem::Dependency
38
22
  name: rubyforge
39
23
  prerelease: false
40
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ requirement: &id001 !ruby/object:Gem::Requirement
41
25
  none: false
42
26
  requirements:
43
27
  - - ">="
@@ -49,11 +33,11 @@ dependencies:
49
33
  - 4
50
34
  version: 2.0.4
51
35
  type: :development
52
- version_requirements: *id002
36
+ version_requirements: *id001
53
37
  - !ruby/object:Gem::Dependency
54
38
  name: hoe
55
39
  prerelease: false
56
- requirement: &id003 !ruby/object:Gem::Requirement
40
+ requirement: &id002 !ruby/object:Gem::Requirement
57
41
  none: false
58
42
  requirements:
59
43
  - - ">="
@@ -65,9 +49,9 @@ dependencies:
65
49
  - 1
66
50
  version: 2.6.1
67
51
  type: :development
68
- version_requirements: *id003
52
+ version_requirements: *id002
69
53
  description: |-
70
- Pik is a tool to manage multiple versions of ruby on Windows.
54
+ Pik is a tool to manage multiple versions of ruby on Windows. It can be used from the Windows command line (cmd.exe), Windows PowerShell, or Git Bash. I have yet to test on cygwin.
71
55
 
72
56
  >pik help commands
73
57
 
@@ -124,15 +108,13 @@ files:
124
108
  - features/step_definitions/pik_commands.rb
125
109
  - features/support/env.rb
126
110
  - features/support/proxy.ru
127
- - features/switch_command.feature
128
111
  - features/tag_command.feature
129
112
  - features/uninstall_command.feature
113
+ - features/use_command.feature
130
114
  - features/version.feature
131
115
  - lib/pik.rb
132
- - lib/pik/batch_file.rb
133
116
  - lib/pik/commands.rb
134
117
  - lib/pik/commands/add_command.rb
135
- - lib/pik/commands/batch_file_editor.rb
136
118
  - lib/pik/commands/command.rb
137
119
  - lib/pik/commands/config_command.rb
138
120
  - lib/pik/commands/config_file_editor.rb
@@ -146,10 +128,11 @@ files:
146
128
  - lib/pik/commands/list_command.rb
147
129
  - lib/pik/commands/remove_command.rb
148
130
  - lib/pik/commands/run_command.rb
149
- - lib/pik/commands/switch_command.rb
131
+ - lib/pik/commands/script_file_editor.rb
150
132
  - lib/pik/commands/tag_command.rb
151
133
  - lib/pik/commands/uninstall_command.rb
152
134
  - lib/pik/commands/update_command.rb
135
+ - lib/pik/commands/use_command.rb
153
136
  - lib/pik/config_file.rb
154
137
  - lib/pik/contrib/progressbar.rb
155
138
  - lib/pik/contrib/unzip.rb
@@ -163,7 +146,10 @@ files:
163
146
  - lib/pik/core_ext/pathname.rb
164
147
  - lib/pik/implementations.rb
165
148
  - lib/pik/options.rb
166
- - lib/pik/pik.rb
149
+ - lib/pik/scripts/bash_file.rb
150
+ - lib/pik/scripts/batch_file.rb
151
+ - lib/pik/scripts/ps_file.rb
152
+ - lib/pik/scripts/script_file.rb
167
153
  - lib/pik/search_path.rb
168
154
  - lib/pik/version_parser.rb
169
155
  - lib/pik/which.rb
@@ -189,9 +175,8 @@ files:
189
175
  - spec/version_parser_spec.rb
190
176
  - spec/which_spec.rb
191
177
  - tools/pik.bat
192
- - tools/pik/pik_runner
193
- - tools/pik/pik_runner.exe
194
- - tools/pik/pik_runner.exy
178
+ - tools/pik.ps1
179
+ - tools/pik_runner.exe
195
180
  has_rdoc: true
196
181
  homepage: http://github.com/vertiginous/pik
197
182
  licenses: []
@@ -1,70 +0,0 @@
1
-
2
- class BatchFile
3
-
4
- def self.open(file)
5
- bf = new(file, :open)
6
- yield bf if block_given?
7
- bf
8
- end
9
-
10
- attr_accessor :file_data, :file_name, :ruby_dir
11
-
12
- def initialize(file, mode=:new)
13
- @rubyw_exe = 'rubyw.exe'
14
- @ruby_exe = 'ruby.exe'
15
- @file = Pathname.new(file)
16
- case mode
17
- when :open
18
- @file_data = File.read(@file).split("\n")
19
- when :new
20
- @file_data = [header]
21
- end
22
- yield self if block_given?
23
- end
24
-
25
- def path
26
- @file
27
- end
28
-
29
- def header
30
- string = "@ECHO OFF\n\n"
31
- string << ":: This batch file generated by Pik, the\n"
32
- string << ":: Ruby Manager for Windows\n"
33
- end
34
-
35
- def ftype(files={ 'rbfile' => @ruby_exe, 'rbwfile' => @rubyw_exe })
36
- files.sort.each do |filetype, open_with|
37
- @file_data << "FTYPE #{filetype}=#{open_with} \"%1\" %*\n"
38
- end
39
- self
40
- end
41
-
42
- def call(bat)
43
- @file_data << "CALL #{bat}\n"
44
- self
45
- end
46
-
47
- def set(items)
48
- items.each{|k,v| @file_data << "SET #{k}=#{v}" }
49
- self
50
- end
51
-
52
- def echo(string='.')
53
- string = ' ' + string unless string == '.'
54
- @file_data << "ECHO#{string}"
55
- self
56
- end
57
-
58
- def remove_line(re)
59
- @file_data.reject!{ |i| i =~ re }
60
- end
61
-
62
- def to_s
63
- @file_data.join("\n")
64
- end
65
-
66
- def write
67
- File.open(@file, 'w+'){|f| f.puts self.to_s }
68
- end
69
-
70
- end
@@ -1,10 +0,0 @@
1
- module Pik
2
-
3
- def self.print_error(error)
4
- puts "\nThere was an error."
5
- puts " Error: #{error.message}\n\n"
6
- puts error.backtrace.map{|m| " in: #{m}" }
7
- puts
8
- end
9
-
10
- end
@@ -1,42 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- lib = File.join(File.dirname(__FILE__), '..', '..', 'lib')
4
- require File.join(lib, 'pik')
5
-
6
- include Pik
7
-
8
- args = ARGV
9
-
10
- Command.clean_gem_batch
11
-
12
- begin
13
- config = ConfigFile.new
14
-
15
- args_minus_opts = args.reject{|p| p =~ /^-/}
16
-
17
- command = if args_minus_opts.empty?
18
- Help
19
- elsif (c = Commands.find(args.first))
20
- args.shift
21
- c
22
- elsif (choice = Command.choose_from(args_minus_opts, config))
23
- args = [choice] + args
24
- Switch
25
- end
26
-
27
- if config.empty? && command != Pik::Add
28
- add = Pik::Add.new([], config)
29
- add.execute
30
- add.close
31
- end
32
-
33
- raise "The command '#{args.join(' ')}' is unknown." unless command
34
- cmd = command.new(args, config)
35
- cmd.execute
36
- rescue QuitError
37
- puts "\nQuitting..."
38
- rescue => e
39
- Pik.print_error(e)
40
- ensure
41
- cmd.close if cmd
42
- end
Binary file
@@ -1,296 +0,0 @@
1
- ---
2
- file:
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
7
- English.rb:
8
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/English.rb
9
- Win32API.so:
10
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/Win32API.so
11
- type: extension-library
12
- abbrev.rb:
13
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/abbrev.rb
14
- cgi.rb:
15
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/cgi.rb
16
- date.rb:
17
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/date.rb
18
- date/format.rb:
19
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/date/format.rb
20
- delegate.rb:
21
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/delegate.rb
22
- erb.rb:
23
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/erb.rb
24
- etc.so:
25
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/etc.so
26
- type: extension-library
27
- fast_xs.so:
28
- file: ./../../lib/vendor/lib/fast_xs.so
29
- type: extension-library
30
- fileutils.rb:
31
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/fileutils.rb
32
- find.rb:
33
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/find.rb
34
- highline.rb:
35
- file: ./../../lib/vendor/lib/highline.rb
36
- highline/color_scheme.rb:
37
- file: ./../../lib/vendor/lib/highline/color_scheme.rb
38
- highline/compatibility.rb:
39
- file: ./../../lib/vendor/lib/highline/compatibility.rb
40
- highline/menu.rb:
41
- file: ./../../lib/vendor/lib/highline/menu.rb
42
- highline/question.rb:
43
- file: ./../../lib/vendor/lib/highline/question.rb
44
- highline/system_extensions.rb:
45
- file: ./../../lib/vendor/lib/highline/system_extensions.rb
46
- hpricot.rb:
47
- file: ./../../lib/vendor/lib/hpricot.rb
48
- hpricot/blankslate.rb:
49
- file: ./../../lib/vendor/lib/hpricot/blankslate.rb
50
- hpricot/builder.rb:
51
- file: ./../../lib/vendor/lib/hpricot/builder.rb
52
- hpricot/elements.rb:
53
- file: ./../../lib/vendor/lib/hpricot/elements.rb
54
- hpricot/htmlinfo.rb:
55
- file: ./../../lib/vendor/lib/hpricot/htmlinfo.rb
56
- hpricot/inspect.rb:
57
- file: ./../../lib/vendor/lib/hpricot/inspect.rb
58
- hpricot/modules.rb:
59
- file: ./../../lib/vendor/lib/hpricot/modules.rb
60
- hpricot/parse.rb:
61
- file: ./../../lib/vendor/lib/hpricot/parse.rb
62
- hpricot/tag.rb:
63
- file: ./../../lib/vendor/lib/hpricot/tag.rb
64
- hpricot/tags.rb:
65
- file: ./../../lib/vendor/lib/hpricot/tags.rb
66
- hpricot/traverse.rb:
67
- file: ./../../lib/vendor/lib/hpricot/traverse.rb
68
- hpricot_scan.so:
69
- file: ./../../lib/vendor/lib/hpricot_scan.so
70
- type: extension-library
71
- net/http.rb:
72
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/net/http.rb
73
- net/protocol.rb:
74
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/net/protocol.rb
75
- open-uri.rb:
76
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/open-uri.rb
77
- optparse.rb:
78
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/optparse.rb
79
- parsedate.rb:
80
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/parsedate.rb
81
- pathname.rb:
82
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/pathname.rb
83
- pik/batch_file.rb:
84
- file: ./../../lib/pik/batch_file.rb
85
- pik/commands.rb:
86
- file: ./../../lib/pik/commands.rb
87
- pik/commands/add_command.rb:
88
- file: ./../../lib/pik/commands/add_command.rb
89
- pik/commands/batch_file_editor.rb:
90
- file: ./../../lib/pik/commands/batch_file_editor.rb
91
- pik/commands/command.rb:
92
- file: ./../../lib/pik/commands/command.rb
93
- pik/commands/config_command.rb:
94
- file: ./../../lib/pik/commands/config_command.rb
95
- pik/commands/config_file_editor.rb:
96
- file: ./../../lib/pik/commands/config_file_editor.rb
97
- pik/commands/default_command.rb:
98
- file: ./../../lib/pik/commands/default_command.rb
99
- pik/commands/devkit_command.rb:
100
- file: ./../../lib/pik/commands/devkit_command.rb
101
- pik/commands/gemsync_command.rb:
102
- file: ./../../lib/pik/commands/gemsync_command.rb
103
- pik/commands/help_command.rb:
104
- file: ./../../lib/pik/commands/help_command.rb
105
- pik/commands/implode_command.rb:
106
- file: ./../../lib/pik/commands/implode_command.rb
107
- pik/commands/info_command.rb:
108
- file: ./../../lib/pik/commands/info_command.rb
109
- pik/commands/install_command.rb:
110
- file: ./../../lib/pik/commands/install_command.rb
111
- pik/commands/list_command.rb:
112
- file: ./../../lib/pik/commands/list_command.rb
113
- pik/commands/remove_command.rb:
114
- file: ./../../lib/pik/commands/remove_command.rb
115
- pik/commands/run_command.rb:
116
- file: ./../../lib/pik/commands/run_command.rb
117
- pik/commands/switch_command.rb:
118
- file: ./../../lib/pik/commands/switch_command.rb
119
- pik/commands/tag_command.rb:
120
- file: ./../../lib/pik/commands/tag_command.rb
121
- pik/commands/uninstall_command.rb:
122
- file: ./../../lib/pik/commands/uninstall_command.rb
123
- pik/commands/update_command.rb:
124
- file: ./../../lib/pik/commands/update_command.rb
125
- pik/config_file.rb:
126
- file: ./../../lib/pik/config_file.rb
127
- pik/contrib/progressbar.rb:
128
- file: ./../../lib/pik/contrib/progressbar.rb
129
- pik/contrib/unzip.rb:
130
- file: ./../../lib/pik/contrib/unzip.rb
131
- pik/contrib/uri_ext.rb:
132
- file: ./../../lib/pik/contrib/uri_ext.rb
133
- pik/core_ext/pathname.rb:
134
- file: ./../../lib/pik/core_ext/pathname.rb
135
- pik/implementations.rb:
136
- file: ./../../lib/pik/implementations.rb
137
- pik/pik.rb:
138
- file: ./../../lib/pik/pik.rb
139
- pik/search_path.rb:
140
- file: ./../../lib/pik/search_path.rb
141
- pik/version_parser.rb:
142
- file: ./../../lib/pik/version_parser.rb
143
- pik/which.rb:
144
- file: ./../../lib/pik/which.rb
145
- pik/windows_env.rb:
146
- file: ./../../lib/pik/windows_env.rb
147
- pik_runner:
148
- file: pik_runner
149
- pp.rb:
150
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/pp.rb
151
- prettyprint.rb:
152
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/prettyprint.rb
153
- rational.rb:
154
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/rational.rb
155
- rbconfig.rb:
156
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/rbconfig.rb
157
- rubygems.rb:
158
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems.rb
159
- rubygems/builder.rb:
160
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/builder.rb
161
- rubygems/command.rb:
162
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/command.rb
163
- 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
173
- rubygems/config_file.rb:
174
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/config_file.rb
175
- rubygems/custom_require.rb:
176
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb
177
- rubygems/defaults.rb:
178
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/defaults.rb
179
- rubygems/dependency.rb:
180
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/dependency.rb
181
- rubygems/exceptions.rb:
182
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/exceptions.rb
183
- 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
189
- 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
193
- rubygems/requirement.rb:
194
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/requirement.rb
195
- rubygems/source_index.rb:
196
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/source_index.rb
197
- rubygems/specification.rb:
198
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/specification.rb
199
- rubygems/user_interaction.rb:
200
- file: C:/Ruby/ruby-187-p249/lib/ruby/site_ruby/1.8/rubygems/user_interaction.rb
201
- 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
205
- singleton.rb:
206
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/singleton.rb
207
- socket.so:
208
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/socket.so
209
- type: extension-library
210
- stringio.so:
211
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/stringio.so
212
- type: extension-library
213
- strscan.so:
214
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/strscan.so
215
- type: extension-library
216
- syck.so:
217
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/syck.so
218
- type: extension-library
219
- tempfile.rb:
220
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/tempfile.rb
221
- thread.rb:
222
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/thread.rb
223
- thread.so:
224
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/thread.so
225
- type: extension-library
226
- time.rb:
227
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/time.rb
228
- timeout.rb:
229
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/timeout.rb
230
- 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
234
- uri.rb:
235
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri.rb
236
- uri/common.rb:
237
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/common.rb
238
- uri/ftp.rb:
239
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/ftp.rb
240
- uri/generic.rb:
241
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/generic.rb
242
- uri/http.rb:
243
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/http.rb
244
- uri/https.rb:
245
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/https.rb
246
- 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
- uri/mailto.rb:
251
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/uri/mailto.rb
252
- win32/registry.rb:
253
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/win32/registry.rb
254
- yaml.rb:
255
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml.rb
256
- yaml/basenode.rb:
257
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/basenode.rb
258
- yaml/constants.rb:
259
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/constants.rb
260
- yaml/error.rb:
261
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/error.rb
262
- yaml/rubytypes.rb:
263
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/rubytypes.rb
264
- yaml/stream.rb:
265
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/stream.rb
266
- yaml/syck.rb:
267
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/syck.rb
268
- yaml/tag.rb:
269
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/tag.rb
270
- yaml/types.rb:
271
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/types.rb
272
- yaml/ypath.rb:
273
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/yaml/ypath.rb
274
- zip/ioextras.rb:
275
- file: ./../../lib/pik/contrib/zip/ioextras.rb
276
- zip/stdrubyext.rb:
277
- file: ./../../lib/pik/contrib/zip/stdrubyext.rb
278
- zip/zip.rb:
279
- file: ./../../lib/pik/contrib/zip/zip.rb
280
- zlib.so:
281
- file: C:/Ruby/ruby-187-p249/lib/ruby/1.8/i386-mingw32/zlib.so
282
- type: extension-library
283
- zlib1.dll:
284
- file: C:/Ruby/ruby-187-p249/bin/zlib1.dll
285
- type: extension-library
286
- general:
287
- core: cui
288
- kcode: none
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