charubya 0.2.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 901ed1801923d8ca4c69944df90569c9b4b0460b8e5b9b6ada8bbfba02f21320
4
+ data.tar.gz: a79556b349dd0584dba806f82c29de9d22e29f137cb661c4b4a4c4a6d99ea8ff
5
+ SHA512:
6
+ metadata.gz: b032aeee8ff8765273b910d8ed6901d67fd156613f32d2f6005626ca2073f2249f44d9fecded03c2b314811dc48d15f0fc9990cf235b8d9a2e755c6628a23703
7
+ data.tar.gz: d2ef8ea9600b43c66ce1c13eb28f9f08f0fe4b0f99e35c6fa04c6b2b160d5b5554f01e5bb4cfeb16ecd7673935bb0bac9291174d55e4f089fa29f8ac1232f7e2
data/.rubocop.yml ADDED
@@ -0,0 +1,218 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.0
3
+
4
+ Style/StringLiterals:
5
+ EnforcedStyle: double_quotes
6
+
7
+ Style/StringLiteralsInInterpolation:
8
+ EnforcedStyle: double_quotes
9
+
10
+ Gemspec/AddRuntimeDependency: # new in 1.65
11
+ Enabled: true
12
+ Gemspec/DeprecatedAttributeAssignment: # new in 1.30
13
+ Enabled: true
14
+ Gemspec/DevelopmentDependencies: # new in 1.44
15
+ Enabled: true
16
+ Gemspec/RequireMFA: # new in 1.23
17
+ Enabled: true
18
+ Layout/LineContinuationLeadingSpace: # new in 1.31
19
+ Enabled: true
20
+ Layout/LineContinuationSpacing: # new in 1.31
21
+ Enabled: true
22
+ Layout/LineEndStringConcatenationIndentation: # new in 1.18
23
+ Enabled: true
24
+ Layout/SpaceBeforeBrackets: # new in 1.7
25
+ Enabled: true
26
+ Lint/AmbiguousAssignment: # new in 1.7
27
+ Enabled: true
28
+ Lint/AmbiguousOperatorPrecedence: # new in 1.21
29
+ Enabled: true
30
+ Lint/AmbiguousRange: # new in 1.19
31
+ Enabled: true
32
+ Lint/ConstantOverwrittenInRescue: # new in 1.31
33
+ Enabled: true
34
+ Lint/DeprecatedConstants: # new in 1.8
35
+ Enabled: true
36
+ Lint/DuplicateBranch: # new in 1.3
37
+ Enabled: true
38
+ Lint/DuplicateMagicComment: # new in 1.37
39
+ Enabled: true
40
+ Lint/DuplicateMatchPattern: # new in 1.50
41
+ Enabled: true
42
+ Lint/DuplicateRegexpCharacterClassElement: # new in 1.1
43
+ Enabled: true
44
+ Lint/EmptyBlock: # new in 1.1
45
+ Enabled: true
46
+ Lint/EmptyClass: # new in 1.3
47
+ Enabled: true
48
+ Lint/EmptyInPattern: # new in 1.16
49
+ Enabled: true
50
+ Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
51
+ Enabled: true
52
+ Lint/ItWithoutArgumentsInBlock: # new in 1.59
53
+ Enabled: true
54
+ Lint/LambdaWithoutLiteralBlock: # new in 1.8
55
+ Enabled: true
56
+ Lint/LiteralAssignmentInCondition: # new in 1.58
57
+ Enabled: true
58
+ Lint/MixedCaseRange: # new in 1.53
59
+ Enabled: true
60
+ Lint/NoReturnInBeginEndBlocks: # new in 1.2
61
+ Enabled: true
62
+ Lint/NonAtomicFileOperation: # new in 1.31
63
+ Enabled: true
64
+ Lint/NumberedParameterAssignment: # new in 1.9
65
+ Enabled: true
66
+ Lint/OrAssignmentToConstant: # new in 1.9
67
+ Enabled: true
68
+ Lint/RedundantDirGlobSort: # new in 1.8
69
+ Enabled: true
70
+ Lint/RedundantRegexpQuantifiers: # new in 1.53
71
+ Enabled: true
72
+ Lint/RefinementImportMethods: # new in 1.27
73
+ Enabled: true
74
+ Lint/RequireRangeParentheses: # new in 1.32
75
+ Enabled: true
76
+ Lint/RequireRelativeSelfPath: # new in 1.22
77
+ Enabled: true
78
+ Lint/SymbolConversion: # new in 1.9
79
+ Enabled: true
80
+ Lint/ToEnumArguments: # new in 1.1
81
+ Enabled: true
82
+ Lint/TripleQuotes: # new in 1.9
83
+ Enabled: true
84
+ Lint/UnexpectedBlockArity: # new in 1.5
85
+ Enabled: true
86
+ Lint/UnmodifiedReduceAccumulator: # new in 1.1
87
+ Enabled: true
88
+ Lint/UselessRescue: # new in 1.43
89
+ Enabled: true
90
+ Lint/UselessRuby2Keywords: # new in 1.23
91
+ Enabled: true
92
+ Metrics/CollectionLiteralLength: # new in 1.47
93
+ Enabled: true
94
+ Naming/BlockForwarding: # new in 1.24
95
+ Enabled: true
96
+ Security/CompoundHash: # new in 1.28
97
+ Enabled: true
98
+ Security/IoMethods: # new in 1.22
99
+ Enabled: true
100
+ Style/ArgumentsForwarding: # new in 1.1
101
+ Enabled: true
102
+ Style/ArrayIntersect: # new in 1.40
103
+ Enabled: true
104
+ Style/CollectionCompact: # new in 1.2
105
+ Enabled: true
106
+ Style/ComparableClamp: # new in 1.44
107
+ Enabled: true
108
+ Style/ConcatArrayLiterals: # new in 1.41
109
+ Enabled: true
110
+ Style/DataInheritance: # new in 1.49
111
+ Enabled: true
112
+ Style/DirEmpty: # new in 1.48
113
+ Enabled: true
114
+ Style/DocumentDynamicEvalDefinition: # new in 1.1
115
+ Enabled: true
116
+ Style/EmptyHeredoc: # new in 1.32
117
+ Enabled: true
118
+ Style/EndlessMethod: # new in 1.8
119
+ Enabled: true
120
+ Style/EnvHome: # new in 1.29
121
+ Enabled: true
122
+ Style/ExactRegexpMatch: # new in 1.51
123
+ Enabled: true
124
+ Style/FetchEnvVar: # new in 1.28
125
+ Enabled: true
126
+ Style/FileEmpty: # new in 1.48
127
+ Enabled: true
128
+ Style/FileRead: # new in 1.24
129
+ Enabled: true
130
+ Style/FileWrite: # new in 1.24
131
+ Enabled: true
132
+ Style/HashConversion: # new in 1.10
133
+ Enabled: true
134
+ Style/HashExcept: # new in 1.7
135
+ Enabled: true
136
+ Style/IfWithBooleanLiteralBranches: # new in 1.9
137
+ Enabled: true
138
+ Style/InPatternThen: # new in 1.16
139
+ Enabled: true
140
+ Style/MagicCommentFormat: # new in 1.35
141
+ Enabled: true
142
+ Style/MapCompactWithConditionalBlock: # new in 1.30
143
+ Enabled: true
144
+ Style/MapIntoArray: # new in 1.63
145
+ Enabled: true
146
+ Style/MapToHash: # new in 1.24
147
+ Enabled: true
148
+ Style/MapToSet: # new in 1.42
149
+ Enabled: true
150
+ Style/MinMaxComparison: # new in 1.42
151
+ Enabled: true
152
+ Style/MultilineInPatternThen: # new in 1.16
153
+ Enabled: true
154
+ Style/NegatedIfElseCondition: # new in 1.2
155
+ Enabled: true
156
+ Style/NestedFileDirname: # new in 1.26
157
+ Enabled: true
158
+ Style/NilLambda: # new in 1.3
159
+ Enabled: true
160
+ Style/NumberedParameters: # new in 1.22
161
+ Enabled: true
162
+ Style/NumberedParametersLimit: # new in 1.22
163
+ Enabled: true
164
+ Style/ObjectThen: # new in 1.28
165
+ Enabled: true
166
+ Style/OpenStructUse: # new in 1.23
167
+ Enabled: true
168
+ Style/OperatorMethodCall: # new in 1.37
169
+ Enabled: true
170
+ Style/QuotedSymbols: # new in 1.16
171
+ Enabled: true
172
+ Style/RedundantArgument: # new in 1.4
173
+ Enabled: true
174
+ Style/RedundantArrayConstructor: # new in 1.52
175
+ Enabled: true
176
+ Style/RedundantConstantBase: # new in 1.40
177
+ Enabled: true
178
+ Style/RedundantCurrentDirectoryInPath: # new in 1.53
179
+ Enabled: true
180
+ Style/RedundantDoubleSplatHashBraces: # new in 1.41
181
+ Enabled: true
182
+ Style/RedundantEach: # new in 1.38
183
+ Enabled: true
184
+ Style/RedundantFilterChain: # new in 1.52
185
+ Enabled: true
186
+ Style/RedundantHeredocDelimiterQuotes: # new in 1.45
187
+ Enabled: true
188
+ Style/RedundantInitialize: # new in 1.27
189
+ Enabled: true
190
+ Style/RedundantLineContinuation: # new in 1.49
191
+ Enabled: true
192
+ Style/RedundantRegexpArgument: # new in 1.53
193
+ Enabled: true
194
+ Style/RedundantRegexpConstructor: # new in 1.52
195
+ Enabled: true
196
+ Style/RedundantSelfAssignmentBranch: # new in 1.19
197
+ Enabled: true
198
+ Style/RedundantStringEscape: # new in 1.37
199
+ Enabled: true
200
+ Style/ReturnNilInPredicateMethodDefinition: # new in 1.53
201
+ Enabled: true
202
+ Style/SelectByRegexp: # new in 1.22
203
+ Enabled: true
204
+ Style/SendWithLiteralMethodName: # new in 1.64
205
+ Enabled: true
206
+ Style/SingleLineDoEndBlock: # new in 1.57
207
+ Enabled: true
208
+ Style/StringChars: # new in 1.12
209
+ Enabled: true
210
+ Style/SuperArguments: # new in 1.64
211
+ Enabled: true
212
+ Style/SuperWithArgsParentheses: # new in 1.58
213
+ Enabled: true
214
+ Style/SwapValues: # new in 1.1
215
+ Enabled: true
216
+ Style/YAMLFileRead: # new in 1.53
217
+ Enabled: true
218
+
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2024-07-12
4
+
5
+ - Initial release