random-words 1.0.6 → 1.0.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.
- checksums.yaml +4 -4
- data/.rspec +3 -3
- data/.rubocop.yml +4 -1
- data/.rubocop_todo.yml +313 -0
- data/.vscode/launch.json +26 -0
- data/CHANGELOG.md +34 -1
- data/Gemfile +15 -12
- data/Gemfile.lock +44 -27
- data/README.md +81 -37
- data/bin/randw +109 -89
- data/lib/random-words/array.rb +27 -7
- data/lib/random-words/config.rb +29 -23
- data/lib/random-words/generator.rb +42 -25
- data/lib/random-words/hash.rb +1 -1
- data/lib/random-words/html2markdown.rb +7 -7
- data/lib/random-words/lorem-markdown.rb +19 -20
- data/lib/random-words/number-to-word.rb +23 -21
- data/lib/random-words/source.rb +10 -9
- data/lib/random-words/string.rb +26 -21
- data/lib/random-words/table-cleanup.rb +3 -3
- data/lib/random-words/version.rb +1 -1
- data/lib/random-words/words/1984/names.txt +10 -72
- data/lib/random-words/words/1984/phrases.txt +16 -0
- data/lib/random-words/words/alice/names.txt +10 -74
- data/lib/random-words/words/alice/phrases.txt +16 -0
- data/lib/random-words/words/bacon/names.txt +53 -73
- data/lib/random-words/words/bacon/phrases.txt +20 -0
- data/lib/random-words/words/corporate/phrases.txt +29 -0
- data/lib/random-words/words/doctor/names.txt +18 -18
- data/lib/random-words/words/doctor/phrases.txt +29 -0
- data/lib/random-words/words/english/phrases.txt +29 -0
- data/lib/random-words/words/foulmouth/articles-plural.txt +3 -1
- data/lib/random-words/words/foulmouth/articles-singular.txt +2 -1
- data/lib/random-words/words/foulmouth/config.yml +1 -1
- data/lib/random-words/words/foulmouth/names.txt +80 -73
- data/lib/random-words/words/foulmouth/phrases.txt +30 -0
- data/lib/random-words/words/hipster/names.txt +72 -73
- data/lib/random-words/words/hipster/phrases.txt +21 -0
- data/lib/random-words/words/latin/names.txt +92 -73
- data/lib/random-words/words/latin/phrases.txt +16 -0
- data/lib/random-words/words/spanish/names.txt +55 -68
- data/lib/random-words/words/spanish/phrases.txt +31 -0
- data/lib/random-words/words/veggie/names.txt +92 -73
- data/lib/random-words/words/veggie/phrases.txt +20 -0
- data/lib/random-words.rb +3 -3
- data/random-words.gemspec +1 -1
- data/src/_README.md +81 -37
- metadata +16 -5
- data/.rspec_status +0 -148
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c87c310a16cb1a1afc9fbcc9603021da8c2cfcb27602fdfd03b1141b2f82e39e
|
4
|
+
data.tar.gz: ef2773e2c2f1d834ef4f16655eebda7376417c82f6f11762df47c311d0b06750
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb2bb1a14981fcfe5a2c2e278a781109ff60ca6fec79f19c48b2b102433169bc586f263159980f448d6ce9948cec73739c0e40d619c4453cbc664a2c993ec35a
|
7
|
+
data.tar.gz: c1c28313e3bd6a63247db6b7db039b9173fd918057f3c79b581f4d6014ba7d0b6ff8381e7493336fc43c6fb2f3af16a4c780dec3459f90a0a7eb5c2c0c64cd67
|
data/.rspec
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
--format
|
2
|
-
--color
|
1
|
+
--format progress
|
2
|
+
--color auto
|
3
3
|
--require spec_helper
|
4
|
-
|
4
|
+
-b
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,313 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2025-04-16 12:16:23 UTC using RuboCop version 1.75.2.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 1
|
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: 3
|
18
|
+
# This cop supports safe autocorrection (--autocorrect).
|
19
|
+
# Configuration parameters: EnforcedStyle, IndentOneStep, IndentationWidth.
|
20
|
+
# SupportedStyles: case, end
|
21
|
+
Layout/CaseIndentation:
|
22
|
+
Exclude:
|
23
|
+
- 'bin/randw'
|
24
|
+
|
25
|
+
# Offense count: 1
|
26
|
+
# This cop supports safe autocorrection (--autocorrect).
|
27
|
+
# Configuration parameters: EnforcedStyleAlignWith, Severity.
|
28
|
+
# SupportedStylesAlignWith: keyword, variable, start_of_line
|
29
|
+
Layout/EndAlignment:
|
30
|
+
Exclude:
|
31
|
+
- 'bin/randw'
|
32
|
+
|
33
|
+
# Offense count: 2
|
34
|
+
# This cop supports safe autocorrection (--autocorrect).
|
35
|
+
# Configuration parameters: Max, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
|
36
|
+
# URISchemes: http, https
|
37
|
+
Layout/LineLength:
|
38
|
+
Exclude:
|
39
|
+
- 'bin/randw'
|
40
|
+
- 'lib/random-words/generator.rb'
|
41
|
+
- 'random-words.gemspec'
|
42
|
+
|
43
|
+
# Offense count: 1
|
44
|
+
# This cop supports safe autocorrection (--autocorrect).
|
45
|
+
Lint/AmbiguousOperatorPrecedence:
|
46
|
+
Exclude:
|
47
|
+
- 'bin/randw'
|
48
|
+
|
49
|
+
# Offense count: 1
|
50
|
+
# Configuration parameters: IgnoreLiteralBranches, IgnoreConstantBranches, IgnoreDuplicateElseBranch.
|
51
|
+
Lint/DuplicateBranch:
|
52
|
+
Exclude:
|
53
|
+
- 'lib/random-words/string.rb'
|
54
|
+
|
55
|
+
# Offense count: 1
|
56
|
+
Lint/MixedRegexpCaptureTypes:
|
57
|
+
Exclude:
|
58
|
+
- 'lib/random-words/table-cleanup.rb'
|
59
|
+
|
60
|
+
# Offense count: 1
|
61
|
+
Lint/RescueException:
|
62
|
+
Exclude:
|
63
|
+
- 'lib/random-words/html2markdown.rb'
|
64
|
+
|
65
|
+
# Offense count: 2
|
66
|
+
Lint/StructNewOverride:
|
67
|
+
Exclude:
|
68
|
+
- 'lib/random-words/generator.rb'
|
69
|
+
|
70
|
+
# Offense count: 2
|
71
|
+
# This cop supports safe autocorrection (--autocorrect).
|
72
|
+
# Configuration parameters: AutoCorrect, IgnoreEmptyBlocks, AllowUnusedKeywordArguments.
|
73
|
+
Lint/UnusedBlockArgument:
|
74
|
+
Exclude:
|
75
|
+
- 'bin/randw'
|
76
|
+
|
77
|
+
# Offense count: 1
|
78
|
+
Lint/UselessConstantScoping:
|
79
|
+
Exclude:
|
80
|
+
- 'lib/random-words/generator.rb'
|
81
|
+
|
82
|
+
# Offense count: 12
|
83
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
|
84
|
+
Metrics/AbcSize:
|
85
|
+
Exclude:
|
86
|
+
- 'bin/randw'
|
87
|
+
- 'lib/random-words/config.rb'
|
88
|
+
- 'lib/random-words/generator.rb'
|
89
|
+
- 'lib/random-words/html2markdown.rb'
|
90
|
+
- 'lib/random-words/lorem-markdown.rb'
|
91
|
+
- 'lib/random-words/source.rb'
|
92
|
+
- 'lib/random-words/table-cleanup.rb'
|
93
|
+
|
94
|
+
# Offense count: 19
|
95
|
+
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
96
|
+
# AllowedMethods: refine
|
97
|
+
Metrics/BlockLength:
|
98
|
+
Max: 250
|
99
|
+
|
100
|
+
# Offense count: 1
|
101
|
+
# Configuration parameters: CountComments, Max, CountAsOne.
|
102
|
+
Metrics/ClassLength:
|
103
|
+
Exclude:
|
104
|
+
- 'lib/random-words/generator.rb'
|
105
|
+
|
106
|
+
# Offense count: 9
|
107
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
|
108
|
+
Metrics/CyclomaticComplexity:
|
109
|
+
Exclude:
|
110
|
+
- 'bin/randw'
|
111
|
+
- 'lib/random-words/array.rb'
|
112
|
+
- 'lib/random-words/config.rb'
|
113
|
+
- 'lib/random-words/generator.rb'
|
114
|
+
- 'lib/random-words/html2markdown.rb'
|
115
|
+
- 'lib/random-words/lorem-markdown.rb'
|
116
|
+
- 'lib/random-words/table-cleanup.rb'
|
117
|
+
|
118
|
+
# Offense count: 2
|
119
|
+
# Configuration parameters: CountComments, Max, CountAsOne, AllowedMethods, AllowedPatterns.
|
120
|
+
Metrics/MethodLength:
|
121
|
+
Exclude:
|
122
|
+
- 'bin/randw'
|
123
|
+
- 'lib/random-words/html2markdown.rb'
|
124
|
+
|
125
|
+
# Offense count: 1
|
126
|
+
# Configuration parameters: CountKeywordArgs, MaxOptionalParameters.
|
127
|
+
Metrics/ParameterLists:
|
128
|
+
Max: 7
|
129
|
+
|
130
|
+
# Offense count: 7
|
131
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
|
132
|
+
Metrics/PerceivedComplexity:
|
133
|
+
Exclude:
|
134
|
+
- 'lib/random-words/array.rb'
|
135
|
+
- 'lib/random-words/generator.rb'
|
136
|
+
- 'lib/random-words/html2markdown.rb'
|
137
|
+
- 'lib/random-words/lorem-markdown.rb'
|
138
|
+
- 'lib/random-words/table-cleanup.rb'
|
139
|
+
|
140
|
+
# Offense count: 3
|
141
|
+
# Configuration parameters: ExpectMatchingDefinition, CheckDefinitionPathHierarchy, CheckDefinitionPathHierarchyRoots, Regex, IgnoreExecutableScripts, AllowedAcronyms.
|
142
|
+
# CheckDefinitionPathHierarchyRoots: lib, spec, test, src
|
143
|
+
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
|
144
|
+
Naming/FileName:
|
145
|
+
Exclude:
|
146
|
+
- 'Rakefile.rb'
|
147
|
+
- 'lib/random-words/lorem-markdown.rb'
|
148
|
+
- 'lib/random-words/number-to-word.rb'
|
149
|
+
- 'lib/random-words/table-cleanup.rb'
|
150
|
+
|
151
|
+
# Offense count: 1
|
152
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
153
|
+
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
|
154
|
+
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
|
155
|
+
Naming/MemoizedInstanceVariableName:
|
156
|
+
Exclude:
|
157
|
+
- 'lib/random-words.rb'
|
158
|
+
|
159
|
+
# Offense count: 1
|
160
|
+
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
|
161
|
+
# AllowedNames: as, at, by, cc, db, id, if, in, io, ip, of, on, os, pp, to
|
162
|
+
Naming/MethodParameterName:
|
163
|
+
Exclude:
|
164
|
+
- 'lib/random-words/lorem-markdown.rb'
|
165
|
+
|
166
|
+
# Offense count: 2
|
167
|
+
# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers, AllowedPatterns.
|
168
|
+
# SupportedStyles: snake_case, normalcase, non_integer
|
169
|
+
# AllowedIdentifiers: TLS1_1, TLS1_2, capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339, x86_64
|
170
|
+
Naming/VariableNumber:
|
171
|
+
Exclude:
|
172
|
+
- 'bin/randw'
|
173
|
+
|
174
|
+
# Offense count: 4
|
175
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
176
|
+
Security/IoMethods:
|
177
|
+
Exclude:
|
178
|
+
- 'Rakefile'
|
179
|
+
- 'lib/random-words/source.rb'
|
180
|
+
|
181
|
+
# Offense count: 1
|
182
|
+
# Configuration parameters: AllowedConstants.
|
183
|
+
Style/Documentation:
|
184
|
+
Exclude:
|
185
|
+
- 'spec/**/*'
|
186
|
+
- 'test/**/*'
|
187
|
+
- 'lib/random-words/string.rb'
|
188
|
+
- 'bin/randw'
|
189
|
+
|
190
|
+
# Offense count: 3
|
191
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
192
|
+
# Configuration parameters: EnforcedStyle.
|
193
|
+
# SupportedStyles: always, always_true, never
|
194
|
+
Style/FrozenStringLiteralComment:
|
195
|
+
Exclude:
|
196
|
+
- '**/*.arb'
|
197
|
+
- '.irbrc'
|
198
|
+
- 'Rakefile'
|
199
|
+
- 'lib/random-words/version.rb'
|
200
|
+
|
201
|
+
# Offense count: 3
|
202
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
203
|
+
# Configuration parameters: AllowedReceivers.
|
204
|
+
# AllowedReceivers: Thread.current
|
205
|
+
Style/HashEachMethods:
|
206
|
+
Exclude:
|
207
|
+
- 'bin/randw'
|
208
|
+
- 'lib/random-words/string.rb'
|
209
|
+
|
210
|
+
# Offense count: 2
|
211
|
+
Style/MultilineBlockChain:
|
212
|
+
Exclude:
|
213
|
+
- 'lib/random-words/html2markdown.rb'
|
214
|
+
|
215
|
+
# Offense count: 1
|
216
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
217
|
+
# Configuration parameters: EnforcedStyle.
|
218
|
+
# SupportedStyles: literals, strict
|
219
|
+
Style/MutableConstant:
|
220
|
+
Exclude:
|
221
|
+
- 'lib/random-words/version.rb'
|
222
|
+
|
223
|
+
# Offense count: 1
|
224
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
225
|
+
# Configuration parameters: EnforcedStyle, AllowedMethods, AllowedPatterns.
|
226
|
+
# SupportedStyles: predicate, comparison
|
227
|
+
Style/NumericPredicate:
|
228
|
+
Exclude:
|
229
|
+
- 'spec/**/*'
|
230
|
+
- 'lib/random-words/generator.rb'
|
231
|
+
|
232
|
+
# Offense count: 1
|
233
|
+
Style/OptionalArguments:
|
234
|
+
Exclude:
|
235
|
+
- 'lib/random-words/number-to-word.rb'
|
236
|
+
|
237
|
+
# Offense count: 2
|
238
|
+
# Configuration parameters: AllowedMethods.
|
239
|
+
# AllowedMethods: respond_to_missing?
|
240
|
+
Style/OptionalBooleanParameter:
|
241
|
+
Exclude:
|
242
|
+
- 'lib/random-words.rb'
|
243
|
+
- 'lib/random-words/lorem-markdown.rb'
|
244
|
+
|
245
|
+
# Offense count: 4
|
246
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
247
|
+
# Configuration parameters: Methods.
|
248
|
+
Style/RedundantArgument:
|
249
|
+
Exclude:
|
250
|
+
- 'lib/random-words/lorem-markdown.rb'
|
251
|
+
- 'lib/random-words/source.rb'
|
252
|
+
- 'lib/random-words/string.rb'
|
253
|
+
|
254
|
+
# Offense count: 3
|
255
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
256
|
+
Style/RedundantInterpolation:
|
257
|
+
Exclude:
|
258
|
+
- 'bin/randw'
|
259
|
+
- 'lib/random-words/string.rb'
|
260
|
+
|
261
|
+
# Offense count: 3
|
262
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
263
|
+
Style/SlicingWithRange:
|
264
|
+
Exclude:
|
265
|
+
- 'lib/random-words/html2markdown.rb'
|
266
|
+
- 'lib/random-words/table-cleanup.rb'
|
267
|
+
|
268
|
+
# Offense count: 3
|
269
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
270
|
+
Style/StringChars:
|
271
|
+
Exclude:
|
272
|
+
- 'lib/random-words/string.rb'
|
273
|
+
|
274
|
+
# Offense count: 10
|
275
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
276
|
+
# Configuration parameters: Mode.
|
277
|
+
Style/StringConcatenation:
|
278
|
+
Exclude:
|
279
|
+
- 'lib/random-words/html2markdown.rb'
|
280
|
+
- 'lib/random-words/number-to-word.rb'
|
281
|
+
|
282
|
+
# Offense count: 111
|
283
|
+
# This cop supports safe autocorrection (--autocorrect).
|
284
|
+
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
|
285
|
+
# SupportedStyles: single_quotes, double_quotes
|
286
|
+
Style/StringLiterals:
|
287
|
+
Exclude:
|
288
|
+
- 'Gemfile'
|
289
|
+
- 'bin/randw'
|
290
|
+
|
291
|
+
# Offense count: 5
|
292
|
+
# This cop supports safe autocorrection (--autocorrect).
|
293
|
+
# Configuration parameters: EnforcedStyle.
|
294
|
+
# SupportedStyles: single_quotes, double_quotes
|
295
|
+
Style/StringLiteralsInInterpolation:
|
296
|
+
Exclude:
|
297
|
+
- 'bin/randw'
|
298
|
+
|
299
|
+
# Offense count: 1
|
300
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
301
|
+
# Configuration parameters: AllowMethodsWithArguments, AllowedMethods, AllowedPatterns, AllowComments.
|
302
|
+
# AllowedMethods: define_method
|
303
|
+
Style/SymbolProc:
|
304
|
+
Exclude:
|
305
|
+
- 'lib/random-words/string.rb'
|
306
|
+
|
307
|
+
# Offense count: 7
|
308
|
+
# This cop supports safe autocorrection (--autocorrect).
|
309
|
+
# Configuration parameters: EnforcedStyleForMultiline.
|
310
|
+
# SupportedStylesForMultiline: comma, consistent_comma, diff_comma, no_comma
|
311
|
+
Style/TrailingCommaInHashLiteral:
|
312
|
+
Exclude:
|
313
|
+
- 'bin/randw'
|
data/.vscode/launch.json
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
{
|
2
|
+
// Use IntelliSense to learn about possible attributes.
|
3
|
+
// Hover to view descriptions of existing attributes.
|
4
|
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
5
|
+
"version": "0.2.0",
|
6
|
+
"configurations": [
|
7
|
+
|
8
|
+
{
|
9
|
+
"type": "ruby_lsp",
|
10
|
+
"name": "Debug script",
|
11
|
+
"request": "launch",
|
12
|
+
"program": "ruby ${file}"
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"type": "ruby_lsp",
|
16
|
+
"name": "Debug test",
|
17
|
+
"request": "launch",
|
18
|
+
"program": "ruby -Itest ${relativeFile}"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"type": "ruby_lsp",
|
22
|
+
"name": "Attach debugger",
|
23
|
+
"request": "attach"
|
24
|
+
}
|
25
|
+
]
|
26
|
+
}
|
data/CHANGELOG.md
CHANGED
@@ -1,15 +1,48 @@
|
|
1
|
+
### 1.0.8
|
2
|
+
|
3
|
+
2025-04-17 13:37
|
4
|
+
|
5
|
+
#### FIXED
|
6
|
+
|
7
|
+
- Remove stupid debugging output
|
8
|
+
|
9
|
+
### 1.0.7
|
10
|
+
|
11
|
+
2025-04-17 04:10
|
12
|
+
|
13
|
+
#### NEW
|
14
|
+
|
15
|
+
- Add common phrases
|
16
|
+
|
17
|
+
#### IMPROVED
|
18
|
+
|
19
|
+
- 99.48% test coverage
|
20
|
+
- README updates
|
21
|
+
- #no_term removes leading punctuation
|
22
|
+
|
23
|
+
#### FIXED
|
24
|
+
|
25
|
+
- Generator#markdown method not returning String
|
26
|
+
|
1
27
|
### 1.0.6
|
2
28
|
|
3
|
-
2025-04-
|
29
|
+
2025-04-16 08:21
|
4
30
|
|
5
31
|
#### NEW
|
6
32
|
|
7
33
|
- Add dirtywords
|
8
34
|
- Markdown generator with table cleanup
|
9
35
|
|
36
|
+
#### IMPROVED
|
37
|
+
|
38
|
+
- Allow full names in name config file
|
39
|
+
- More appropriate names per language
|
40
|
+
|
10
41
|
#### FIXED
|
11
42
|
|
12
43
|
- Better use of conjunctions
|
44
|
+
- Names.txt splitting
|
45
|
+
- Decorate was on by default in Markdown/HTML output
|
13
46
|
|
14
47
|
### 1.0.5
|
15
48
|
|
data/Gemfile
CHANGED
@@ -1,18 +1,21 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
source
|
3
|
+
source "https://rubygems.org"
|
4
4
|
|
5
5
|
# Specify your gem's dependencies in snibbets.gemspec.
|
6
6
|
gemspec
|
7
7
|
|
8
|
-
gem
|
9
|
-
gem
|
10
|
-
gem
|
11
|
-
gem
|
12
|
-
gem
|
13
|
-
gem
|
14
|
-
gem
|
15
|
-
gem
|
16
|
-
gem
|
17
|
-
gem
|
18
|
-
gem
|
8
|
+
gem "awesome_print", "~> 1.9"
|
9
|
+
gem "bundler", "~> 2.0"
|
10
|
+
gem "gem-release", "~> 2.2"
|
11
|
+
gem "parse_gemspec-cli", "~> 1.0"
|
12
|
+
gem "rake", "~> 13.0"
|
13
|
+
gem "rdoc", "~> 6.3.4.1"
|
14
|
+
gem "rspec", "~> 3.0"
|
15
|
+
gem "simplecov", "~> 0.21"
|
16
|
+
gem "simplecov-console", "~> 0.9"
|
17
|
+
gem "standard", "~> 1.3"
|
18
|
+
gem "yard", "~> 0.9", ">= 0.9.36"
|
19
|
+
gem "rubocop", "~> 1.75.2"
|
20
|
+
gem "rubocop-performance", "~> 1.25.0"
|
21
|
+
gem "rubocop-rspec", "~> 2.0"
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
random-words (1.0.
|
4
|
+
random-words (1.0.8)
|
5
5
|
nokogiri (~> 1.12)
|
6
6
|
|
7
7
|
GEM
|
@@ -12,20 +12,24 @@ GEM
|
|
12
12
|
awesome_print (1.9.2)
|
13
13
|
diff-lcs (1.6.1)
|
14
14
|
docile (1.4.1)
|
15
|
-
gem-release (2.2.
|
15
|
+
gem-release (2.2.4)
|
16
16
|
json (2.10.2)
|
17
17
|
language_server-protocol (3.17.0.4)
|
18
18
|
lint_roller (1.1.0)
|
19
|
+
mini_portile2 (2.8.8)
|
19
20
|
multi_json (1.15.0)
|
20
|
-
nokogiri (1.18.
|
21
|
+
nokogiri (1.18.7)
|
22
|
+
mini_portile2 (~> 2.8.2)
|
21
23
|
racc (~> 1.4)
|
22
|
-
|
24
|
+
nokogiri (1.18.7-arm64-darwin)
|
25
|
+
racc (~> 1.4)
|
26
|
+
parallel (1.27.0)
|
23
27
|
parse_gemspec (1.0.0)
|
24
28
|
parse_gemspec-cli (1.0.0)
|
25
29
|
multi_json
|
26
30
|
parse_gemspec
|
27
31
|
thor
|
28
|
-
parser (3.3.
|
32
|
+
parser (3.3.8.0)
|
29
33
|
ast (~> 2.4.1)
|
30
34
|
racc
|
31
35
|
prism (1.4.0)
|
@@ -34,7 +38,6 @@ GEM
|
|
34
38
|
rake (13.2.1)
|
35
39
|
rdoc (6.3.4.1)
|
36
40
|
regexp_parser (2.10.0)
|
37
|
-
rexml (3.4.1)
|
38
41
|
rspec (3.13.0)
|
39
42
|
rspec-core (~> 3.13.0)
|
40
43
|
rspec-expectations (~> 3.13.0)
|
@@ -48,48 +51,59 @@ GEM
|
|
48
51
|
diff-lcs (>= 1.2.0, < 2.0)
|
49
52
|
rspec-support (~> 3.13.0)
|
50
53
|
rspec-support (3.13.2)
|
51
|
-
rubocop (1.
|
54
|
+
rubocop (1.75.2)
|
52
55
|
json (~> 2.3)
|
56
|
+
language_server-protocol (~> 3.17.0.2)
|
57
|
+
lint_roller (~> 1.1.0)
|
53
58
|
parallel (~> 1.10)
|
54
|
-
parser (>= 3.
|
59
|
+
parser (>= 3.3.0.2)
|
55
60
|
rainbow (>= 2.2.2, < 4.0)
|
56
|
-
regexp_parser (>=
|
57
|
-
|
58
|
-
rubocop-ast (>= 1.28.0, < 2.0)
|
61
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
62
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
59
63
|
ruby-progressbar (~> 1.7)
|
60
|
-
unicode-display_width (>= 2.4.0, <
|
61
|
-
rubocop-ast (1.
|
64
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
65
|
+
rubocop-ast (1.44.1)
|
62
66
|
parser (>= 3.3.7.2)
|
63
67
|
prism (~> 1.4)
|
64
|
-
rubocop-
|
65
|
-
|
66
|
-
rubocop
|
68
|
+
rubocop-capybara (2.22.1)
|
69
|
+
lint_roller (~> 1.1)
|
70
|
+
rubocop (~> 1.72, >= 1.72.1)
|
71
|
+
rubocop-performance (1.25.0)
|
72
|
+
lint_roller (~> 1.1)
|
73
|
+
rubocop (>= 1.75.0, < 2.0)
|
74
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
75
|
+
rubocop-rspec (2.20.0)
|
76
|
+
rubocop (~> 1.33)
|
77
|
+
rubocop-capybara (~> 2.17)
|
67
78
|
ruby-progressbar (1.13.0)
|
68
79
|
simplecov (0.22.0)
|
69
80
|
docile (~> 1.1)
|
70
81
|
simplecov-html (~> 0.11)
|
71
82
|
simplecov_json_formatter (~> 0.1)
|
72
|
-
simplecov-console (0.9.
|
83
|
+
simplecov-console (0.9.3)
|
73
84
|
ansi
|
74
85
|
simplecov
|
75
86
|
terminal-table
|
76
87
|
simplecov-html (0.13.1)
|
77
88
|
simplecov_json_formatter (0.1.4)
|
78
|
-
standard (1.
|
89
|
+
standard (1.49.0)
|
79
90
|
language_server-protocol (~> 3.17.0.2)
|
80
91
|
lint_roller (~> 1.0)
|
81
|
-
rubocop (~> 1.
|
92
|
+
rubocop (~> 1.75.2)
|
82
93
|
standard-custom (~> 1.0.0)
|
83
|
-
standard-performance (~> 1.
|
84
|
-
standard-custom (1.0.
|
85
|
-
lint_roller (~> 1.0)
|
86
|
-
standard-performance (1.1.0)
|
94
|
+
standard-performance (~> 1.8)
|
95
|
+
standard-custom (1.0.2)
|
87
96
|
lint_roller (~> 1.0)
|
88
|
-
rubocop
|
89
|
-
|
90
|
-
|
97
|
+
rubocop (~> 1.50)
|
98
|
+
standard-performance (1.8.0)
|
99
|
+
lint_roller (~> 1.1)
|
100
|
+
rubocop-performance (~> 1.25.0)
|
101
|
+
terminal-table (4.0.0)
|
102
|
+
unicode-display_width (>= 1.1.1, < 4)
|
91
103
|
thor (1.3.2)
|
92
|
-
unicode-display_width (
|
104
|
+
unicode-display_width (3.1.4)
|
105
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
106
|
+
unicode-emoji (4.0.4)
|
93
107
|
yard (0.9.37)
|
94
108
|
|
95
109
|
PLATFORMS
|
@@ -105,6 +119,9 @@ DEPENDENCIES
|
|
105
119
|
random-words!
|
106
120
|
rdoc (~> 6.3.4.1)
|
107
121
|
rspec (~> 3.0)
|
122
|
+
rubocop (~> 1.75.2)
|
123
|
+
rubocop-performance (~> 1.25.0)
|
124
|
+
rubocop-rspec (~> 2.0)
|
108
125
|
simplecov (~> 0.21)
|
109
126
|
simplecov-console (~> 0.9)
|
110
127
|
standard (~> 1.3)
|