bitclust-core 0.5.0

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 (127) hide show
  1. data/ChangeLog +2907 -0
  2. data/Gemfile +7 -0
  3. data/README +21 -0
  4. data/Rakefile +20 -0
  5. data/bin/bitclust +14 -0
  6. data/bin/refe +36 -0
  7. data/bitclust-dev.gemspec +33 -0
  8. data/bitclust.gemspec +30 -0
  9. data/config.in +23 -0
  10. data/config.ru +48 -0
  11. data/config.ru.sample +31 -0
  12. data/data/bitclust/catalog/ja_JP.EUC-JP +78 -0
  13. data/data/bitclust/catalog/ja_JP.UTF-8 +78 -0
  14. data/data/bitclust/template.lillia/class +98 -0
  15. data/data/bitclust/template.lillia/class-index +28 -0
  16. data/data/bitclust/template.lillia/doc +48 -0
  17. data/data/bitclust/template.lillia/layout +19 -0
  18. data/data/bitclust/template.lillia/library +129 -0
  19. data/data/bitclust/template.lillia/library-index +32 -0
  20. data/data/bitclust/template.lillia/method +20 -0
  21. data/data/bitclust/template.lillia/rd_file +6 -0
  22. data/data/bitclust/template.offline/class +67 -0
  23. data/data/bitclust/template.offline/class-index +28 -0
  24. data/data/bitclust/template.offline/doc +13 -0
  25. data/data/bitclust/template.offline/function +22 -0
  26. data/data/bitclust/template.offline/function-index +24 -0
  27. data/data/bitclust/template.offline/layout +18 -0
  28. data/data/bitclust/template.offline/library +87 -0
  29. data/data/bitclust/template.offline/library-index +32 -0
  30. data/data/bitclust/template.offline/method +21 -0
  31. data/data/bitclust/template.offline/rd_file +6 -0
  32. data/data/bitclust/template/class +133 -0
  33. data/data/bitclust/template/class-index +30 -0
  34. data/data/bitclust/template/doc +14 -0
  35. data/data/bitclust/template/function +21 -0
  36. data/data/bitclust/template/function-index +25 -0
  37. data/data/bitclust/template/layout +19 -0
  38. data/data/bitclust/template/library +89 -0
  39. data/data/bitclust/template/library-index +35 -0
  40. data/data/bitclust/template/method +24 -0
  41. data/data/bitclust/template/opensearchdescription +10 -0
  42. data/data/bitclust/template/search +57 -0
  43. data/lib/bitclust.rb +9 -0
  44. data/lib/bitclust/app.rb +129 -0
  45. data/lib/bitclust/classentry.rb +425 -0
  46. data/lib/bitclust/compat.rb +39 -0
  47. data/lib/bitclust/completion.rb +531 -0
  48. data/lib/bitclust/crossrubyutils.rb +91 -0
  49. data/lib/bitclust/database.rb +181 -0
  50. data/lib/bitclust/docentry.rb +83 -0
  51. data/lib/bitclust/entry.rb +223 -0
  52. data/lib/bitclust/exception.rb +38 -0
  53. data/lib/bitclust/functiondatabase.rb +115 -0
  54. data/lib/bitclust/functionentry.rb +81 -0
  55. data/lib/bitclust/functionreferenceparser.rb +76 -0
  56. data/lib/bitclust/htmlutils.rb +80 -0
  57. data/lib/bitclust/interface.rb +87 -0
  58. data/lib/bitclust/libraryentry.rb +211 -0
  59. data/lib/bitclust/lineinput.rb +165 -0
  60. data/lib/bitclust/messagecatalog.rb +95 -0
  61. data/lib/bitclust/methoddatabase.rb +401 -0
  62. data/lib/bitclust/methodentry.rb +202 -0
  63. data/lib/bitclust/methodid.rb +209 -0
  64. data/lib/bitclust/methodsignature.rb +82 -0
  65. data/lib/bitclust/nameutils.rb +236 -0
  66. data/lib/bitclust/parseutils.rb +60 -0
  67. data/lib/bitclust/preprocessor.rb +273 -0
  68. data/lib/bitclust/rdcompiler.rb +507 -0
  69. data/lib/bitclust/refsdatabase.rb +66 -0
  70. data/lib/bitclust/requesthandler.rb +330 -0
  71. data/lib/bitclust/ridatabase.rb +349 -0
  72. data/lib/bitclust/rrdparser.rb +522 -0
  73. data/lib/bitclust/runner.rb +143 -0
  74. data/lib/bitclust/screen.rb +554 -0
  75. data/lib/bitclust/searcher.rb +518 -0
  76. data/lib/bitclust/server.rb +59 -0
  77. data/lib/bitclust/simplesearcher.rb +84 -0
  78. data/lib/bitclust/subcommand.rb +746 -0
  79. data/lib/bitclust/textutils.rb +51 -0
  80. data/lib/bitclust/version.rb +3 -0
  81. data/packer.rb +224 -0
  82. data/refe2.gemspec +29 -0
  83. data/server.exe +0 -0
  84. data/server.exy +159 -0
  85. data/server.rb +10 -0
  86. data/setup.rb +1596 -0
  87. data/standalone.rb +193 -0
  88. data/test/run_test.rb +15 -0
  89. data/test/test_bitclust.rb +81 -0
  90. data/test/test_entry.rb +39 -0
  91. data/test/test_functiondatabase.rb +55 -0
  92. data/test/test_libraryentry.rb +31 -0
  93. data/test/test_methoddatabase.rb +81 -0
  94. data/test/test_methodsignature.rb +14 -0
  95. data/test/test_nameutils.rb +324 -0
  96. data/test/test_preprocessor.rb +84 -0
  97. data/test/test_rdcompiler.rb +534 -0
  98. data/test/test_refsdatabase.rb +76 -0
  99. data/test/test_rrdparser.rb +26 -0
  100. data/test/test_runner.rb +102 -0
  101. data/test/test_simplesearcher.rb +48 -0
  102. data/theme/default/images/external.png +0 -0
  103. data/theme/default/rurema.png +0 -0
  104. data/theme/default/style.css +288 -0
  105. data/theme/default/test.css +254 -0
  106. data/theme/lillia/rurema.png +0 -0
  107. data/theme/lillia/style.css +331 -0
  108. data/theme/lillia/test.css +254 -0
  109. data/tools/bc-ancestors.rb +153 -0
  110. data/tools/bc-checkparams.rb +246 -0
  111. data/tools/bc-classes.rb +80 -0
  112. data/tools/bc-convert.rb +165 -0
  113. data/tools/bc-list.rb +63 -0
  114. data/tools/bc-methods.rb +171 -0
  115. data/tools/bc-preproc.rb +42 -0
  116. data/tools/bc-rdoc.rb +343 -0
  117. data/tools/bc-tochm.rb +301 -0
  118. data/tools/bc-tohtml.rb +125 -0
  119. data/tools/bc-tohtmlpackage.rb +241 -0
  120. data/tools/check-signature.rb +19 -0
  121. data/tools/forall-ruby.rb +20 -0
  122. data/tools/gencatalog.rb +69 -0
  123. data/tools/statrefm.rb +98 -0
  124. data/tools/stattodo.rb +150 -0
  125. data/tools/update-database.rb +146 -0
  126. data/view.cgi +6 -0
  127. metadata +222 -0
