rspec-loop 0.1.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: f52b2514234359848401c2976cef3d777b18c1b70ec118f7b387e426e53b1dee
4
+ data.tar.gz: e9fc70a1f959ae43b49273245fb8f06f5f9020aa6180a2b1506e5962dc1f4fca
5
+ SHA512:
6
+ metadata.gz: c062752f126102aea062b3938ef9609348034366382fd0cf5c7800f671ca09a7f7f9edf5139a38ebca66608d5d48548b5fa8586bbdea11f91d363210b84c0521
7
+ data.tar.gz: 83d38c03a5d02a50325bd3fff343f2ad92f0e684e0340972d623a7790384732d7f7bdf63a06deb96b1cfdd0f3216e48d339332dbcceb1bbac89a4926495c30ea
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,530 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.2
3
+ SuggestExtensions: false
4
+ Exclude:
5
+ - "Appraisals"
6
+ - "gemfiles/**.gemfile"
7
+ - "vendor/**/*"
8
+
9
+ # plugins:
10
+ # - rubocop-performance
11
+ # - rubocop-rspec
12
+
13
+ # Core
14
+
15
+ Gemspec/AddRuntimeDependency: # new in 1.65
16
+ Enabled: true
17
+
18
+ Gemspec/AttributeAssignment: # new in 1.77
19
+ Enabled: true
20
+
21
+ Gemspec/DeprecatedAttributeAssignment: # new in 1.30
22
+ Enabled: true
23
+
24
+ Gemspec/DevelopmentDependencies: # new in 1.44
25
+ Enabled: true
26
+ EnforcedStyle: gemspec
27
+
28
+ Gemspec/RequireMFA: # new in 1.23
29
+ Enabled: true
30
+
31
+ Layout/ArgumentAlignment:
32
+ EnforcedStyle: with_fixed_indentation
33
+
34
+ Layout/LineContinuationLeadingSpace: # new in 1.31
35
+ Enabled: true
36
+
37
+ Layout/LineContinuationSpacing: # new in 1.31
38
+ Enabled: true
39
+
40
+ Layout/LineEndStringConcatenationIndentation: # new in 1.18
41
+ Enabled: true
42
+
43
+ Layout/MultilineMethodCallIndentation:
44
+ EnforcedStyle: indented
45
+
46
+ Layout/SpaceBeforeBrackets: # new in 1.7
47
+ Enabled: true
48
+
49
+ Lint/AmbiguousAssignment: # new in 1.7
50
+ Enabled: true
51
+
52
+ Lint/AmbiguousOperatorPrecedence: # new in 1.21
53
+ Enabled: true
54
+
55
+ Lint/AmbiguousRange: # new in 1.19
56
+ Enabled: true
57
+
58
+ Lint/ArrayLiteralInRegexp: # new in 1.71
59
+ Enabled: true
60
+
61
+ Lint/ConstantOverwrittenInRescue: # new in 1.31
62
+ Enabled: true
63
+
64
+ Lint/ConstantReassignment: # new in 1.70
65
+ Enabled: true
66
+
67
+ Lint/CopDirectiveSyntax: # new in 1.72
68
+ Enabled: true
69
+
70
+ Lint/DeprecatedConstants: # new in 1.8
71
+ Enabled: true
72
+
73
+ Lint/DuplicateBranch: # new in 1.3
74
+ Enabled: true
75
+
76
+ Lint/DuplicateMagicComment: # new in 1.37
77
+ Enabled: true
78
+
79
+ Lint/DuplicateMatchPattern: # new in 1.50
80
+ Enabled: true
81
+
82
+ Lint/DuplicateRegexpCharacterClassElement: # new in 1.1
83
+ Enabled: true
84
+
85
+ Lint/DuplicateSetElement: # new in 1.67
86
+ Enabled: true
87
+
88
+ Lint/EmptyBlock: # new in 1.1
89
+ Enabled: true
90
+
91
+ Lint/EmptyClass: # new in 1.3
92
+ Enabled: true
93
+
94
+ Lint/EmptyInPattern: # new in 1.16
95
+ Enabled: true
96
+
97
+ Lint/HashNewWithKeywordArgumentsAsDefault: # new in 1.69
98
+ Enabled: true
99
+
100
+ Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
101
+ Enabled: true
102
+
103
+ Lint/ItWithoutArgumentsInBlock: # new in 1.59
104
+ Enabled: true
105
+
106
+ Lint/LambdaWithoutLiteralBlock: # new in 1.8
107
+ Enabled: true
108
+
109
+ Lint/LiteralAssignmentInCondition: # new in 1.58
110
+ Enabled: true
111
+
112
+ Lint/MixedCaseRange: # new in 1.53
113
+ Enabled: true
114
+
115
+ Lint/NoReturnInBeginEndBlocks: # new in 1.2
116
+ Enabled: true
117
+
118
+ Lint/NonAtomicFileOperation: # new in 1.31
119
+ Enabled: true
120
+
121
+ Lint/NumberedParameterAssignment: # new in 1.9
122
+ Enabled: true
123
+
124
+ Lint/NumericOperationWithConstantResult: # new in 1.69
125
+ Enabled: true
126
+
127
+ Lint/OrAssignmentToConstant: # new in 1.9
128
+ Enabled: true
129
+
130
+ Lint/RedundantDirGlobSort: # new in 1.8
131
+ Enabled: true
132
+
133
+ Lint/RedundantRegexpQuantifiers: # new in 1.53
134
+ Enabled: true
135
+
136
+ Lint/RedundantTypeConversion: # new in 1.72
137
+ Enabled: true
138
+
139
+ Lint/RefinementImportMethods: # new in 1.27
140
+ Enabled: true
141
+
142
+ Lint/RequireRangeParentheses: # new in 1.32
143
+ Enabled: true
144
+
145
+ Lint/RequireRelativeSelfPath: # new in 1.22
146
+ Enabled: true
147
+
148
+ Lint/SharedMutableDefault: # new in 1.70
149
+ Enabled: true
150
+
151
+ Lint/SuppressedExceptionInNumberConversion: # new in 1.72
152
+ Enabled: true
153
+
154
+ Lint/SymbolConversion: # new in 1.9
155
+ Enabled: true
156
+
157
+ Lint/ToEnumArguments: # new in 1.1
158
+ Enabled: true
159
+
160
+ Lint/TripleQuotes: # new in 1.9
161
+ Enabled: true
162
+
163
+ Lint/UnescapedBracketInRegexp: # new in 1.68
164
+ Enabled: true
165
+
166
+ Lint/UnexpectedBlockArity: # new in 1.5
167
+ Enabled: true
168
+
169
+ Lint/UnmodifiedReduceAccumulator: # new in 1.1
170
+ Enabled: true
171
+
172
+ Lint/UselessConstantScoping: # new in 1.72
173
+ Enabled: true
174
+
175
+ Lint/UselessDefaultValueArgument: # new in 1.76
176
+ Enabled: true
177
+
178
+ Lint/UselessDefined: # new in 1.69
179
+ Enabled: true
180
+
181
+ Lint/UselessNumericOperation: # new in 1.66
182
+ Enabled: true
183
+
184
+ Lint/UselessOr: # new in 1.76
185
+ Enabled: true
186
+
187
+ Lint/UselessRescue: # new in 1.43
188
+ Enabled: true
189
+
190
+ Lint/UselessRuby2Keywords: # new in 1.23
191
+ Enabled: true
192
+
193
+ Metrics/BlockLength:
194
+ Exclude:
195
+ - "spec/**/*"
196
+ - "*.gemspec"
197
+
198
+ Metrics/CollectionLiteralLength: # new in 1.47
199
+ Enabled: true
200
+
201
+ Metrics/AbcSize:
202
+ Enabled: false
203
+
204
+ Metrics/ClassLength:
205
+ Enabled: false
206
+
207
+ Metrics/CyclomaticComplexity:
208
+ Enabled: false
209
+
210
+ Metrics/MethodLength:
211
+ Enabled: false
212
+
213
+ Metrics/PerceivedComplexity:
214
+ Enabled: false
215
+
216
+ Naming/BlockForwarding: # new in 1.24
217
+ Enabled: true
218
+
219
+ Naming/PredicateMethod: # new in 1.76
220
+ Enabled: true
221
+
222
+ Security/CompoundHash: # new in 1.28
223
+ Enabled: true
224
+
225
+ Security/IoMethods: # new in 1.22
226
+ Enabled: true
227
+
228
+ Style/AmbiguousEndlessMethodDefinition: # new in 1.68
229
+ Enabled: true
230
+
231
+ Style/ArgumentsForwarding: # new in 1.1
232
+ Enabled: true
233
+
234
+ Style/ArrayIntersect: # new in 1.40
235
+ Enabled: true
236
+
237
+ Style/BitwisePredicate: # new in 1.68
238
+ Enabled: true
239
+
240
+ Style/CollectionCompact: # new in 1.2
241
+ Enabled: true
242
+
243
+ Style/CollectionQuerying: # new in 1.77
244
+ Enabled: true
245
+
246
+ Style/CombinableDefined: # new in 1.68
247
+ Enabled: true
248
+
249
+ Style/ComparableBetween: # new in 1.74
250
+ Enabled: true
251
+
252
+ Style/ComparableClamp: # new in 1.44
253
+ Enabled: true
254
+
255
+ Style/ConcatArrayLiterals: # new in 1.41
256
+ Enabled: true
257
+
258
+ Style/DataInheritance: # new in 1.49
259
+ Enabled: true
260
+
261
+ Style/DigChain: # new in 1.69
262
+ Enabled: true
263
+
264
+ Style/DirEmpty: # new in 1.48
265
+ Enabled: true
266
+
267
+ Style/Documentation:
268
+ Enabled: false
269
+
270
+ Style/DocumentDynamicEvalDefinition: # new in 1.1
271
+ Enabled: true
272
+
273
+ Style/EmptyHeredoc: # new in 1.32
274
+ Enabled: true
275
+
276
+ Style/EmptyStringInsideInterpolation: # new in 1.76
277
+ Enabled: true
278
+
279
+ Style/EndlessMethod: # new in 1.8
280
+ Enabled: true
281
+
282
+ Style/EnvHome: # new in 1.29
283
+ Enabled: true
284
+
285
+ Style/ExactRegexpMatch: # new in 1.51
286
+ Enabled: true
287
+
288
+ Style/FetchEnvVar: # new in 1.28
289
+ Enabled: true
290
+
291
+ Style/FileEmpty: # new in 1.48
292
+ Enabled: true
293
+
294
+ Style/FileNull: # new in 1.69
295
+ Enabled: true
296
+
297
+ Style/FileRead: # new in 1.24
298
+ Enabled: true
299
+
300
+ Style/FileTouch: # new in 1.69
301
+ Enabled: true
302
+
303
+ Style/FileWrite: # new in 1.24
304
+ Enabled: true
305
+
306
+ Style/HashConversion: # new in 1.10
307
+ Enabled: true
308
+
309
+ Style/HashExcept: # new in 1.7
310
+ Enabled: true
311
+
312
+ Style/HashFetchChain: # new in 1.75
313
+ Enabled: true
314
+
315
+ Style/HashSlice: # new in 1.71
316
+ Enabled: true
317
+
318
+ Style/IfWithBooleanLiteralBranches: # new in 1.9
319
+ Enabled: true
320
+
321
+ Style/InPatternThen: # new in 1.16
322
+ Enabled: true
323
+
324
+ Style/ItAssignment: # new in 1.70
325
+ Enabled: true
326
+
327
+ Style/ItBlockParameter: # new in 1.75
328
+ Enabled: true
329
+
330
+ Style/KeywordArgumentsMerging: # new in 1.68
331
+ Enabled: true
332
+
333
+ Style/MagicCommentFormat: # new in 1.35
334
+ Enabled: true
335
+
336
+ Style/MapCompactWithConditionalBlock: # new in 1.30
337
+ Enabled: true
338
+
339
+ Style/MapIntoArray: # new in 1.63
340
+ Enabled: true
341
+
342
+ Style/MapToHash: # new in 1.24
343
+ Enabled: true
344
+
345
+ Style/MapToSet: # new in 1.42
346
+ Enabled: true
347
+
348
+ Style/MinMaxComparison: # new in 1.42
349
+ Enabled: true
350
+
351
+ Style/MultilineInPatternThen: # new in 1.16
352
+ Enabled: true
353
+
354
+ Style/NegatedIfElseCondition: # new in 1.2
355
+ Enabled: true
356
+
357
+ Style/NestedFileDirname: # new in 1.26
358
+ Enabled: true
359
+
360
+ Style/NilLambda: # new in 1.3
361
+ Enabled: true
362
+
363
+ Style/NumberedParameters: # new in 1.22
364
+ Enabled: true
365
+
366
+ Style/NumberedParametersLimit: # new in 1.22
367
+ Enabled: true
368
+
369
+ Style/ObjectThen: # new in 1.28
370
+ Enabled: true
371
+
372
+ Style/OpenStructUse: # new in 1.23
373
+ Enabled: true
374
+
375
+ Style/OperatorMethodCall: # new in 1.37
376
+ Enabled: true
377
+
378
+ Style/QuotedSymbols: # new in 1.16
379
+ Enabled: true
380
+
381
+ Style/RedundantArgument: # new in 1.4
382
+ Enabled: true
383
+
384
+ Style/RedundantArrayConstructor: # new in 1.52
385
+ Enabled: true
386
+
387
+ Style/RedundantArrayFlatten: # new in 1.76
388
+ Enabled: true
389
+
390
+ Style/RedundantConstantBase: # new in 1.40
391
+ Enabled: true
392
+
393
+ Style/RedundantCurrentDirectoryInPath: # new in 1.53
394
+ Enabled: true
395
+
396
+ Style/RedundantDoubleSplatHashBraces: # new in 1.41
397
+ Enabled: true
398
+
399
+ Style/RedundantEach: # new in 1.38
400
+ Enabled: true
401
+
402
+ Style/RedundantFilterChain: # new in 1.52
403
+ Enabled: true
404
+
405
+ Style/RedundantFormat: # new in 1.72
406
+ Enabled: true
407
+
408
+ Style/RedundantHeredocDelimiterQuotes: # new in 1.45
409
+ Enabled: true
410
+
411
+ Style/RedundantInitialize: # new in 1.27
412
+ Enabled: true
413
+
414
+ Style/RedundantInterpolationUnfreeze: # new in 1.66
415
+ Enabled: true
416
+
417
+ Style/RedundantLineContinuation: # new in 1.49
418
+ Enabled: true
419
+
420
+ Style/RedundantRegexpArgument: # new in 1.53
421
+ Enabled: true
422
+
423
+ Style/RedundantRegexpConstructor: # new in 1.52
424
+ Enabled: true
425
+
426
+ Style/RedundantSelfAssignmentBranch: # new in 1.19
427
+ Enabled: true
428
+
429
+ Style/RedundantStringEscape: # new in 1.37
430
+ Enabled: true
431
+
432
+ Style/ReturnNilInPredicateMethodDefinition: # new in 1.53
433
+ Enabled: true
434
+
435
+ Style/SafeNavigationChainLength: # new in 1.68
436
+ Enabled: true
437
+
438
+ Style/SelectByRegexp: # new in 1.22
439
+ Enabled: true
440
+
441
+ Style/SendWithLiteralMethodName: # new in 1.64
442
+ Enabled: true
443
+
444
+ Style/SingleLineDoEndBlock: # new in 1.57
445
+ Enabled: true
446
+
447
+ Style/StringChars: # new in 1.12
448
+ Enabled: true
449
+
450
+ Style/StringLiterals:
451
+ EnforcedStyle: double_quotes
452
+
453
+ Style/StringLiteralsInInterpolation:
454
+ EnforcedStyle: double_quotes
455
+
456
+ Style/SuperArguments: # new in 1.64
457
+ Enabled: true
458
+
459
+ Style/SuperWithArgsParentheses: # new in 1.58
460
+ Enabled: true
461
+
462
+ Style/SwapValues: # new in 1.1
463
+ Enabled: true
464
+
465
+ Style/TrailingCommaInArguments:
466
+ EnforcedStyleForMultiline: comma
467
+
468
+ Style/TrailingCommaInArrayLiteral:
469
+ EnforcedStyleForMultiline: diff_comma
470
+
471
+ Style/TrailingCommaInHashLiteral:
472
+ EnforcedStyleForMultiline: diff_comma
473
+
474
+ Style/YAMLFileRead: # new in 1.53
475
+ Enabled: true
476
+
477
+ # # Performance
478
+ #
479
+ # Performance/AncestorsInclude: # new in 1.7
480
+ # Enabled: true
481
+ # Performance/BigDecimalWithNumericArgument: # new in 1.7
482
+ # Enabled: true
483
+ # Performance/CollectionLiteralInLoop: # new in 1.8
484
+ # Enabled: true
485
+ # Performance/ConcurrentMonotonicTime: # new in 1.12
486
+ # Enabled: true
487
+ # Performance/ConstantRegexp: # new in 1.9
488
+ # Enabled: true
489
+ # Performance/MapCompact: # new in 1.11
490
+ # Enabled: true
491
+ # Performance/MapMethodChain: # new in 1.19
492
+ # Enabled: true
493
+ # Performance/MethodObjectAsBlock: # new in 1.9
494
+ # Enabled: true
495
+ # Performance/RedundantEqualityComparisonBlock: # new in 1.10
496
+ # Enabled: true
497
+ # Performance/RedundantSortBlock: # new in 1.7
498
+ # Enabled: true
499
+ # Performance/RedundantSplitRegexpArgument: # new in 1.10
500
+ # Enabled: true
501
+ # Performance/RedundantStringChars: # new in 1.7
502
+ # Enabled: true
503
+ # Performance/ReverseFirst: # new in 1.7
504
+ # Enabled: true
505
+ # Performance/SortReverse: # new in 1.7
506
+ # Enabled: true
507
+ # Performance/Squeeze: # new in 1.7
508
+ # Enabled: true
509
+ # Performance/StringBytesize: # new in 1.23
510
+ # Enabled: true
511
+ # Performance/StringIdentifierArgument: # new in 1.13
512
+ # Enabled: true
513
+ # Performance/StringInclude: # new in 1.7
514
+ # Enabled: true
515
+ # Performance/Sum: # new in 1.8
516
+ # Enabled: true
517
+ # Performance/ZipWithoutBlock: # new in 1.24
518
+ # Enabled: true
519
+ #
520
+ # # RSpec
521
+ #
522
+ # RSpec/ExampleLength:
523
+ # Enabled: false
524
+ # RSpec/IncludeExamples: # new in 3.6
525
+ # Enabled: true
526
+ # RSpec/MessageSpies:
527
+ # Enabled: true
528
+ # EnforcedStyle: receive
529
+ # RSpec/MultipleExpectations: # new in 3.6
530
+ # Enabled: false
data/Appraisals ADDED
@@ -0,0 +1,17 @@
1
+ # vim ft=ruby
2
+ appraise "rspec-3.10" do
3
+ gem "rspec", "~> 3.10.0"
4
+ end
5
+
6
+ appraise "rspec-3.11" do
7
+ gem "rspec", "~> 3.11.0"
8
+ end
9
+
10
+ appraise "rspec-3.12" do
11
+ gem "rspec", "~> 3.12.0"
12
+ end
13
+
14
+ appraise "rspec-3.13" do
15
+ gem "rspec", "~> 3.13.0"
16
+ end
17
+
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2025-07-10
4
+
5
+ - Initial release
6
+ - Core functionality for running RSpec examples multiple times.
7
+ - Formatter for visualizing example iteration status.
8
+ - Builds.
9
+ - Usage docs.
@@ -0,0 +1,131 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, caste, color, religion, or sexual
10
+ identity and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the overall
26
+ community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or advances of
31
+ any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email address,
35
+ without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official email address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to maintainer(s) of the repository. All complaints will be reviewed and
63
+ investigated promptly and fairly.
64
+
65
+ All community leaders are obligated to respect the privacy and security of the
66
+ reporter of any incident.
67
+
68
+ ## Enforcement Guidelines
69
+
70
+ Community leaders will follow these Community Impact Guidelines in determining
71
+ the consequences for any action they deem in violation of this Code of Conduct:
72
+
73
+ ### 1. Correction
74
+
75
+ **Community Impact**: Use of inappropriate language or other behavior deemed
76
+ unprofessional or unwelcome in the community.
77
+
78
+ **Consequence**: A private, written warning from community leaders, providing
79
+ clarity around the nature of the violation and an explanation of why the
80
+ behavior was inappropriate. A public apology may be requested.
81
+
82
+ ### 2. Warning
83
+
84
+ **Community Impact**: A violation through a single incident or series of
85
+ actions.
86
+
87
+ **Consequence**: A warning with consequences for continued behavior. No
88
+ interaction with the people involved, including unsolicited interaction with
89
+ those enforcing the Code of Conduct, for a specified period of time. This
90
+ includes avoiding interactions in community spaces as well as external channels
91
+ like social media. Violating these terms may lead to a temporary or permanent
92
+ ban.
93
+
94
+ ### 3. Temporary Ban
95
+
96
+ **Community Impact**: A serious violation of community standards, including
97
+ sustained inappropriate behavior.
98
+
99
+ **Consequence**: A temporary ban from any sort of interaction or public
100
+ communication with the community for a specified period of time. No public or
101
+ private interaction with the people involved, including unsolicited interaction
102
+ with those enforcing the Code of Conduct, is allowed during this period.
103
+ Violating these terms may lead to a permanent ban.
104
+
105
+ ### 4. Permanent Ban
106
+
107
+ **Community Impact**: Demonstrating a pattern of violation of community
108
+ standards, including sustained inappropriate behavior, harassment of an
109
+ individual, or aggression toward or disparagement of classes of individuals.
110
+
111
+ **Consequence**: A permanent ban from any sort of public interaction within the
112
+ community.
113
+
114
+ ## Attribution
115
+
116
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
117
+ version 2.1, available at
118
+ [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
119
+
120
+ Community Impact Guidelines were inspired by
121
+ [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
122
+
123
+ For answers to common questions about this code of conduct, see the FAQ at
124
+ [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
125
+ [https://www.contributor-covenant.org/translations][translations].
126
+
127
+ [homepage]: https://www.contributor-covenant.org
128
+ [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
129
+ [Mozilla CoC]: https://github.com/mozilla/diversity
130
+ [FAQ]: https://www.contributor-covenant.org/faq
131
+ [translations]: https://www.contributor-covenant.org/translations