bitclust-core 0.6.0 → 0.7.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.
- checksums.yaml +7 -0
- data/ChangeLog +7 -0
- data/Gemfile +1 -0
- data/bitclust.gemspec +1 -0
- data/data/bitclust/template.offline/class +1 -1
- data/lib/bitclust/crossrubyutils.rb +2 -2
- data/lib/bitclust/methodentry.rb +1 -2
- data/lib/bitclust/progress_bar.rb +7 -0
- data/lib/bitclust/rdcompiler.rb +1 -1
- data/lib/bitclust/runner.rb +46 -32
- data/lib/bitclust/searcher.rb +14 -13
- data/lib/bitclust/silent_progress_bar.rb +17 -0
- data/lib/bitclust/subcommand.rb +27 -0
- data/lib/bitclust/subcommands/ancestors_command.rb +145 -0
- data/lib/bitclust/subcommands/chm_command.rb +268 -0
- data/lib/bitclust/subcommands/classes_command.rb +73 -0
- data/lib/bitclust/subcommands/extract_command.rb +55 -0
- data/lib/bitclust/subcommands/htmlfile_command.rb +105 -0
- data/lib/bitclust/subcommands/init_command.rb +29 -30
- data/lib/bitclust/subcommands/list_command.rb +39 -41
- data/lib/bitclust/subcommands/lookup_command.rb +71 -73
- data/lib/bitclust/subcommands/methods_command.rb +159 -0
- data/lib/bitclust/subcommands/preproc_command.rb +35 -0
- data/lib/bitclust/subcommands/property_command.rb +47 -48
- data/lib/bitclust/subcommands/query_command.rb +12 -18
- data/lib/bitclust/subcommands/server_command.rb +180 -182
- data/lib/bitclust/subcommands/setup_command.rb +85 -89
- data/lib/bitclust/subcommands/statichtml_command.rb +276 -0
- data/lib/bitclust/subcommands/update_command.rb +39 -41
- data/lib/bitclust/version.rb +1 -1
- data/test/test_bitclust.rb +1 -1
- data/test/test_rdcompiler.rb +1 -1
- data/test/test_runner.rb +7 -14
- metadata +120 -114
@@ -8,58 +8,56 @@ require 'yaml'
|
|
8
8
|
require 'bitclust'
|
9
9
|
require 'bitclust/subcommand'
|
10
10
|
|
11
|
-
module BitClust
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
11
|
+
module BitClust
|
12
|
+
module Subcommands
|
13
|
+
class UpdateCommand < Subcommand
|
14
|
+
|
15
|
+
def initialize
|
16
|
+
super
|
17
|
+
@root = nil
|
18
|
+
@library = nil
|
19
|
+
@parser.banner = "Usage: #{File.basename($0, '.*')} update [<file>...]"
|
20
|
+
@parser.on('--stdlibtree=ROOT', 'Process stdlib source directory tree.') {|path|
|
20
21
|
@root = path
|
21
22
|
}
|
22
|
-
|
23
|
+
@parser.on('--library-name=NAME', 'Use NAME for library name in file mode.') {|name|
|
23
24
|
@library = name
|
24
25
|
}
|
25
|
-
opt.on('--help', 'Prints this message and quit.') {
|
26
|
-
puts opt.help
|
27
|
-
exit 0
|
28
|
-
}
|
29
|
-
}
|
30
|
-
end
|
31
|
-
|
32
|
-
def parse(argv)
|
33
|
-
super
|
34
|
-
if not @root and argv.empty?
|
35
|
-
error "no input file given"
|
36
26
|
end
|
37
|
-
end
|
38
27
|
|
39
|
-
|
40
|
-
|
41
|
-
if @root
|
42
|
-
|
43
|
-
end
|
44
|
-
argv.each do |path|
|
45
|
-
db.update_by_file path, @library || guess_library_name(path)
|
28
|
+
def parse(argv)
|
29
|
+
super
|
30
|
+
if not @root and argv.empty?
|
31
|
+
error "no input file given"
|
46
32
|
end
|
47
|
-
|
48
|
-
end
|
33
|
+
end
|
49
34
|
|
50
|
-
|
35
|
+
def exec(argv, options)
|
36
|
+
super
|
37
|
+
@db.transaction {
|
38
|
+
if @root
|
39
|
+
@db.update_by_stdlibtree @root
|
40
|
+
end
|
41
|
+
argv.each do |path|
|
42
|
+
@db.update_by_file path, @library || guess_library_name(path)
|
43
|
+
end
|
44
|
+
}
|
45
|
+
end
|
46
|
+
|
47
|
+
private
|
48
|
+
|
49
|
+
def guess_library_name(path)
|
50
|
+
if %r<(\A|/)src/> =~ path
|
51
|
+
path.sub(%r<.*(\A|/)src/>, '').sub(/\.rd\z/, '')
|
52
|
+
else
|
53
|
+
path
|
54
|
+
end
|
55
|
+
end
|
51
56
|
|
52
|
-
|
53
|
-
|
54
|
-
path.sub(%r<.*(\A|/)src/>, '').sub(/\.rd\z/, '')
|
55
|
-
else
|
56
|
-
path
|
57
|
+
def get_c_filename(path)
|
58
|
+
File.basename(path, '.rd')
|
57
59
|
end
|
58
|
-
end
|
59
60
|
|
60
|
-
def get_c_filename(path)
|
61
|
-
File.basename(path, '.rd')
|
62
61
|
end
|
63
|
-
|
64
62
|
end
|
65
63
|
end
|
data/lib/bitclust/version.rb
CHANGED
data/test/test_bitclust.rb
CHANGED
data/test/test_rdcompiler.rb
CHANGED
@@ -20,7 +20,7 @@ class TestRDCompiler < Test::Unit::TestCase
|
|
20
20
|
def assert_compiled_method_source(expected, src)
|
21
21
|
method_entry = Object.new
|
22
22
|
mock(method_entry).source{ src }
|
23
|
-
mock(method_entry).index_id
|
23
|
+
mock(method_entry).index_id.any_times{ "dummy" }
|
24
24
|
mock(method_entry).defined?.any_times{ true }
|
25
25
|
mock(method_entry).id.any_times{ "String/i.index._builtin" }
|
26
26
|
assert_equal(expected, @c.compile_method(method_entry))
|
data/test/test_runner.rb
CHANGED
@@ -34,9 +34,8 @@ class TestRunner < Test::Unit::TestCase
|
|
34
34
|
command = mock(Object.new)
|
35
35
|
mock(::BitClust::Subcommands::InitCommand).new.returns(command)
|
36
36
|
mock(@runner).load_config.returns(@config)
|
37
|
-
mock(BitClust::MethodDatabase).new(@prefix).returns(@db)
|
38
37
|
command.parse(["version=1.9.3", "encoding=utf-8"])
|
39
|
-
command.exec(
|
38
|
+
command.exec(["version=1.9.3", "encoding=utf-8"], {:prefix=>@prefix, :capi => false}).returns(nil)
|
40
39
|
@runner.run(["init", "version=1.9.3", "encoding=utf-8"])
|
41
40
|
end
|
42
41
|
|
@@ -44,9 +43,8 @@ class TestRunner < Test::Unit::TestCase
|
|
44
43
|
command = mock(Object.new)
|
45
44
|
mock(::BitClust::Subcommands::ListCommand).new.returns(command)
|
46
45
|
mock(@runner).load_config.returns(@config)
|
47
|
-
mock(BitClust::MethodDatabase).new(@prefix).returns(@db)
|
48
46
|
command.parse(["--library"])
|
49
|
-
command.exec(
|
47
|
+
command.exec(["--library"], {:prefix=>@prefix, :capi => false})
|
50
48
|
@runner.run(["list", "--library"])
|
51
49
|
end
|
52
50
|
|
@@ -54,9 +52,8 @@ class TestRunner < Test::Unit::TestCase
|
|
54
52
|
command = mock(Object.new)
|
55
53
|
mock(::BitClust::Subcommands::ListCommand).new.returns(command)
|
56
54
|
mock(@runner).load_config.returns(@config)
|
57
|
-
mock(BitClust::MethodDatabase).new(@prefix).returns(@db)
|
58
55
|
command.parse(["--library=optparse"])
|
59
|
-
command.exec(
|
56
|
+
command.exec(["--library=optparse"], {:prefix=>@prefix, :capi => false})
|
60
57
|
@runner.run(["list", "--library=optparse"])
|
61
58
|
end
|
62
59
|
|
@@ -64,9 +61,8 @@ class TestRunner < Test::Unit::TestCase
|
|
64
61
|
command = mock(Object.new)
|
65
62
|
mock(::BitClust::Searcher).new.returns(command)
|
66
63
|
mock(@runner).load_config.returns(@config)
|
67
|
-
mock(BitClust::MethodDatabase).new(@prefix).returns(@db)
|
68
64
|
command.parse(["String#gsub"])
|
69
|
-
command.exec(
|
65
|
+
command.exec(["String#gsub"], {:prefix=>@prefix, :capi => false})
|
70
66
|
@runner.run(["search", "String#gsub"])
|
71
67
|
end
|
72
68
|
|
@@ -74,9 +70,8 @@ class TestRunner < Test::Unit::TestCase
|
|
74
70
|
command = mock(Object.new)
|
75
71
|
mock(::BitClust::Subcommands::QueryCommand).new.returns(command)
|
76
72
|
mock(@runner).load_config.returns(@config)
|
77
|
-
mock(BitClust::MethodDatabase).new(@prefix).returns(@db)
|
78
73
|
command.parse(["db.properties"])
|
79
|
-
command.exec(
|
74
|
+
command.exec(["db.properties"], {:prefix=>@prefix, :capi => false})
|
80
75
|
@runner.run(["query", "db.properties"])
|
81
76
|
end
|
82
77
|
|
@@ -84,9 +79,8 @@ class TestRunner < Test::Unit::TestCase
|
|
84
79
|
command = mock(Object.new)
|
85
80
|
mock(::BitClust::Subcommands::UpdateCommand).new.returns(command)
|
86
81
|
mock(@runner).load_config.returns(@config)
|
87
|
-
mock(BitClust::MethodDatabase).new(@prefix).returns(@db)
|
88
82
|
command.parse(["_builtin/String"])
|
89
|
-
command.exec(
|
83
|
+
command.exec(["_builtin/String"], {:prefix=>@prefix, :capi => false})
|
90
84
|
@runner.run(["update", "_builtin/String"])
|
91
85
|
end
|
92
86
|
|
@@ -94,9 +88,8 @@ class TestRunner < Test::Unit::TestCase
|
|
94
88
|
command = mock(Object.new)
|
95
89
|
mock(::BitClust::Subcommands::PropertyCommand).new.returns(command)
|
96
90
|
mock(@runner).load_config.returns(@config)
|
97
|
-
mock(BitClust::MethodDatabase).new(@prefix).returns(@db)
|
98
91
|
command.parse(["--list"])
|
99
|
-
command.exec(
|
92
|
+
command.exec(["--list"], {:prefix=>@prefix, :capi => false})
|
100
93
|
@runner.run(["property", "--list"])
|
101
94
|
end
|
102
95
|
end
|
metadata
CHANGED
@@ -1,85 +1,88 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bitclust-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.7.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- http://bugs.ruby-lang.org/projects/rurema
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-05-12 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: test-unit
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: 2.3.0
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - '>='
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: 2.3.0
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: test-unit-notify
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - '>='
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - '>='
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0'
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: test-unit-rr
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - '>='
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: '0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - '>='
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: '0'
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: rack
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
|
-
- -
|
59
|
+
- - '>='
|
68
60
|
- !ruby/object:Gem::Version
|
69
61
|
version: '0'
|
70
62
|
type: :runtime
|
71
63
|
prerelease: false
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
65
|
requirements:
|
75
|
-
- -
|
66
|
+
- - '>='
|
76
67
|
- !ruby/object:Gem::Version
|
77
68
|
version: '0'
|
78
|
-
|
79
|
-
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: progressbar
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: |
|
84
|
+
Rurema is a Japanese ruby documentation project, and
|
80
85
|
bitclust is a rurema document processor.
|
81
|
-
|
82
|
-
'
|
83
86
|
email:
|
84
87
|
- ''
|
85
88
|
executables:
|
@@ -92,146 +95,149 @@ files:
|
|
92
95
|
- README
|
93
96
|
- Rakefile
|
94
97
|
- bitclust.gemspec
|
95
|
-
- data/bitclust/
|
96
|
-
- data/bitclust/template/method
|
97
|
-
- data/bitclust/template/class-index
|
98
|
-
- data/bitclust/template/class
|
99
|
-
- data/bitclust/template/library
|
100
|
-
- data/bitclust/template/function-index
|
101
|
-
- data/bitclust/template/library-index
|
102
|
-
- data/bitclust/template/opensearchdescription
|
103
|
-
- data/bitclust/template/function
|
104
|
-
- data/bitclust/template/search
|
105
|
-
- data/bitclust/template/doc
|
106
|
-
- data/bitclust/template.lillia/layout
|
107
|
-
- data/bitclust/template.lillia/method
|
108
|
-
- data/bitclust/template.lillia/class-index
|
98
|
+
- data/bitclust/catalog/ja_JP.UTF-8
|
109
99
|
- data/bitclust/template.lillia/class
|
100
|
+
- data/bitclust/template.lillia/class-index
|
101
|
+
- data/bitclust/template.lillia/doc
|
102
|
+
- data/bitclust/template.lillia/layout
|
110
103
|
- data/bitclust/template.lillia/library
|
111
104
|
- data/bitclust/template.lillia/library-index
|
105
|
+
- data/bitclust/template.lillia/method
|
112
106
|
- data/bitclust/template.lillia/rd_file
|
113
|
-
- data/bitclust/template.lillia/doc
|
114
|
-
- data/bitclust/template.offline/layout
|
115
|
-
- data/bitclust/template.offline/method
|
116
|
-
- data/bitclust/template.offline/class-index
|
117
107
|
- data/bitclust/template.offline/class
|
118
|
-
- data/bitclust/template.offline/
|
108
|
+
- data/bitclust/template.offline/class-index
|
109
|
+
- data/bitclust/template.offline/doc
|
110
|
+
- data/bitclust/template.offline/function
|
119
111
|
- data/bitclust/template.offline/function-index
|
112
|
+
- data/bitclust/template.offline/layout
|
113
|
+
- data/bitclust/template.offline/library
|
120
114
|
- data/bitclust/template.offline/library-index
|
121
|
-
- data/bitclust/template.offline/
|
115
|
+
- data/bitclust/template.offline/method
|
122
116
|
- data/bitclust/template.offline/rd_file
|
123
|
-
- data/bitclust/template
|
124
|
-
- data/bitclust/
|
117
|
+
- data/bitclust/template/class
|
118
|
+
- data/bitclust/template/class-index
|
119
|
+
- data/bitclust/template/doc
|
120
|
+
- data/bitclust/template/function
|
121
|
+
- data/bitclust/template/function-index
|
122
|
+
- data/bitclust/template/layout
|
123
|
+
- data/bitclust/template/library
|
124
|
+
- data/bitclust/template/library-index
|
125
|
+
- data/bitclust/template/method
|
126
|
+
- data/bitclust/template/opensearchdescription
|
127
|
+
- data/bitclust/template/search
|
128
|
+
- lib/bitclust.rb
|
125
129
|
- lib/bitclust/app.rb
|
130
|
+
- lib/bitclust/classentry.rb
|
131
|
+
- lib/bitclust/compat.rb
|
132
|
+
- lib/bitclust/completion.rb
|
126
133
|
- lib/bitclust/crossrubyutils.rb
|
127
|
-
- lib/bitclust/subcommands/list_command.rb
|
128
|
-
- lib/bitclust/subcommands/lookup_command.rb
|
129
|
-
- lib/bitclust/subcommands/property_command.rb
|
130
|
-
- lib/bitclust/subcommands/server_command.rb
|
131
|
-
- lib/bitclust/subcommands/query_command.rb
|
132
|
-
- lib/bitclust/subcommands/update_command.rb
|
133
|
-
- lib/bitclust/subcommands/setup_command.rb
|
134
|
-
- lib/bitclust/subcommands/init_command.rb
|
135
|
-
- lib/bitclust/docentry.rb
|
136
|
-
- lib/bitclust/searcher.rb
|
137
|
-
- lib/bitclust/preprocessor.rb
|
138
|
-
- lib/bitclust/functiondatabase.rb
|
139
|
-
- lib/bitclust/version.rb
|
140
|
-
- lib/bitclust/libraryentry.rb
|
141
|
-
- lib/bitclust/textutils.rb
|
142
|
-
- lib/bitclust/runner.rb
|
143
134
|
- lib/bitclust/database.rb
|
144
|
-
- lib/bitclust/
|
145
|
-
- lib/bitclust/refsdatabase.rb
|
146
|
-
- lib/bitclust/classentry.rb
|
147
|
-
- lib/bitclust/interface.rb
|
135
|
+
- lib/bitclust/docentry.rb
|
148
136
|
- lib/bitclust/entry.rb
|
149
|
-
- lib/bitclust/
|
137
|
+
- lib/bitclust/exception.rb
|
138
|
+
- lib/bitclust/functiondatabase.rb
|
150
139
|
- lib/bitclust/functionentry.rb
|
151
|
-
- lib/bitclust/
|
152
|
-
- lib/bitclust/compat.rb
|
153
|
-
- lib/bitclust/simplesearcher.rb
|
154
|
-
- lib/bitclust/server.rb
|
140
|
+
- lib/bitclust/functionreferenceparser.rb
|
155
141
|
- lib/bitclust/htmlutils.rb
|
156
|
-
- lib/bitclust/
|
157
|
-
- lib/bitclust/
|
158
|
-
- lib/bitclust/rrdparser.rb
|
142
|
+
- lib/bitclust/interface.rb
|
143
|
+
- lib/bitclust/libraryentry.rb
|
159
144
|
- lib/bitclust/lineinput.rb
|
160
|
-
- lib/bitclust/
|
161
|
-
- lib/bitclust/
|
162
|
-
- lib/bitclust/functionreferenceparser.rb
|
163
|
-
- lib/bitclust/nameutils.rb
|
145
|
+
- lib/bitclust/messagecatalog.rb
|
146
|
+
- lib/bitclust/methoddatabase.rb
|
164
147
|
- lib/bitclust/methodentry.rb
|
165
148
|
- lib/bitclust/methodid.rb
|
149
|
+
- lib/bitclust/methodsignature.rb
|
150
|
+
- lib/bitclust/nameutils.rb
|
151
|
+
- lib/bitclust/parseutils.rb
|
152
|
+
- lib/bitclust/preprocessor.rb
|
153
|
+
- lib/bitclust/progress_bar.rb
|
154
|
+
- lib/bitclust/rdcompiler.rb
|
155
|
+
- lib/bitclust/refsdatabase.rb
|
156
|
+
- lib/bitclust/requesthandler.rb
|
166
157
|
- lib/bitclust/ridatabase.rb
|
158
|
+
- lib/bitclust/rrdparser.rb
|
159
|
+
- lib/bitclust/runner.rb
|
160
|
+
- lib/bitclust/screen.rb
|
161
|
+
- lib/bitclust/searcher.rb
|
162
|
+
- lib/bitclust/server.rb
|
163
|
+
- lib/bitclust/silent_progress_bar.rb
|
164
|
+
- lib/bitclust/simplesearcher.rb
|
167
165
|
- lib/bitclust/subcommand.rb
|
168
|
-
- lib/bitclust/
|
169
|
-
- lib/bitclust/
|
170
|
-
- lib/bitclust.rb
|
171
|
-
-
|
172
|
-
-
|
173
|
-
-
|
166
|
+
- lib/bitclust/subcommands/ancestors_command.rb
|
167
|
+
- lib/bitclust/subcommands/chm_command.rb
|
168
|
+
- lib/bitclust/subcommands/classes_command.rb
|
169
|
+
- lib/bitclust/subcommands/extract_command.rb
|
170
|
+
- lib/bitclust/subcommands/htmlfile_command.rb
|
171
|
+
- lib/bitclust/subcommands/init_command.rb
|
172
|
+
- lib/bitclust/subcommands/list_command.rb
|
173
|
+
- lib/bitclust/subcommands/lookup_command.rb
|
174
|
+
- lib/bitclust/subcommands/methods_command.rb
|
175
|
+
- lib/bitclust/subcommands/preproc_command.rb
|
176
|
+
- lib/bitclust/subcommands/property_command.rb
|
177
|
+
- lib/bitclust/subcommands/query_command.rb
|
178
|
+
- lib/bitclust/subcommands/server_command.rb
|
179
|
+
- lib/bitclust/subcommands/setup_command.rb
|
180
|
+
- lib/bitclust/subcommands/statichtml_command.rb
|
181
|
+
- lib/bitclust/subcommands/update_command.rb
|
182
|
+
- lib/bitclust/textutils.rb
|
183
|
+
- lib/bitclust/version.rb
|
184
|
+
- theme/default/images/external.png
|
174
185
|
- theme/default/rurema.png
|
175
186
|
- theme/default/style.css
|
176
187
|
- theme/default/test.css
|
177
|
-
- theme/
|
188
|
+
- theme/lillia/rurema.png
|
189
|
+
- theme/lillia/style.css
|
190
|
+
- theme/lillia/test.css
|
191
|
+
- test/run_test.rb
|
178
192
|
- test/test_bitclust.rb
|
193
|
+
- test/test_entry.rb
|
179
194
|
- test/test_functiondatabase.rb
|
180
|
-
- test/test_preprocessor.rb
|
181
|
-
- test/test_methoddatabase.rb
|
182
|
-
- test/test_simplesearcher.rb
|
183
|
-
- test/test_rdcompiler.rb
|
184
|
-
- test/test_nameutils.rb
|
185
195
|
- test/test_libraryentry.rb
|
196
|
+
- test/test_methoddatabase.rb
|
186
197
|
- test/test_methodsignature.rb
|
187
|
-
- test/
|
188
|
-
- test/
|
198
|
+
- test/test_nameutils.rb
|
199
|
+
- test/test_preprocessor.rb
|
200
|
+
- test/test_rdcompiler.rb
|
189
201
|
- test/test_refsdatabase.rb
|
190
|
-
- test/
|
191
|
-
- test/
|
202
|
+
- test/test_rrdparser.rb
|
203
|
+
- test/test_runner.rb
|
204
|
+
- test/test_simplesearcher.rb
|
192
205
|
- bin/bitclust
|
193
206
|
homepage: http://doc.ruby-lang.org/ja/
|
194
207
|
licenses: []
|
208
|
+
metadata: {}
|
195
209
|
post_install_message:
|
196
210
|
rdoc_options: []
|
197
211
|
require_paths:
|
198
212
|
- lib
|
199
213
|
required_ruby_version: !ruby/object:Gem::Requirement
|
200
|
-
none: false
|
201
214
|
requirements:
|
202
|
-
- -
|
215
|
+
- - '>='
|
203
216
|
- !ruby/object:Gem::Version
|
204
217
|
version: '0'
|
205
|
-
segments:
|
206
|
-
- 0
|
207
|
-
hash: 1699377220203508
|
208
218
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
209
|
-
none: false
|
210
219
|
requirements:
|
211
|
-
- -
|
220
|
+
- - '>='
|
212
221
|
- !ruby/object:Gem::Version
|
213
222
|
version: '0'
|
214
|
-
segments:
|
215
|
-
- 0
|
216
|
-
hash: 1699377220203508
|
217
223
|
requirements: []
|
218
224
|
rubyforge_project: ''
|
219
|
-
rubygems_version:
|
225
|
+
rubygems_version: 2.0.0
|
220
226
|
signing_key:
|
221
|
-
specification_version:
|
227
|
+
specification_version: 4
|
222
228
|
summary: BitClust is a rurema document processor.
|
223
229
|
test_files:
|
230
|
+
- test/run_test.rb
|
224
231
|
- test/test_bitclust.rb
|
232
|
+
- test/test_entry.rb
|
225
233
|
- test/test_functiondatabase.rb
|
226
|
-
- test/test_preprocessor.rb
|
227
|
-
- test/test_methoddatabase.rb
|
228
|
-
- test/test_simplesearcher.rb
|
229
|
-
- test/test_rdcompiler.rb
|
230
|
-
- test/test_nameutils.rb
|
231
234
|
- test/test_libraryentry.rb
|
235
|
+
- test/test_methoddatabase.rb
|
232
236
|
- test/test_methodsignature.rb
|
233
|
-
- test/
|
234
|
-
- test/
|
237
|
+
- test/test_nameutils.rb
|
238
|
+
- test/test_preprocessor.rb
|
239
|
+
- test/test_rdcompiler.rb
|
235
240
|
- test/test_refsdatabase.rb
|
236
|
-
- test/
|
237
|
-
- test/
|
241
|
+
- test/test_rrdparser.rb
|
242
|
+
- test/test_runner.rb
|
243
|
+
- test/test_simplesearcher.rb
|