@@ -0,0 +1,51 @@
1
+ #
2
+ # bitclust/textutils
3
+ #
4
+ # Copyright (c) 2006 Minero Aoki
5
+ #
6
+ # This program is free software.
7
+ # You can distribute/modify this program under the Ruby License.
8
+ #
9
+
10
+ module BitClust
11
+
12
+ module TextUtils
13
+
14
+ module_function
15
+
16
+ def detab(str, ts = 8)
17
+ add = 0
18
+ str.gsub(/\t/) {
19
+ len = ts - ($~.begin(0) + add) % ts
20
+ add += len - 1
21
+ ' ' * len
22
+ }
23
+ end
24
+
25
+ def unindent_block(lines)
26
+ n = n_minimum_indent(lines)
27
+ lines.map {|line| unindent(line, n) }
28
+ end
29
+
30
+ def n_minimum_indent(lines)
31
+ lines.reject {|line| line.strip.empty? }.map {|line| n_indent(line) }.min
32
+ end
33
+
34
+ def n_indent(line)
35
+ line.slice(/\A\s*/).size
36
+ end
37
+
38
+ INDENT_RE = {
39
+ 2 => /\A {2}/,
40
+ 4 => /\A {4}/,
41
+ 8 => /\A {8}/
42
+ }
43
+
44
+ def unindent(line, n)
45
+ re = (INDENT_RE[n] ||= /\A {#{n}}/)
46
+ line.sub(re, '')
47
+ end
48
+
49
+ end
50
+
51
+ end
@@ -0,0 +1,3 @@
1
+ module BitClust
2
+ VERSION = "0.5.0"
3
+ end
data/packer.rb ADDED
@@ -0,0 +1,224 @@
1
+ #!/usr/bin/ruby -Ke
2
+ # -*- coding: euc-jp -*-
3
+
4
+ require 'fileutils'
5
+ require 'optparse'
6
+
7
+ ruby = nil
8
+ begin
9
+ require "rbconfig"
10
+ ruby = File.join(
11
+ RbConfig::CONFIG["bindir"],
12
+ RbConfig::CONFIG["ruby_install_name"] + RbConfig::CONFIG["EXEEXT"]
13
+ )
14
+ rescue LoadError
15
+ ruby = "ruby"
16
+ end
17
+
18
+ bitclust_src_path = File.dirname(File.expand_path(__FILE__))
19
+ parent_path = File.dirname(bitclust_src_path)
20
+ output_path = File.join(parent_path, "ruby-refm-1.9.3-dynamic")
21
+ bitclust_dest_dir = "bitclust"
22
+ rubydoc_refm_api_src_path = File.join(parent_path, "rubydoc/refm/api/src")
23
+ rubydoc_refm_capi_src_path = File.join(parent_path, "rubydoc/refm/capi/src/*")
24
+ database_encoding = "euc-jp"
25
+ database_versions = [
26
+ "1.8.7",
27
+ "1.9.3",
28
+ ]
29
+ database_version_to_dir = proc {|version| "db-" + version.tr(".", "_") }
30
+ title = "bitclust"
31
+
32
+ fu = FileUtils::Verbose
33
+
34
+ parser = OptionParser.new
35
+
36
+ parser.on('--ruby=RUBY', 'path to ruby.') {|path|
37
+ ruby = path
38
+ }
39
+ parser.on('--bitclust-srcdir=BITCLUSTDIR', 'path to bitclust.') {|path|
40
+ bitclust_src_path = File.expand_path(path)
41
+ }
42
+ parser.on('--bitclust-dstdir=BITCLUSTDIR', 'dirname of bitclust in output.') {|dir|
43
+ bitclust_dest_dir = dir
44
+ }
45
+ parser.on('--rubydoc-refm-api-srcdir=SRCDIR', 'path to rubydoc/refm/api/src.') {|path|
46
+ rubydoc_refm_api_src_path = File.expand_path(path)
47
+ }
48
+ parser.on('--output-dir=OUTPUTDIR', 'path to output.') {|path|
49
+ output_path = File.expand_path(path)
50
+ }
51
+ parser.on('--database-encoding=ENCODING', 'encoding of database.') {|encoding|
52
+ database_encoding = encoding
53
+ }
54
+ parser.on('--database-versions=VERSION,VERSION', 'versions of database.', Array) {|versions|
55
+ database_versions = versions
56
+ }
57
+
58
+ begin
59
+ parser.parse!
60
+ rescue OptionParser::ParseError => err
61
+ $stderr.puts err.message
62
+ $stderr.puts parser.help
63
+ exit 1
64
+ end
65
+
66
+ bitclust_command = File.join(bitclust_src_path, "bin/bitclust")
67
+ bitclust_libdir = File.join(bitclust_src_path, "lib")
68
+
69
+ def system_verbose(*args)
70
+ puts args.inspect
71
+ system(*args) or raise "failed: #{args.inspect}"
72
+ end
73
+
74
+ unless File.exist?(File.join(output_path, bitclust_dest_dir))
75
+ fu.mkpath(File.join(output_path, bitclust_dest_dir))
76
+ Dir.glob("#{bitclust_src_path}/**/*").each do |src|
77
+ dest = File.join(output_path, bitclust_dest_dir, src[bitclust_src_path.size..-1])
78
+ if File.directory?(src)
79
+ fu.mkpath(dest)
80
+ else
81
+ fu.cp(src, dest)
82
+ end
83
+ end
84
+ end
85
+
86
+ database_versions.each do |version|
87
+ database_path = File.join(output_path, database_version_to_dir.call(version))
88
+ unless File.exist?(database_path)
89
+ system_verbose(ruby, "-Ke", "-I#{bitclust_libdir}", bitclust_command, "--database=#{database_path}", "init", "encoding=#{database_encoding}", "version=#{version}")
90
+ system_verbose(ruby, "-Ke", "-I#{bitclust_libdir}", bitclust_command, "--database=#{database_path}", "update", "--stdlibtree=#{rubydoc_refm_api_src_path}")
91
+ system_verbose(ruby, "-Ke", "-I#{bitclust_libdir}", bitclust_command, "--database=#{database_path}", "--capi", "update", *Dir.glob(rubydoc_refm_capi_src_path).to_a)
92
+ end
93
+ end
94
+
95
+ server_rb = File.join(output_path, "server.rb")
96
+ unless File.exist?(server_rb)
97
+ puts "write #{server_rb}"
98
+ File.open(server_rb, "wb", 0755) do |f|
99
+ f.puts <<-RUBY
100
+ #!/usr/bin/ruby -Ke
101
+ Dir.chdir File.dirname(__FILE__)
102
+ standalone = "#{bitclust_dest_dir}/standalone.rb"
103
+ src = File.read(standalone).sub(/\\$0/) { standalone.dump }
104
+ ARGV.unshift "--bind-address=127.0.0.1"
105
+ ARGV.unshift "--baseurl="
106
+ ARGV.unshift "--debug"
107
+ ARGV.unshift "--auto"
108
+ ARGV.unshift "--capi"
109
+ eval src, binding, standalone, 1
110
+ RUBY
111
+ end
112
+ end
113
+
114
+ readme_html = File.join(output_path, "readme.html")
115
+ unless File.exist?(readme_html)
116
+ puts "write #{readme_html}"
117
+ File.open(readme_html, "wb") do |f|
118
+ f.puts <<-HTML
119
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
120
+
121
+ <html lang="ja-JP">
122
+ <head>
123
+ <meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
124
+ <meta http-equiv="Content-Language" content="ja-JP">
125
+ <link rel="stylesheet" type="text/css" href="./bitclust/theme/default/style.css">
126
+ <title>Ruby ��ե���󥹥ޥ˥奢������ײ�</title>
127
+ </head>
128
+ <body>
129
+ <h1>Ruby ��ե���󥹥ޥ˥奢������ײ�</h1>
130
+
131
+ <h2>����ϲ���</h2>
132
+ <p>
133
+ Ruby ��ե���󥹥ޥ˥奢��δʰ� Web �����Х����ƥ�Ǥ���
134
+ </p>
135
+
136
+ <!--links-->
137
+
138
+ <p>
139
+ �Ȥ����˴ؤ��Ƥϰʲ��� URL �򻲾Ȥ��Ƥ���������
140
+ </p>
141
+ <ul>
142
+ <li><a href="http://bugs.ruby-lang.org/projects/rurema/wiki/ReleasePackageHowTo">http://bugs.ruby-lang.org/projects/rurema/wiki/ReleasePackageHowTo</a></li>
143
+ </ul>
144
+
145
+ <p>
146
+ �ץ������������Τ˴ؤ��Ƥϰʲ��� URL �򻲾Ȥ��Ƥ���������
147
+ </p>
148
+ <ul>
149
+ <li><a href="http://bugs.ruby-lang.org/projects/rurema/wiki">http://bugs.ruby-lang.org/projects/rurema/wiki</a></li>
150
+ </ul>
151
+
152
+ </body>
153
+ </html>
154
+ HTML
155
+ end
156
+ end
157
+
158
+ database_versions.each do |version|
159
+ database_dir = database_version_to_dir.call(version)
160
+ refe = File.join(output_path, database_dir.sub(/db/, "refe"))
161
+ refe_cmd = refe + ".cmd"
162
+ unless File.exist?(refe_cmd)
163
+ puts "write #{refe_cmd}"
164
+ File.open(refe_cmd, "wb") do |f|
165
+ f.puts(<<-CMD.gsub(/\r?\n/, "\r\n"))
166
+ @echo off
167
+ pushd "%~dp0"
168
+ ruby -Ke -I bitclust/lib bitclust/bin/refe -d #{database_dir} -e sjis %*
169
+ popd
170
+ CMD
171
+ end
172
+ end
173
+ unless File.exist?(refe)
174
+ puts "write #{refe}"
175
+ File.open(refe, "wb", 0755) do |f|
176
+ f.puts <<-SH
177
+ #!/bin/sh
178
+ cd "`dirname "$0"`"
179
+ exec ruby -Ke -I bitclust/lib bitclust/bin/refe -d #{database_dir} "$@"
180
+ SH
181
+ end
182
+ end
183
+ end
184
+
185
+ Dir.chdir(File.dirname(output_path))
186
+ archive_name = File.basename(output_path)
187
+ begin
188
+ require "Win32API"
189
+ # make server.exe using exerb
190
+ Dir.chdir(File.basename(output_path)) do
191
+ system_verbose("ruby", "-rexerb/mkexy", "server.rb")
192
+ File.open("server.exy", "r+") do |f|
193
+ yaml = f.read
194
+ f.rewind
195
+ f.truncate(0)
196
+ yaml.each do |line|
197
+ f.puts line unless /bitclust/ =~ line
198
+ end
199
+ end
200
+ system_verbose("ruby", "-S", "exerb", "server.exy")
201
+ end
202
+
203
+ # call DLL to make archives
204
+ buf = ' '*32*1024
205
+ [
206
+ ["7-zip32", "SevenZip", "-tzip -mx9 a #{archive_name}.zip #{archive_name}"],
207
+ ["tar32", "Tar", "-z9 -cvf #{archive_name}.tar.gz #{archive_name}"],
208
+ ["tar32", "Tar", "--xz -cvf #{archive_name}.tar.xz #{archive_name}"],
209
+ ].each do |dllname, funcname, args|
210
+ func = Win32API.new(dllname, funcname, ['N','P','P','N'], 'N')
211
+ puts "#{dllname}: #{funcname} #{args}"
212
+ p func.call(0, args, buf, buf.size)
213
+ puts buf.split(/\x0/,2)[0].rstrip
214
+ end
215
+ rescue LoadError
216
+ begin
217
+ system_verbose("7za", "-tzip", "a", archive_name+".zip", archive_name)
218
+ rescue
219
+ system_verbose("zip", "-r", archive_name+".zip", archive_name)
220
+ end
221
+ ENV['GZIP'] = '--best'
222
+ system_verbose("tar", "--owner=root", "--group=root", "-zcf", archive_name+".tar.gz", archive_name)
223
+ system_verbose("tar", "--owner=root", "--group=root", "--xz", "-cf", archive_name+".tar.xz", archive_name)
224
+ end
data/refe2.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require 'rake'
4
+ require "bitclust/version"
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "refe2"
8
+ s.version = BitClust::VERSION
9
+ s.authors = ["http://bugs.ruby-lang.org/projects/rurema"]
10
+ s.email = [""]
11
+ s.homepage = "http://doc.ruby-lang.org/ja/"
12
+ s.summary = %Q!BitClust is a rurema document processor.!
13
+ s.description =<<EOD
14
+ Rurema is a Japanese ruby documentation project, and
15
+ bitclust is a rurema document processor.
16
+ This is tools for Rubyists.
17
+ EOD
18
+
19
+ s.rubyforge_project = ""
20
+ s.files = FileList["bin/refe", "lib/bitclust.rb"]
21
+ s.executables = ["refe"]
22
+ s.require_paths = ["lib"]
23
+
24
+ # specify any dependencies here; for example:
25
+ # s.add_development_dependency "rspec"
26
+ # s.add_runtime_dependency "rest-client"
27
+ s.add_runtime_dependency "bitclust-core", "= #{BitClust::VERSION}"
28
+ s.add_development_dependency "test-unit", ">= 2.3.0"
29
+ end
data/server.exe ADDED
Binary file
data/server.exy ADDED
@@ -0,0 +1,159 @@
1
+ # Generated by mkexy
2
+ # on 2008-07-09 19:09
3
+
4
+ general:
5
+ startup: server.rb
6
+ core: cui
7
+ kcode: euc
8
+
9
+ file:
10
+ server.rb:
11
+ uri/common.rb:
12
+ file: c:/ruby-1.8/lib/ruby/1.8/uri/common.rb
13
+ uri/generic.rb:
14
+ file: c:/ruby-1.8/lib/ruby/1.8/uri/generic.rb
15
+ uri/ftp.rb:
16
+ file: c:/ruby-1.8/lib/ruby/1.8/uri/ftp.rb
17
+ uri/http.rb:
18
+ file: c:/ruby-1.8/lib/ruby/1.8/uri/http.rb
19
+ uri/https.rb:
20
+ file: c:/ruby-1.8/lib/ruby/1.8/uri/https.rb
21
+ uri/ldap.rb:
22
+ file: c:/ruby-1.8/lib/ruby/1.8/uri/ldap.rb
23
+ uri/ldaps.rb:
24
+ file: c:/ruby-1.8/lib/ruby/1.8/uri/ldaps.rb
25
+ uri/mailto.rb:
26
+ file: c:/ruby-1.8/lib/ruby/1.8/uri/mailto.rb
27
+ uri.rb:
28
+ file: c:/ruby-1.8/lib/ruby/1.8/uri.rb
29
+ webrick/compat.rb:
30
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/compat.rb
31
+ webrick/version.rb:
32
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/version.rb
33
+ webrick/httpversion.rb:
34
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpversion.rb
35
+ socket.so:
36
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/socket.so
37
+ type: extension-library
38
+ delegate.rb:
39
+ file: c:/ruby-1.8/lib/ruby/1.8/delegate.rb
40
+ etc.so:
41
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/etc.so
42
+ type: extension-library
43
+ fileutils.rb:
44
+ file: c:/ruby-1.8/lib/ruby/1.8/fileutils.rb
45
+ Win32API.so:
46
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/Win32API.so
47
+ type: extension-library
48
+ tmpdir.rb:
49
+ file: c:/ruby-1.8/lib/ruby/1.8/tmpdir.rb
50
+ tempfile.rb:
51
+ file: c:/ruby-1.8/lib/ruby/1.8/tempfile.rb
52
+ webrick/httputils.rb:
53
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httputils.rb
54
+ fcntl.so:
55
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/fcntl.so
56
+ type: extension-library
57
+ webrick/utils.rb:
58
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/utils.rb
59
+ webrick/log.rb:
60
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/log.rb
61
+ webrick/config.rb:
62
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/config.rb
63
+ thread.so:
64
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/thread.so
65
+ type: extension-library
66
+ thread.rb:
67
+ file: c:/ruby-1.8/lib/ruby/1.8/thread.rb
68
+ timeout.rb:
69
+ file: c:/ruby-1.8/lib/ruby/1.8/timeout.rb
70
+ webrick/server.rb:
71
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/server.rb
72
+ webrick/accesslog.rb:
73
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/accesslog.rb
74
+ webrick/htmlutils.rb:
75
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/htmlutils.rb
76
+ rational.rb:
77
+ file: c:/ruby-1.8/lib/ruby/1.8/rational.rb
78
+ date/format.rb:
79
+ file: c:/ruby-1.8/lib/ruby/1.8/date/format.rb
80
+ parsedate.rb:
81
+ file: c:/ruby-1.8/lib/ruby/1.8/parsedate.rb
82
+ time.rb:
83
+ file: c:/ruby-1.8/lib/ruby/1.8/time.rb
84
+ webrick/cookie.rb:
85
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/cookie.rb
86
+ webrick/httpstatus.rb:
87
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpstatus.rb
88
+ webrick/httprequest.rb:
89
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httprequest.rb
90
+ webrick/httpresponse.rb:
91
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpresponse.rb
92
+ webrick/httpservlet/abstract.rb:
93
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpservlet/abstract.rb
94
+ webrick/httpservlet/filehandler.rb:
95
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpservlet/filehandler.rb
96
+ rbconfig.rb:
97
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/rbconfig.rb
98
+ webrick/httpservlet/cgihandler.rb:
99
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpservlet/cgihandler.rb
100
+ strscan.so:
101
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/strscan.so
102
+ type: extension-library
103
+ erb.rb:
104
+ file: c:/ruby-1.8/lib/ruby/1.8/erb.rb
105
+ webrick/httpservlet/erbhandler.rb:
106
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpservlet/erbhandler.rb
107
+ webrick/httpservlet/prochandler.rb:
108
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpservlet/prochandler.rb
109
+ webrick/httpservlet.rb:
110
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpservlet.rb
111
+ webrick/httpserver.rb:
112
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpserver.rb
113
+ webrick/httpauth/authenticator.rb:
114
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpauth/authenticator.rb
115
+ webrick/httpauth/basicauth.rb:
116
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpauth/basicauth.rb
117
+ digest.so:
118
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/digest.so
119
+ type: extension-library
120
+ digest.rb:
121
+ file: c:/ruby-1.8/lib/ruby/1.8/digest.rb
122
+ digest/md5.so:
123
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/digest/md5.so
124
+ type: extension-library
125
+ digest/sha1.so:
126
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/digest/sha1.so
127
+ type: extension-library
128
+ webrick/httpauth/digestauth.rb:
129
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpauth/digestauth.rb
130
+ webrick/httpauth/userdb.rb:
131
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpauth/userdb.rb
132
+ webrick/httpauth/htpasswd.rb:
133
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpauth/htpasswd.rb
134
+ webrick/httpauth/htdigest.rb:
135
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpauth/htdigest.rb
136
+ webrick/httpauth/htgroup.rb:
137
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpauth/htgroup.rb
138
+ webrick/httpauth.rb:
139
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/httpauth.rb
140
+ webrick.rb:
141
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick.rb
142
+ optparse.rb:
143
+ file: c:/ruby-1.8/lib/ruby/1.8/optparse.rb
144
+ stringio.so:
145
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/stringio.so
146
+ type: extension-library
147
+ drb/eq.rb:
148
+ file: c:/ruby-1.8/lib/ruby/1.8/drb/eq.rb
149
+ drb/invokemethod.rb:
150
+ file: c:/ruby-1.8/lib/ruby/1.8/drb/invokemethod.rb
151
+ drb/drb.rb:
152
+ file: c:/ruby-1.8/lib/ruby/1.8/drb/drb.rb
153
+ drb.rb:
154
+ file: c:/ruby-1.8/lib/ruby/1.8/drb.rb
155
+ nkf.so:
156
+ file: c:/ruby-1.8/lib/ruby/1.8/i386-mswin32/nkf.so
157
+ type: extension-library
158
+ webrick/cgi.rb:
159
+ file: c:/ruby-1.8/lib/ruby/1.8/webrick/cgi.rb