jkf 0.5.0 → 0.5.2
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/.envrc +1 -0
- data/.rubocop.yml +67 -0
- data/.rubocop_todo.yml +1 -454
- data/.yardopts +4 -0
- data/CHANGELOG.md +27 -0
- data/Gemfile +12 -11
- data/Guardfile +3 -3
- data/README.en.md +27 -23
- data/README.md +32 -21
- data/Rakefile +4 -4
- data/bench.rb +12 -0
- data/bin/console +4 -4
- data/jkf.gemspec +16 -15
- data/lib/jkf/converter/base.rb +12 -10
- data/lib/jkf/converter/csa.rb +141 -150
- data/lib/jkf/converter/ki2.rb +94 -92
- data/lib/jkf/converter/kif.rb +105 -99
- data/lib/jkf/converter/kifuable.rb +160 -160
- data/lib/jkf/converter.rb +6 -8
- data/lib/jkf/parser/base.rb +81 -95
- data/lib/jkf/parser/csa.rb +651 -654
- data/lib/jkf/parser/ki2.rb +331 -333
- data/lib/jkf/parser/kif.rb +467 -468
- data/lib/jkf/parser/kifuable.rb +511 -517
- data/lib/jkf/parser.rb +5 -7
- data/lib/jkf/version.rb +1 -2
- data/lib/jkf.rb +6 -6
- data/manifest.scm +3 -30
- data/po/all.pot +64 -48
- data/po/en.po +83 -82
- data/po/en.rdoc.po +580 -0
- metadata +18 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 365393f77c09c5ca61d79d520d1e8700449f66b9c5f8dd98f3c533d08b5205d6
|
4
|
+
data.tar.gz: de3a842b9d14005cfff7e9e4d41129b58d0fd9713b91def327e3e579c227498c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 290f7bd7bec9ccf530ae186a6ee5293827be45fb4b9c3e719d355044b00695d3656e62fd47111d7a7c031ed007d369b51f45518ba48b71a9e80b82dba2b093db
|
7
|
+
data.tar.gz: c6d9965c4d109352d9fab43dbc17647ded822e02ea24ff41755194c70f8523d7636b43b04df891e127d070bf235c93a63815749adda2b0780260f66778122442
|
data/.envrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
use guix
|
data/.rubocop.yml
CHANGED
@@ -2,7 +2,74 @@ inherit_from: .rubocop_todo.yml
|
|
2
2
|
|
3
3
|
AllCops:
|
4
4
|
NewCops: enable
|
5
|
+
DisabledByDefault: true
|
5
6
|
|
6
7
|
require:
|
7
8
|
- rubocop-rake
|
8
9
|
- rubocop-rspec
|
10
|
+
- rubocop-performance
|
11
|
+
|
12
|
+
Style/FrozenStringLiteralComment:
|
13
|
+
Enabled: true
|
14
|
+
EnforcedStyle: never
|
15
|
+
|
16
|
+
Layout/HashAlignment:
|
17
|
+
Enabled: true
|
18
|
+
EnforcedHashRocketStyle: key # キーが全角文字の場合が多いため
|
19
|
+
|
20
|
+
Lint/AssignmentInCondition:
|
21
|
+
Enabled: true
|
22
|
+
|
23
|
+
Lint/DuplicateBranch:
|
24
|
+
Enabled: false # FIXME
|
25
|
+
|
26
|
+
Lint/UnderscorePrefixedVariableName:
|
27
|
+
Enabled: true
|
28
|
+
|
29
|
+
Naming/AccessorMethodName:
|
30
|
+
Enabled: true
|
31
|
+
|
32
|
+
RSpec/DescribedClass:
|
33
|
+
Enabled: true
|
34
|
+
|
35
|
+
Style/ClassAndModuleChildren:
|
36
|
+
Enabled: true
|
37
|
+
|
38
|
+
Style/Encoding:
|
39
|
+
Enabled: true
|
40
|
+
|
41
|
+
Style/ExpandPathArguments:
|
42
|
+
Enabled: true
|
43
|
+
|
44
|
+
Style/HashLikeCase:
|
45
|
+
Enabled: true
|
46
|
+
|
47
|
+
Style/NegatedIf:
|
48
|
+
Enabled: true
|
49
|
+
|
50
|
+
Style/RedundantAssignment:
|
51
|
+
Enabled: true
|
52
|
+
|
53
|
+
Style/RedundantReturn:
|
54
|
+
Enabled: true
|
55
|
+
|
56
|
+
Style/RescueStandardError:
|
57
|
+
Enabled: true
|
58
|
+
|
59
|
+
Style/SafeNavigation:
|
60
|
+
Enabled: true
|
61
|
+
|
62
|
+
Style/StringLiterals:
|
63
|
+
Enabled: true
|
64
|
+
|
65
|
+
Style/GuardClause:
|
66
|
+
Enabled: true
|
67
|
+
|
68
|
+
Performance/StringInclude:
|
69
|
+
Enabled: true
|
70
|
+
|
71
|
+
Performance/RegexpMatch:
|
72
|
+
Enabled: true
|
73
|
+
|
74
|
+
Performance/MapCompact:
|
75
|
+
Enabled: true
|
data/.rubocop_todo.yml
CHANGED
@@ -1,460 +1,7 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2023-06-18 08:39:04 UTC using RuboCop version 1.48.1.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
|
-
|
9
|
-
# Offense count: 3
|
10
|
-
# This cop supports safe autocorrection (--autocorrect).
|
11
|
-
# Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation, Include.
|
12
|
-
# Include: **/*.gemfile, **/Gemfile, **/gems.rb
|
13
|
-
Bundler/OrderedGems:
|
14
|
-
Exclude:
|
15
|
-
- 'Gemfile'
|
16
|
-
|
17
|
-
# Offense count: 5
|
18
|
-
# This cop supports safe autocorrection (--autocorrect).
|
19
|
-
Layout/EmptyLineAfterGuardClause:
|
20
|
-
Exclude:
|
21
|
-
- 'lib/jkf.rb'
|
22
|
-
- 'lib/jkf/converter/csa.rb'
|
23
|
-
- 'lib/jkf/parser/base.rb'
|
24
|
-
- 'lib/jkf/parser/ki2.rb'
|
25
|
-
- 'lib/jkf/parser/kif.rb'
|
26
|
-
|
27
|
-
# Offense count: 1
|
28
|
-
# This cop supports safe autocorrection (--autocorrect).
|
29
|
-
Layout/EmptyLineAfterMagicComment:
|
30
|
-
Exclude:
|
31
|
-
- 'jkf.gemspec'
|
32
|
-
|
33
|
-
# Offense count: 2
|
34
|
-
# This cop supports safe autocorrection (--autocorrect).
|
35
|
-
# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
|
36
|
-
# SupportedHashRocketStyles: key, separator, table
|
37
|
-
# SupportedColonStyles: key, separator, table
|
38
|
-
# SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
|
39
|
-
Layout/HashAlignment:
|
40
|
-
Exclude:
|
41
|
-
- 'spec/jkf/converter/kif_spec.rb'
|
42
|
-
|
43
|
-
# Offense count: 35
|
44
|
-
# This cop supports safe autocorrection (--autocorrect).
|
45
|
-
Layout/HeredocIndentation:
|
46
|
-
Exclude:
|
47
|
-
- 'spec/jkf/converter/kif_spec.rb'
|
48
|
-
- 'spec/jkf/parser/csa_spec.rb'
|
49
|
-
- 'spec/jkf/parser/ki2_spec.rb'
|
50
|
-
- 'spec/jkf/parser/kif_spec.rb'
|
51
|
-
|
52
|
-
# Offense count: 2
|
53
|
-
# This cop supports safe autocorrection (--autocorrect).
|
54
|
-
# Configuration parameters: EnforcedStyle.
|
55
|
-
# SupportedStyles: symmetrical, new_line, same_line
|
56
|
-
Layout/MultilineHashBraceLayout:
|
57
|
-
Exclude:
|
58
|
-
- 'spec/jkf/parser/ki2_spec.rb'
|
59
|
-
- 'spec/jkf/parser/kif_spec.rb'
|
60
|
-
|
61
|
-
# Offense count: 10
|
62
|
-
# This cop supports safe autocorrection (--autocorrect).
|
63
|
-
# Configuration parameters: EnforcedStyle.
|
64
|
-
# SupportedStyles: require_no_space, require_space
|
65
|
-
Layout/SpaceInLambdaLiteral:
|
66
|
-
Exclude:
|
67
|
-
- 'lib/jkf/parser/csa.rb'
|
68
|
-
- 'lib/jkf/parser/ki2.rb'
|
69
|
-
|
70
|
-
# Offense count: 58
|
71
|
-
# This cop supports safe autocorrection (--autocorrect).
|
72
|
-
# Configuration parameters: AllowInHeredoc.
|
73
|
-
Layout/TrailingWhitespace:
|
74
|
-
Exclude:
|
75
|
-
- 'lib/jkf/converter/base.rb'
|
76
|
-
- 'lib/jkf/parser/kifuable.rb'
|
77
|
-
- 'spec/jkf/converter/kif_spec.rb'
|
78
|
-
- 'spec/jkf/parser/csa_spec.rb'
|
79
|
-
- 'spec/jkf/parser/kif_spec.rb'
|
80
|
-
|
81
|
-
# Offense count: 2
|
82
|
-
# Configuration parameters: AllowSafeAssignment.
|
83
|
-
Lint/AssignmentInCondition:
|
84
|
-
Exclude:
|
85
|
-
- 'lib/jkf/converter/kifuable.rb'
|
86
|
-
- 'lib/jkf/parser/base.rb'
|
87
|
-
|
88
|
-
# Offense count: 22
|
89
|
-
# Configuration parameters: IgnoreLiteralBranches, IgnoreConstantBranches.
|
90
|
-
Lint/DuplicateBranch:
|
91
|
-
Exclude:
|
92
|
-
- 'lib/jkf/parser/csa.rb'
|
93
|
-
- 'lib/jkf/parser/ki2.rb'
|
94
|
-
- 'lib/jkf/parser/kif.rb'
|
95
|
-
- 'lib/jkf/parser/kifuable.rb'
|
96
|
-
|
97
|
-
# Offense count: 2
|
98
|
-
# Configuration parameters: AllowKeywordBlockArguments.
|
99
|
-
Lint/UnderscorePrefixedVariableName:
|
100
|
-
Exclude:
|
101
|
-
- 'lib/jkf/parser/kif.rb'
|
102
|
-
- 'lib/jkf/parser/kifuable.rb'
|
103
|
-
|
104
|
-
# Offense count: 1
|
105
|
-
# This cop supports safe autocorrection (--autocorrect).
|
106
|
-
Lint/UnifiedInteger:
|
107
|
-
Exclude:
|
108
|
-
- 'lib/jkf/parser/kif.rb'
|
109
|
-
|
110
|
-
# Offense count: 51
|
111
|
-
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
|
112
|
-
Metrics/AbcSize:
|
113
|
-
Max: 50
|
114
|
-
|
115
|
-
# Offense count: 13
|
116
|
-
# Configuration parameters: CountBlocks.
|
117
|
-
Metrics/BlockNesting:
|
118
|
-
Max: 8
|
119
|
-
|
120
|
-
# Offense count: 5
|
121
|
-
# Configuration parameters: CountComments, CountAsOne.
|
122
|
-
Metrics/ClassLength:
|
123
|
-
Max: 738
|
124
|
-
|
125
|
-
# Offense count: 21
|
126
|
-
# Configuration parameters: IgnoredMethods.
|
127
|
-
Metrics/CyclomaticComplexity:
|
128
|
-
Max: 18
|
129
|
-
|
130
|
-
# Offense count: 91
|
131
|
-
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
132
|
-
Metrics/MethodLength:
|
133
|
-
Max: 64
|
134
|
-
|
135
|
-
# Offense count: 2
|
136
|
-
# Configuration parameters: CountComments, CountAsOne.
|
137
|
-
Metrics/ModuleLength:
|
138
|
-
Max: 558
|
139
|
-
|
140
|
-
# Offense count: 1
|
141
|
-
# Configuration parameters: CountKeywordArgs, MaxOptionalParameters.
|
142
|
-
Metrics/ParameterLists:
|
143
|
-
Max: 6
|
144
|
-
|
145
|
-
# Offense count: 31
|
146
|
-
# Configuration parameters: IgnoredMethods.
|
147
|
-
Metrics/PerceivedComplexity:
|
148
|
-
Max: 24
|
149
|
-
|
150
|
-
# Offense count: 1
|
151
|
-
Naming/AccessorMethodName:
|
152
|
-
Exclude:
|
153
|
-
- 'lib/jkf/parser/csa.rb'
|
154
|
-
|
155
|
-
# Offense count: 34
|
156
|
-
# Configuration parameters: ForbiddenDelimiters.
|
157
|
-
# ForbiddenDelimiters: (?-mix:(^|\s)(EO[A-Z]{1}|END)(\s|$))
|
158
|
-
Naming/HeredocDelimiterNaming:
|
159
|
-
Exclude:
|
160
|
-
- 'spec/jkf/parser/csa_spec.rb'
|
161
|
-
- 'spec/jkf/parser/ki2_spec.rb'
|
162
|
-
- 'spec/jkf/parser/kif_spec.rb'
|
163
|
-
|
164
|
-
# Offense count: 17
|
165
|
-
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
|
166
|
-
# AllowedNames: at, by, db, id, in, io, ip, of, on, os, pp, to
|
167
|
-
Naming/MethodParameterName:
|
168
|
-
Exclude:
|
169
|
-
- 'lib/jkf/converter/kif.rb'
|
170
|
-
- 'lib/jkf/converter/kifuable.rb'
|
171
|
-
- 'lib/jkf/parser/ki2.rb'
|
172
|
-
- 'lib/jkf/parser/kif.rb'
|
173
|
-
- 'lib/jkf/parser/kifuable.rb'
|
174
|
-
- 'spec/spec_helper.rb'
|
175
|
-
|
176
|
-
# Offense count: 43
|
177
|
-
# Configuration parameters: Prefixes.
|
178
|
-
# Prefixes: when, with, without
|
179
|
-
RSpec/ContextWording:
|
180
|
-
Exclude:
|
181
|
-
- 'spec/jkf/parser/csa_spec.rb'
|
182
|
-
- 'spec/jkf/parser/ki2_spec.rb'
|
183
|
-
- 'spec/jkf/parser/kif_spec.rb'
|
184
|
-
|
185
|
-
# Offense count: 8
|
186
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
187
|
-
# Configuration parameters: SkipBlocks, EnforcedStyle.
|
188
|
-
# SupportedStyles: described_class, explicit
|
189
|
-
RSpec/DescribedClass:
|
190
|
-
Exclude:
|
191
|
-
- 'spec/jkf/converter/csa_spec.rb'
|
192
|
-
- 'spec/jkf/converter/ki2_spec.rb'
|
193
|
-
- 'spec/jkf/converter/kif_spec.rb'
|
194
|
-
- 'spec/jkf/parser/csa_spec.rb'
|
195
|
-
- 'spec/jkf/parser/ki2_spec.rb'
|
196
|
-
- 'spec/jkf/parser/kif_spec.rb'
|
197
|
-
- 'spec/jkf_spec.rb'
|
198
|
-
|
199
|
-
# Offense count: 45
|
200
|
-
# Configuration parameters: CountAsOne.
|
201
|
-
RSpec/ExampleLength:
|
202
|
-
Max: 51
|
203
|
-
|
204
|
-
# Offense count: 1
|
205
|
-
RSpec/MultipleExpectations:
|
206
|
-
Max: 2
|
207
|
-
|
208
|
-
# Offense count: 1
|
209
|
-
# Configuration parameters: AllowSubject.
|
210
|
-
RSpec/MultipleMemoizedHelpers:
|
211
|
-
Max: 6
|
212
|
-
|
213
|
-
# Offense count: 48
|
214
|
-
# Configuration parameters: IgnoreSharedExamples.
|
215
|
-
RSpec/NamedSubject:
|
216
|
-
Exclude:
|
217
|
-
- 'spec/jkf/converter/kif_spec.rb'
|
218
|
-
- 'spec/jkf/parser/csa_spec.rb'
|
219
|
-
- 'spec/jkf/parser/ki2_spec.rb'
|
220
|
-
- 'spec/jkf/parser/kif_spec.rb'
|
221
|
-
- 'spec/jkf_spec.rb'
|
222
|
-
|
223
|
-
# Offense count: 8
|
224
|
-
RSpec/NestedGroups:
|
225
|
-
Max: 4
|
226
|
-
|
227
|
-
# Offense count: 2
|
228
|
-
# This cop supports safe autocorrection (--autocorrect).
|
229
|
-
# Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, IgnoredMethods, AllowBracesOnProceduralOneLiners, BracesRequiredMethods.
|
230
|
-
# SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces
|
231
|
-
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
|
232
|
-
# FunctionalMethods: let, let!, subject, watch
|
233
|
-
# IgnoredMethods: lambda, proc, it
|
234
|
-
Style/BlockDelimiters:
|
235
|
-
Exclude:
|
236
|
-
- 'spec/jkf/converter/kif_spec.rb'
|
237
|
-
|
238
|
-
# Offense count: 10
|
239
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
240
|
-
# Configuration parameters: EnforcedStyle.
|
241
|
-
# SupportedStyles: nested, compact
|
242
|
-
Style/ClassAndModuleChildren:
|
243
|
-
Exclude:
|
244
|
-
- 'lib/jkf/converter/base.rb'
|
245
|
-
- 'lib/jkf/converter/csa.rb'
|
246
|
-
- 'lib/jkf/converter/ki2.rb'
|
247
|
-
- 'lib/jkf/converter/kif.rb'
|
248
|
-
- 'lib/jkf/converter/kifuable.rb'
|
249
|
-
- 'lib/jkf/parser/base.rb'
|
250
|
-
- 'lib/jkf/parser/csa.rb'
|
251
|
-
- 'lib/jkf/parser/ki2.rb'
|
252
|
-
- 'lib/jkf/parser/kif.rb'
|
253
|
-
- 'lib/jkf/parser/kifuable.rb'
|
254
|
-
|
255
|
-
# Offense count: 1
|
256
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
257
|
-
# Configuration parameters: EnforcedStyle.
|
258
|
-
# SupportedStyles: allowed_in_returns, forbidden
|
259
|
-
Style/DoubleNegation:
|
260
|
-
Exclude:
|
261
|
-
- 'lib/jkf/parser/kif.rb'
|
262
|
-
|
263
|
-
# Offense count: 4
|
264
|
-
# This cop supports safe autocorrection (--autocorrect).
|
265
|
-
Style/Encoding:
|
266
|
-
Exclude:
|
267
|
-
- 'jkf.gemspec'
|
268
|
-
- 'lib/jkf/parser/csa.rb'
|
269
|
-
- 'lib/jkf/parser/ki2.rb'
|
270
|
-
- 'lib/jkf/parser/kif.rb'
|
271
|
-
|
272
|
-
# Offense count: 2
|
273
|
-
# This cop supports safe autocorrection (--autocorrect).
|
274
|
-
Style/ExpandPathArguments:
|
275
|
-
Exclude:
|
276
|
-
- 'jkf.gemspec'
|
277
|
-
- 'spec/spec_helper.rb'
|
278
|
-
|
279
|
-
# Offense count: 6
|
280
|
-
# This cop supports safe autocorrection (--autocorrect).
|
281
|
-
# Configuration parameters: EnforcedStyle.
|
282
|
-
# SupportedStyles: format, sprintf, percent
|
283
|
-
Style/FormatString:
|
284
|
-
Exclude:
|
285
|
-
- 'lib/jkf/converter/csa.rb'
|
286
|
-
- 'lib/jkf/converter/kif.rb'
|
287
|
-
- 'lib/jkf/converter/kifuable.rb'
|
288
|
-
|
289
|
-
# Offense count: 9
|
290
|
-
# This cop supports safe autocorrection (--autocorrect).
|
291
|
-
# Configuration parameters: MaxUnannotatedPlaceholdersAllowed, IgnoredMethods.
|
292
|
-
# SupportedStyles: annotated, template, unannotated
|
293
|
-
Style/FormatStringToken:
|
294
|
-
EnforcedStyle: unannotated
|
295
|
-
|
296
|
-
# Offense count: 27
|
297
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
298
|
-
# Configuration parameters: EnforcedStyle.
|
299
|
-
# SupportedStyles: always, always_true, never
|
300
|
-
Style/FrozenStringLiteralComment:
|
301
|
-
Enabled: false
|
302
|
-
|
303
|
-
# Offense count: 1
|
304
|
-
# Configuration parameters: MinBodyLength, AllowConsecutiveConditionals.
|
305
|
-
Style/GuardClause:
|
306
|
-
Exclude:
|
307
|
-
- 'lib/jkf/parser/base.rb'
|
308
|
-
|
309
|
-
# Offense count: 3
|
310
|
-
# Configuration parameters: MinBranchesCount.
|
311
|
-
Style/HashLikeCase:
|
312
|
-
Exclude:
|
313
|
-
- 'lib/jkf/converter/csa.rb'
|
314
|
-
- 'lib/jkf/converter/kif.rb'
|
315
|
-
- 'lib/jkf/converter/kifuable.rb'
|
316
|
-
|
317
|
-
# Offense count: 4
|
318
|
-
# This cop supports safe autocorrection (--autocorrect).
|
319
|
-
Style/IfUnlessModifier:
|
320
|
-
Exclude:
|
321
|
-
- 'lib/jkf/converter/csa.rb'
|
322
|
-
- 'lib/jkf/parser/kif.rb'
|
323
|
-
|
324
|
-
# Offense count: 10
|
325
|
-
# This cop supports safe autocorrection (--autocorrect).
|
326
|
-
# Configuration parameters: EnforcedStyle.
|
327
|
-
# SupportedStyles: line_count_dependent, lambda, literal
|
328
|
-
Style/Lambda:
|
329
|
-
Exclude:
|
330
|
-
- 'lib/jkf/parser/csa.rb'
|
331
|
-
- 'lib/jkf/parser/ki2.rb'
|
332
|
-
|
333
|
-
# Offense count: 6
|
334
|
-
# This cop supports safe autocorrection (--autocorrect).
|
335
|
-
# Configuration parameters: EnforcedStyle.
|
336
|
-
# SupportedStyles: both, prefix, postfix
|
337
|
-
Style/NegatedIf:
|
338
|
-
Exclude:
|
339
|
-
- 'lib/jkf/converter/ki2.rb'
|
340
|
-
- 'lib/jkf/converter/kif.rb'
|
341
|
-
- 'lib/jkf/parser/csa.rb'
|
342
|
-
- 'lib/jkf/parser/ki2.rb'
|
343
|
-
- 'lib/jkf/parser/kif.rb'
|
344
|
-
|
345
|
-
# Offense count: 1
|
346
|
-
# This cop supports safe autocorrection (--autocorrect).
|
347
|
-
# Configuration parameters: EnforcedStyle, MinBodyLength.
|
348
|
-
# SupportedStyles: skip_modifier_ifs, always
|
349
|
-
Style/Next:
|
350
|
-
Exclude:
|
351
|
-
- 'lib/jkf/converter/kifuable.rb'
|
352
|
-
|
353
|
-
# Offense count: 10
|
354
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
355
|
-
# Configuration parameters: EnforcedStyle, IgnoredMethods.
|
356
|
-
# SupportedStyles: predicate, comparison
|
357
|
-
Style/NumericPredicate:
|
358
|
-
Exclude:
|
359
|
-
- 'spec/**/*'
|
360
|
-
- 'lib/jkf/converter/csa.rb'
|
361
|
-
- 'lib/jkf/converter/ki2.rb'
|
362
|
-
- 'lib/jkf/converter/kifuable.rb'
|
363
|
-
- 'lib/jkf/parser/base.rb'
|
364
|
-
- 'lib/jkf/parser/csa.rb'
|
365
|
-
|
366
|
-
# Offense count: 3
|
367
|
-
# This cop supports safe autocorrection (--autocorrect).
|
368
|
-
# Configuration parameters: PreferredDelimiters.
|
369
|
-
Style/PercentLiteralDelimiters:
|
370
|
-
Exclude:
|
371
|
-
- 'Guardfile'
|
372
|
-
- 'lib/jkf/parser/kifuable.rb'
|
373
|
-
|
374
|
-
# Offense count: 5
|
375
|
-
# This cop supports safe autocorrection (--autocorrect).
|
376
|
-
Style/RedundantAssignment:
|
377
|
-
Exclude:
|
378
|
-
- 'lib/jkf/parser/csa.rb'
|
379
|
-
- 'lib/jkf/parser/ki2.rb'
|
380
|
-
- 'lib/jkf/parser/kif.rb'
|
381
|
-
|
382
|
-
# Offense count: 1
|
383
|
-
# This cop supports safe autocorrection (--autocorrect).
|
384
|
-
# Configuration parameters: AllowMultipleReturnValues.
|
385
|
-
Style/RedundantReturn:
|
386
|
-
Exclude:
|
387
|
-
- 'lib/jkf/parser/base.rb'
|
388
|
-
|
389
|
-
# Offense count: 1
|
390
|
-
# This cop supports safe autocorrection (--autocorrect).
|
391
|
-
# Configuration parameters: EnforcedStyle, AllowInnerSlashes.
|
392
|
-
# SupportedStyles: slashes, percent_r, mixed
|
393
|
-
Style/RegexpLiteral:
|
394
|
-
Exclude:
|
395
|
-
- 'Guardfile'
|
396
|
-
|
397
|
-
# Offense count: 1
|
398
|
-
# This cop supports safe autocorrection (--autocorrect).
|
399
|
-
# Configuration parameters: EnforcedStyle.
|
400
|
-
# SupportedStyles: implicit, explicit
|
401
|
-
Style/RescueStandardError:
|
402
|
-
Exclude:
|
403
|
-
- 'lib/jkf.rb'
|
404
|
-
|
405
|
-
# Offense count: 2
|
406
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
407
|
-
# Configuration parameters: ConvertCodeThatCanStartToReturnNil, AllowedMethods, MaxChainLength.
|
408
|
-
# AllowedMethods: present?, blank?, presence, try, try!
|
409
|
-
Style/SafeNavigation:
|
410
|
-
Exclude:
|
411
|
-
- 'lib/jkf/converter/kifuable.rb'
|
412
|
-
- 'lib/jkf/parser/kif.rb'
|
413
|
-
|
414
|
-
# Offense count: 1
|
415
|
-
# This cop supports safe autocorrection (--autocorrect).
|
416
|
-
# Configuration parameters: AllowIfMethodIsEmpty.
|
417
|
-
Style/SingleLineMethods:
|
418
|
-
Exclude:
|
419
|
-
- 'lib/jkf/parser/base.rb'
|
420
|
-
|
421
|
-
# Offense count: 4
|
422
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
423
|
-
Style/SlicingWithRange:
|
424
|
-
Exclude:
|
425
|
-
- 'lib/jkf/parser/ki2.rb'
|
426
|
-
- 'lib/jkf/parser/kif.rb'
|
427
|
-
|
428
|
-
# Offense count: 14
|
429
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
430
|
-
# Configuration parameters: Mode.
|
431
|
-
Style/StringConcatenation:
|
432
|
-
Exclude:
|
433
|
-
- 'lib/jkf/converter/csa.rb'
|
434
|
-
- 'lib/jkf/converter/ki2.rb'
|
435
|
-
- 'lib/jkf/converter/kif.rb'
|
436
|
-
- 'lib/jkf/converter/kifuable.rb'
|
437
|
-
- 'lib/jkf/parser/kif.rb'
|
438
|
-
- 'spec/jkf/converter/csa_spec.rb'
|
439
|
-
|
440
|
-
# Offense count: 4001
|
441
|
-
# This cop supports safe autocorrection (--autocorrect).
|
442
|
-
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
|
443
|
-
# SupportedStyles: single_quotes, double_quotes
|
444
|
-
Style/StringLiterals:
|
445
|
-
Enabled: false
|
446
|
-
|
447
|
-
# Offense count: 5
|
448
|
-
# This cop supports safe autocorrection (--autocorrect).
|
449
|
-
# Configuration parameters: WordRegex.
|
450
|
-
# SupportedStyles: percent, brackets
|
451
|
-
Style/WordArray:
|
452
|
-
EnforcedStyle: percent
|
453
|
-
MinSize: 3
|
454
|
-
|
455
|
-
# Offense count: 16
|
456
|
-
# This cop supports safe autocorrection (--autocorrect).
|
457
|
-
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
|
458
|
-
# URISchemes: http, https
|
459
|
-
Layout/LineLength:
|
460
|
-
Max: 122
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## 0.5.2 - 2024-10-26
|
11
|
+
|
12
|
+
This is a maintenance release.
|
13
|
+
|
14
|
+
### Others
|
15
|
+
|
16
|
+
* Lint with RuboCop performance plugin
|
17
|
+
* Update documentation
|
18
|
+
* Update gem dependencies; RuboCop and RuboCop RSpec.
|
19
|
+
|
20
|
+
## [0.5.1] - 2023-06-24
|
21
|
+
|
22
|
+
### Changed
|
23
|
+
|
24
|
+
* Update required Ruby version to 3.0 (security fix only stable
|
25
|
+
version), although the library itself might works with older Ruby
|
26
|
+
versions.
|
27
|
+
|
28
|
+
### Others
|
29
|
+
|
30
|
+
* Refactor parser with StringScanner. This makes parser approx. 5x
|
31
|
+
faster.
|
32
|
+
* Fixed link to json-kifu-format
|
33
|
+
* Remove Inch CI link on readmes
|
34
|
+
* Lint Ruby sources
|
35
|
+
* Add benchmark script
|
36
|
+
|
10
37
|
## [0.5.0] - 2023-06-18
|
11
38
|
|
12
39
|
### Changed
|
data/Gemfile
CHANGED
@@ -1,21 +1,22 @@
|
|
1
|
-
source
|
1
|
+
source 'https://rubygems.org'
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
gem
|
5
|
+
gem 'rake'
|
6
6
|
|
7
7
|
group :development do
|
8
|
-
gem
|
9
|
-
gem
|
8
|
+
gem 'redcarpet'
|
9
|
+
gem 'yard'
|
10
10
|
|
11
|
-
gem
|
12
|
-
gem
|
13
|
-
gem
|
14
|
-
gem
|
11
|
+
gem 'guard-rubocop'
|
12
|
+
gem 'rubocop', '~> 1.63'
|
13
|
+
gem 'rubocop-performance'
|
14
|
+
gem 'rubocop-rake', '~> 0.6.0'
|
15
|
+
gem 'rubocop-rspec', '~> 3.1'
|
15
16
|
end
|
16
17
|
|
17
18
|
group :test do
|
18
|
-
gem
|
19
|
-
gem
|
20
|
-
gem
|
19
|
+
gem 'guard-rspec'
|
20
|
+
gem 'rspec', '~> 3.0'
|
21
|
+
gem 'simplecov'
|
21
22
|
end
|
data/Guardfile
CHANGED
@@ -3,8 +3,8 @@ scope(groups: %w(specs))
|
|
3
3
|
directories %w(spec lib)
|
4
4
|
|
5
5
|
group :specs, halt_on_fail: true do
|
6
|
-
guard :rspec, cmd:
|
7
|
-
require
|
6
|
+
guard :rspec, cmd: 'bundle exec rspec', failed_mode: :keep do
|
7
|
+
require 'guard/rspec/dsl'
|
8
8
|
dsl = Guard::RSpec::Dsl.new(self)
|
9
9
|
|
10
10
|
# RSpec files
|
@@ -18,7 +18,7 @@ group :specs, halt_on_fail: true do
|
|
18
18
|
dsl.watch_spec_files_for(ruby.lib_files)
|
19
19
|
end
|
20
20
|
|
21
|
-
guard :rubocop, all_on_start: false, cli:
|
21
|
+
guard :rubocop, all_on_start: false, cli: '--rails' do
|
22
22
|
watch(%r{.+\.rb$}) { |m| m[0] }
|
23
23
|
watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
|
24
24
|
end
|