bitclust-dev 1.2.2 → 1.3.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 +4 -4
- data/tools/bc-checkparams.rb +7 -5
- data/tools/check-signature.rb +1 -1
- metadata +15 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a17aae0f1153193b6c5f295680331f6661bb8ac0fd3916f46a9d143820af535c
|
|
4
|
+
data.tar.gz: 5a9bce05ca0b5b2053a6c62f6c047d258d01743b88deb6034ae3c6386ac38583
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f879ecf2eab0add265f0e8807999cb57f366e755f6d378de6da3db6803c793f1231e88d6c24e03ca565fe101c4b5aaf08a42eca33b0c9a92ce74f5c11f1fb72f
|
|
7
|
+
data.tar.gz: 036f33247f1b23c469861caae060d47f1a8921e9f271e85c826e1b4e626c17d6fe8243c9f561990986bd9916209d39950546af3c6588fafc56029638d9ec5f10
|
data/tools/bc-checkparams.rb
CHANGED
|
@@ -25,7 +25,7 @@ def main
|
|
|
25
25
|
}
|
|
26
26
|
begin
|
|
27
27
|
option.parse!(ARGV)
|
|
28
|
-
rescue OptionParser::ParseError =>
|
|
28
|
+
rescue OptionParser::ParseError => err
|
|
29
29
|
$stderr.puts err.message
|
|
30
30
|
exit 1
|
|
31
31
|
end
|
|
@@ -145,8 +145,8 @@ module BitClust
|
|
|
145
145
|
case @f.peek
|
|
146
146
|
when /\A$/
|
|
147
147
|
@f.gets
|
|
148
|
-
when /\A[ \t
|
|
149
|
-
@f.while_match(/\A[ \t
|
|
148
|
+
when /\A[ \t]/
|
|
149
|
+
@f.while_match(/\A[ \t]/) do |line|
|
|
150
150
|
# nop
|
|
151
151
|
end
|
|
152
152
|
when %r!\A//emlist\{!
|
|
@@ -161,8 +161,8 @@ module BitClust
|
|
|
161
161
|
def dd_without_p
|
|
162
162
|
while /\A[ \t]/ =~ @f.peek or %r!\A//emlist\{! =~ @f.peek
|
|
163
163
|
case @f.peek
|
|
164
|
-
when /\A[ \t
|
|
165
|
-
@f.while_match(/\A[ \t
|
|
164
|
+
when /\A[ \t]/
|
|
165
|
+
@f.while_match(/\A[ \t]/) do |line|
|
|
166
166
|
# nop
|
|
167
167
|
end
|
|
168
168
|
when %r!\A//emlist\{!
|
|
@@ -214,6 +214,8 @@ module BitClust
|
|
|
214
214
|
# nop
|
|
215
215
|
when '@todo'
|
|
216
216
|
# nop
|
|
217
|
+
when '@undef'
|
|
218
|
+
# nop
|
|
217
219
|
else
|
|
218
220
|
$stderr.puts "[UNKNOWN_META_INFO] #{cmd}"
|
|
219
221
|
end
|
data/tools/check-signature.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bitclust-dev
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- https://github.com/rurema
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: tools
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-12-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bitclust-core
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: 1.3.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.3.0
|
|
27
27
|
description: |
|
|
28
28
|
Rurema is a Japanese ruby documentation project, and
|
|
29
29
|
bitclust is a rurema document processor.
|
|
@@ -31,15 +31,15 @@ description: |
|
|
|
31
31
|
email:
|
|
32
32
|
- ''
|
|
33
33
|
executables:
|
|
34
|
+
- gencatalog.rb
|
|
34
35
|
- insert-canonical.rb
|
|
35
36
|
- bc-convert.rb
|
|
37
|
+
- forall-ruby.rb
|
|
36
38
|
- bc-checkparams.rb
|
|
37
|
-
- bc-rdoc.rb
|
|
38
39
|
- statrefm.rb
|
|
39
|
-
- gencatalog.rb
|
|
40
|
-
- forall-ruby.rb
|
|
41
40
|
- stattodo.rb
|
|
42
41
|
- update-database.rb
|
|
42
|
+
- bc-rdoc.rb
|
|
43
43
|
extensions: []
|
|
44
44
|
extra_rdoc_files: []
|
|
45
45
|
files:
|
|
@@ -55,7 +55,13 @@ files:
|
|
|
55
55
|
- tools/update-database.rb
|
|
56
56
|
homepage: https://docs.ruby-lang.org/ja/
|
|
57
57
|
licenses: []
|
|
58
|
-
metadata:
|
|
58
|
+
metadata:
|
|
59
|
+
bug_tracker_uri: https://github.com/rurema/bitclust/issues
|
|
60
|
+
documentation_uri: https://github.com/rurema/doctree/wiki
|
|
61
|
+
homepage_uri: https://docs.ruby-lang.org/ja/
|
|
62
|
+
source_code_uri: https://github.com/rurema/bitclust
|
|
63
|
+
github_repo: https://github.com/rurema/bitclust
|
|
64
|
+
wiki_uri: https://github.com/rurema/doctree/wiki
|
|
59
65
|
post_install_message:
|
|
60
66
|
rdoc_options: []
|
|
61
67
|
require_paths:
|
|
@@ -71,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
71
77
|
- !ruby/object:Gem::Version
|
|
72
78
|
version: '0'
|
|
73
79
|
requirements: []
|
|
74
|
-
rubygems_version: 3.
|
|
80
|
+
rubygems_version: 3.1.4
|
|
75
81
|
signing_key:
|
|
76
82
|
specification_version: 4
|
|
77
83
|
summary: BitClust is a rurema document processor.
|