rswag_components 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c254bb63385e9864e62fac09b171630a6190976470c24f0aec1ad80dd430f694
4
+ data.tar.gz: 53fafd5b6698bab4fcd15e072dc174d290b496d8a2408508e90409cf0b3288f6
5
+ SHA512:
6
+ metadata.gz: cd0da4c0d1fe6510c3bd73b6d329ef88868f4d5bdd56014b135ca23558d40b3ee986cb12bf887134be9d4cb00fcae9c6b6b0869ab420e634d4f1714c03d2ed60
7
+ data.tar.gz: 77b283c72ab70ff0ae3bfda94828a79bacac997facd4aad1e2d323032e77fa49dad33039a00f83b7c319596d8ed403107c094f41b98b6a49037969d57c9fe8f0
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,321 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.7
3
+
4
+ Gemspec/DeprecatedAttributeAssignment:
5
+ Enabled: true
6
+
7
+ Gemspec/RequireMFA:
8
+ Enabled: true
9
+
10
+ Layout/LineContinuationLeadingSpace:
11
+ Enabled: true
12
+
13
+ Layout/LineContinuationSpacing:
14
+ Enabled: true
15
+
16
+ Layout/SpaceBeforeBrackets:
17
+ Enabled: true
18
+
19
+ Lint/AmbiguousAssignment:
20
+ Enabled: true
21
+
22
+ Lint/AmbiguousOperatorPrecedence:
23
+ Enabled: true
24
+
25
+ Lint/DeprecatedConstants:
26
+ Enabled: true
27
+
28
+ Lint/DuplicateBranch:
29
+ Enabled: true
30
+
31
+ Lint/DuplicateRegexpCharacterClassElement:
32
+ Enabled: true
33
+
34
+ Lint/ConstantOverwrittenInRescue:
35
+ Enabled: true
36
+
37
+ Lint/AmbiguousRange:
38
+ Enabled: true
39
+
40
+ Layout/LineEndStringConcatenationIndentation:
41
+ Enabled: true
42
+
43
+ Lint/DuplicateMagicComment:
44
+ Enabled: true
45
+
46
+ Lint/EmptyBlock:
47
+ Enabled: true
48
+
49
+ Lint/EmptyInPattern:
50
+ Enabled: true
51
+
52
+ Lint/IncompatibleIoSelectWithFiberScheduler:
53
+ Enabled: true
54
+
55
+ Lint/NoReturnInBeginEndBlocks:
56
+ Enabled: true
57
+
58
+ Style/CollectionMethods:
59
+ Description: Preferred collection methods.
60
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#map-find-select-reduce-size
61
+ Enabled: true
62
+ PreferredMethods:
63
+ collect: map
64
+ collect!: map!
65
+ find: detect
66
+ find_all: select
67
+ reduce: inject
68
+
69
+ Layout/DotPosition:
70
+ Description: Checks the position of the dot in multi-line method calls.
71
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains
72
+ Enabled: true
73
+ EnforcedStyle: trailing
74
+ SupportedStyles:
75
+ - leading
76
+ - trailing
77
+
78
+ Naming/PredicateName:
79
+ Description: Check the names of predicate methods.
80
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark
81
+ Enabled: true
82
+ NamePrefix:
83
+ - is_
84
+ - has_
85
+ - have_
86
+ ForbiddenPrefixes:
87
+ - is_
88
+ Exclude:
89
+ - spec/**/*
90
+
91
+ Style/SingleLineMethods:
92
+ Description: Avoid single-line methods.
93
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-single-line-methods
94
+ Enabled: true
95
+ AllowIfMethodIsEmpty: true
96
+
97
+ Style/StringLiterals:
98
+ Description: Checks if uses of quotes match the configured preference.
99
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#consistent-string-literals
100
+ Enabled: true
101
+ EnforcedStyle: double_quotes
102
+ SupportedStyles:
103
+ - single_quotes
104
+ - double_quotes
105
+
106
+ Style/StringLiteralsInInterpolation:
107
+ Description: Checks if uses of quotes inside expressions in interpolated strings
108
+ match the configured preference.
109
+ Enabled: true
110
+ EnforcedStyle: single_quotes
111
+ SupportedStyles:
112
+ - single_quotes
113
+ - double_quotes
114
+
115
+ Metrics/AbcSize:
116
+ Description: A calculated magnitude based on number of assignments, branches, and
117
+ conditions.
118
+ Enabled: false
119
+ Max: 15
120
+
121
+ Metrics/ClassLength:
122
+ Description: Avoid classes longer than 100 lines of code.
123
+ Enabled: false
124
+ CountComments: false
125
+ Max: 100
126
+
127
+ Metrics/ModuleLength:
128
+ CountComments: false
129
+ Max: 100
130
+ Description: Avoid modules longer than 100 lines of code.
131
+ Enabled: false
132
+
133
+ Metrics/CyclomaticComplexity:
134
+ Description: A complexity metric that is strongly correlated to the number of test
135
+ cases needed to validate a method.
136
+ Enabled: false
137
+ Max: 6
138
+
139
+ Metrics/MethodLength:
140
+ Description: Avoid methods longer than 10 lines of code.
141
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#short-methods
142
+ Enabled: false
143
+ CountComments: false
144
+ Max: 10
145
+
146
+ Metrics/ParameterLists:
147
+ Description: Avoid parameter lists longer than three or four parameters.
148
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#too-many-params
149
+ Enabled: false
150
+ Max: 5
151
+ CountKeywordArgs: true
152
+
153
+ Metrics/PerceivedComplexity:
154
+ Description: A complexity metric geared towards measuring complexity for a human
155
+ reader.
156
+ Enabled: false
157
+ Max: 7
158
+
159
+ Lint/AssignmentInCondition:
160
+ Description: Don't use assignment in conditions.
161
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#safe-assignment-in-condition
162
+ Enabled: false
163
+ AllowSafeAssignment: true
164
+
165
+ Lint/EachWithObjectArgument:
166
+ Description: Check for immutable argument given to each_with_object.
167
+ Enabled: true
168
+
169
+ Lint/SuppressedException:
170
+ Description: Don't suppress exception.
171
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions
172
+ Enabled: false
173
+
174
+ Lint/LiteralAsCondition:
175
+ Description: Checks of literals used in conditions.
176
+ Enabled: false
177
+
178
+ Lint/LiteralInInterpolation:
179
+ Description: Checks for literals used in interpolation.
180
+ Enabled: false
181
+
182
+ Style/InlineComment:
183
+ Description: Avoid inline comments.
184
+ Enabled: false
185
+
186
+ Naming/AccessorMethodName:
187
+ Description: Check the naming of accessor methods for get_/set_.
188
+ Enabled: false
189
+
190
+ Style/Alias:
191
+ Description: Use alias_method instead of alias.
192
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#alias-method
193
+ Enabled: false
194
+
195
+ Style/Documentation:
196
+ Description: Document classes and non-namespace modules.
197
+ Enabled: false
198
+
199
+ Style/DoubleNegation:
200
+ Description: Checks for uses of double negation (!!).
201
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-bang-bang
202
+ Enabled: false
203
+
204
+ Style/EachWithObject:
205
+ Description: Prefer `each_with_object` over `inject` or `reduce`.
206
+ Enabled: false
207
+
208
+ Style/EmptyLiteral:
209
+ Description: Prefer literals to Array.new/Hash.new/String.new.
210
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#literal-array-hash
211
+ Enabled: false
212
+
213
+ Style/ModuleFunction:
214
+ Description: Checks for usage of `extend self` in modules.
215
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#module-function
216
+ Enabled: false
217
+
218
+ Style/OneLineConditional:
219
+ Description: Favor the ternary operator(?:) over if/then/else/end constructs.
220
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#ternary-operator
221
+ Enabled: false
222
+
223
+ Style/PerlBackrefs:
224
+ Description: Avoid Perl-style regex back references.
225
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-perl-regexp-last-matchers
226
+ Enabled: false
227
+
228
+ Style/Send:
229
+ Description: Prefer `Object#__send__` or `Object#public_send` to `send`, as `send`
230
+ may overlap with existing methods.
231
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#prefer-public-send
232
+ Enabled: false
233
+
234
+ Style/SpecialGlobalVars:
235
+ Description: Avoid Perl-style global variables.
236
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-cryptic-perlisms
237
+ Enabled: false
238
+
239
+ Style/VariableInterpolation:
240
+ Description: Don't interpolate global, instance and class variables directly in
241
+ strings.
242
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#curlies-interpolate
243
+ Enabled: false
244
+
245
+ Style/WhenThen:
246
+ Description: Use when x then ... for one-line cases.
247
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#one-line-cases
248
+ Enabled: false
249
+
250
+ Style/RaiseArgs:
251
+ Description: Checks the arguments passed to raise/fail.
252
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#exception-class-messages
253
+ Enabled: false
254
+ EnforcedStyle: exploded
255
+ SupportedStyles:
256
+ - compact
257
+ - exploded
258
+
259
+ Style/SignalException:
260
+ Description: Checks for proper usage of fail and raise.
261
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#fail-method
262
+ Enabled: false
263
+ EnforcedStyle: semantic
264
+ SupportedStyles:
265
+ - only_raise
266
+ - only_fail
267
+ - semantic
268
+
269
+ Style/SingleLineBlockParams:
270
+ Description: Enforces the names of some block params.
271
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#reduce-blocks
272
+ Enabled: false
273
+ Methods:
274
+ - reduce:
275
+ - a
276
+ - e
277
+ - inject:
278
+ - a
279
+ - e
280
+
281
+ Style/GuardClause:
282
+ Description: Check for conditionals that can be replaced with guard clauses
283
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals
284
+ Enabled: false
285
+ MinBodyLength: 1
286
+
287
+ Style/IfUnlessModifier:
288
+ Description: Favor modifier if/unless usage when you have a single-line body.
289
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#if-as-a-modifier
290
+ Enabled: false
291
+
292
+ Style/OptionHash:
293
+ Description: Don't use option hashes when you can use keyword arguments.
294
+ Enabled: false
295
+
296
+ Style/PercentLiteralDelimiters:
297
+ Description: Use `%`-literal delimiters consistently
298
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-literal-braces
299
+ Enabled: false
300
+ PreferredDelimiters:
301
+ "%": "()"
302
+ "%i": "()"
303
+ "%q": "()"
304
+ "%Q": "()"
305
+ "%r": "{}"
306
+ "%s": "()"
307
+ "%w": "()"
308
+ "%W": "()"
309
+ "%x": "()"
310
+
311
+ Style/TrailingCommaInArguments:
312
+ Description: Checks for trailing comma in parameter lists and literals.
313
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas
314
+ Enabled: false
315
+ EnforcedStyleForMultiline: no_comma
316
+
317
+ Metrics/BlockLength:
318
+ Description: Check if the length of a block exceeds some maximum value.
319
+ Enabled: true
320
+ Exclude:
321
+ - spec/**/*
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-12-19
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at cheerful.mf@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in rswag_components.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.21"
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Mark Frost
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # RswagComponents
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rswag_components`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Install the gem and add to the application's Gemfile by executing:
10
+
11
+ $ bundle add rswag_components
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ $ gem install rswag_components
16
+
17
+ ## Usage
18
+
19
+ TODO: Write usage instructions here
20
+
21
+ ## Development
22
+
23
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
24
+
25
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
26
+
27
+ ## Contributing
28
+
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rswag_components. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/rswag_components/blob/main/CODE_OF_CONDUCT.md).
30
+
31
+ ## License
32
+
33
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
34
+
35
+ ## Code of Conduct
36
+
37
+ Everyone interacting in the RswagComponents project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/rswag_components/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RswagComponents
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "rswag_components/version"
4
+
5
+ module RswagComponents
6
+ class Error < StandardError; end
7
+ end
@@ -0,0 +1,4 @@
1
+ module RswagComponents
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,57 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rswag_components
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Mark Frost
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-12-19 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Write a longer description or delete this line.
14
+ email:
15
+ - cheerful.mf@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rspec"
21
+ - ".rubocop.yml"
22
+ - CHANGELOG.md
23
+ - CODE_OF_CONDUCT.md
24
+ - Gemfile
25
+ - LICENSE.txt
26
+ - README.md
27
+ - Rakefile
28
+ - lib/rswag_components.rb
29
+ - lib/rswag_components/version.rb
30
+ - sig/rswag_components.rbs
31
+ homepage: https://github.com/frostmark/rswag_components
32
+ licenses:
33
+ - MIT
34
+ metadata:
35
+ homepage_uri: https://github.com/frostmark/rswag_components
36
+ source_code_uri: https://github.com/frostmark/rswag_components
37
+ changelog_uri: https://github.com/frostmark/rswag_components/blob/main/CHANGELOG.md
38
+ post_install_message:
39
+ rdoc_options: []
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 2.6.0
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ requirements: []
53
+ rubygems_version: 3.2.15
54
+ signing_key:
55
+ specification_version: 4
56
+ summary: Write a short summary, because RubyGems requires one.
57
+ test_files: []