uffizzi-cli 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: a8dac7594027838ee4bd1b0c89f164bf25f45167fb3d8fab2f1779c0bd0fdd73
4
+ data.tar.gz: a17653ba98ea366d9ddc588175a1910110064e9fce9ee1ecc39f866a96f32f9a
5
+ SHA512:
6
+ metadata.gz: b88a6634833d3a9332506ac617bf852a09d711b65078aa7b65841ba54d3ed0410c53e6f18a0103b4448283d8b3efb6953754bdc3029fbdd44e1dc8a6507d1df5
7
+ data.tar.gz: 86c2aea8ef9d219981729bcdf49272f38bf972033499462fd7048598b7c6d235f6b8a13ce1cf9a56c203357a38e9ffb577739acf9ddd2c567a8244b6c1b5429e
data/.rubocop.yml ADDED
@@ -0,0 +1,575 @@
1
+ require:
2
+ - rubocop-minitest
3
+
4
+ AllCops:
5
+ NewCops: disable
6
+
7
+ Naming/AccessorMethodName:
8
+ Description: Check the naming of accessor methods for get_/set_.
9
+ Enabled: false
10
+
11
+ Style/Alias:
12
+ Description: 'Use alias_method instead of alias.'
13
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#alias-method'
14
+ Enabled: false
15
+
16
+ Style/ArrayJoin:
17
+ Description: 'Use Array#join instead of Array#*.'
18
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#array-join'
19
+ Enabled: false
20
+
21
+ Style/AsciiComments:
22
+ Description: 'Use only ascii symbols in comments.'
23
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-comments'
24
+ Enabled: false
25
+
26
+ Naming/AsciiIdentifiers:
27
+ Description: 'Use only ascii symbols in identifiers.'
28
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-identifiers'
29
+ Enabled: false
30
+
31
+ Style/Attr:
32
+ Description: 'Checks for uses of Module#attr.'
33
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr'
34
+ Enabled: false
35
+
36
+ Metrics/BlockNesting:
37
+ Description: 'Avoid excessive block nesting'
38
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#three-is-the-number-thou-shalt-count'
39
+ Enabled: false
40
+
41
+ Style/CaseEquality:
42
+ Description: 'Avoid explicit use of the case equality operator(===).'
43
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-case-equality'
44
+ Enabled: false
45
+
46
+ Style/CharacterLiteral:
47
+ Description: 'Checks for uses of character literals.'
48
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-character-literals'
49
+ Enabled: false
50
+
51
+ Style/ClassAndModuleChildren:
52
+ Description: 'Checks style of children classes and modules.'
53
+ Enabled: false
54
+
55
+ Metrics/ClassLength:
56
+ Description: 'Avoid classes longer than 100 lines of code.'
57
+ Enabled: false
58
+
59
+ Metrics/ModuleLength:
60
+ Description: 'Avoid modules longer than 100 lines of code.'
61
+ Enabled: false
62
+
63
+ Style/ClassVars:
64
+ Description: 'Avoid the use of class variables.'
65
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-class-vars'
66
+ Enabled: false
67
+
68
+ Style/CollectionMethods:
69
+ Enabled: true
70
+ PreferredMethods:
71
+ find: detect
72
+ inject: reduce
73
+ collect: map
74
+ find_all: select
75
+
76
+ Style/ColonMethodCall:
77
+ Description: 'Do not use :: for method call.'
78
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#double-colons'
79
+ Enabled: false
80
+
81
+ Style/CommentAnnotation:
82
+ Description: >-
83
+ Checks formatting of special comments
84
+ (TODO, FIXME, OPTIMIZE, HACK, REVIEW).
85
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#annotate-keywords'
86
+ Enabled: false
87
+
88
+ Style/PreferredHashMethods:
89
+ Description: 'Checks use of `has_key?` and `has_value?` Hash methods.'
90
+ StyleGuide: '#hash-key'
91
+ Enabled: false
92
+
93
+ Style/Documentation:
94
+ Description: 'Document classes and non-namespace modules.'
95
+ Enabled: false
96
+
97
+ Style/DoubleNegation:
98
+ Description: 'Checks for uses of double negation (!!).'
99
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-bang-bang'
100
+ Enabled: false
101
+
102
+ Style/EachWithObject:
103
+ Description: 'Prefer `each_with_object` over `inject` or `reduce`.'
104
+ Enabled: false
105
+
106
+ Style/EmptyLiteral:
107
+ Description: 'Prefer literals to Array.new/Hash.new/String.new.'
108
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#literal-array-hash'
109
+ Enabled: false
110
+
111
+ Style/Encoding:
112
+ Enabled: false
113
+
114
+ Style/EvenOdd:
115
+ Description: 'Favor the use of Fixnum#even? && Fixnum#odd?'
116
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
117
+ Enabled: false
118
+
119
+ Naming/FileName:
120
+ Description: 'Use snake_case for source file names.'
121
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-files'
122
+ Enabled: false
123
+
124
+ Style/FrozenStringLiteralComment:
125
+ Description: >-
126
+ Add the frozen_string_literal comment to the top of files
127
+ to help transition from Ruby 2.3.0 to Ruby 3.0.
128
+ Enabled: true
129
+
130
+ Style/FormatString:
131
+ Description: 'Enforce the use of Kernel#sprintf, Kernel#format or String#%.'
132
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#sprintf'
133
+ Enabled: false
134
+
135
+ Style/GlobalVars:
136
+ Description: 'Do not introduce global variables.'
137
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#instance-vars'
138
+ Reference: 'http://www.zenspider.com/Languages/Ruby/QuickRef.html'
139
+ Enabled: false
140
+
141
+ Style/GuardClause:
142
+ Description: 'Check for conditionals that can be replaced with guard clauses'
143
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals'
144
+ Enabled: false
145
+
146
+ Style/IfUnlessModifier:
147
+ Description: >-
148
+ Favor modifier if/unless usage when you have a
149
+ single-line body.
150
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#if-as-a-modifier'
151
+ Enabled: false
152
+
153
+ Style/IfWithSemicolon:
154
+ Description: 'Do not use if x; .... Use the ternary operator instead.'
155
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-semicolon-ifs'
156
+ Enabled: false
157
+
158
+ Style/InlineComment:
159
+ Description: 'Avoid inline comments.'
160
+ Enabled: false
161
+
162
+ Style/Lambda:
163
+ Description: 'Use the new lambda literal syntax for single-line blocks.'
164
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#lambda-multi-line'
165
+ Enabled: false
166
+
167
+ Style/LambdaCall:
168
+ Description: 'Use lambda.call(...) instead of lambda.(...).'
169
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc-call'
170
+ Enabled: false
171
+
172
+ Style/LineEndConcatenation:
173
+ Description: >-
174
+ Use \ instead of + or << to concatenate two string literals at
175
+ line end.
176
+ Enabled: false
177
+
178
+ Metrics/AbcSize:
179
+ Description: >-
180
+ A calculated magnitude based on number of assignments,
181
+ branches, and conditions.
182
+ Enabled: false
183
+
184
+ Metrics/BlockLength:
185
+ CountComments: true
186
+ Max: 50
187
+ IgnoredMethods: []
188
+
189
+ Metrics/CyclomaticComplexity:
190
+ Description: >-
191
+ A complexity metric that is strongly correlated to the number
192
+ of test cases needed to validate a method.
193
+ Enabled: false
194
+
195
+ Metrics/MethodLength:
196
+ Description: 'Avoid methods longer than 10 lines of code.'
197
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#short-methods'
198
+ Enabled: false
199
+
200
+ Style/MixinUsage:
201
+ Enabled: true
202
+ Exclude:
203
+ - test/test_helper.rb
204
+
205
+ Style/ModuleFunction:
206
+ Description: 'Checks for usage of `extend self` in modules.'
207
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#module-function'
208
+ Enabled: false
209
+
210
+ Style/MultilineBlockChain:
211
+ Description: 'Avoid multi-line chains of blocks.'
212
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#single-line-blocks'
213
+ Enabled: false
214
+
215
+ Style/NegatedIf:
216
+ Description: >-
217
+ Favor unless over if for negative conditions
218
+ (or control flow or).
219
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#unless-for-negatives'
220
+ Enabled: false
221
+
222
+ Style/NegatedWhile:
223
+ Description: 'Favor until over while for negative conditions.'
224
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#until-for-negatives'
225
+ Enabled: false
226
+
227
+ Style/Next:
228
+ Description: 'Use `next` to skip iteration instead of a condition at the end.'
229
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals'
230
+ Enabled: false
231
+
232
+ Style/NilComparison:
233
+ Description: 'Prefer x.nil? to x == nil.'
234
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
235
+ Enabled: false
236
+
237
+ Style/Not:
238
+ Description: 'Use ! instead of not.'
239
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bang-not-not'
240
+ Enabled: false
241
+
242
+ Style/NumericLiterals:
243
+ Description: >-
244
+ Add underscores to large numeric literals to improve their
245
+ readability.
246
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscores-in-numerics'
247
+ Enabled: false
248
+
249
+ Style/OneLineConditional:
250
+ Description: >-
251
+ Favor the ternary operator(?:) over
252
+ if/then/else/end constructs.
253
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#ternary-operator'
254
+ Enabled: false
255
+
256
+ Naming/BinaryOperatorParameterName:
257
+ Description: 'When defining binary operators, name the argument other.'
258
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#other-arg'
259
+ Enabled: false
260
+
261
+ Metrics/ParameterLists:
262
+ Description: 'Avoid parameter lists longer than three or four parameters.'
263
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#too-many-params'
264
+ Enabled: false
265
+
266
+ Style/PercentLiteralDelimiters:
267
+ Description: 'Use `%`-literal delimiters consistently'
268
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-literal-braces'
269
+ Enabled: false
270
+
271
+ Style/PerlBackrefs:
272
+ Description: 'Avoid Perl-style regex back references.'
273
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-perl-regexp-last-matchers'
274
+ Enabled: false
275
+
276
+ Naming/PredicateName:
277
+ Description: 'Check the names of predicate methods.'
278
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark'
279
+ ForbiddenPrefixes:
280
+ - is_
281
+ Exclude:
282
+ - spec/**/*
283
+
284
+ Style/Proc:
285
+ Description: 'Use proc instead of Proc.new.'
286
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc'
287
+ Enabled: false
288
+
289
+ Style/RaiseArgs:
290
+ Description: 'Checks the arguments passed to raise/fail.'
291
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#exception-class-messages'
292
+ Enabled: false
293
+
294
+ Style/RegexpLiteral:
295
+ Description: 'Use / or %r around regular expressions.'
296
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-r'
297
+ Enabled: false
298
+
299
+ Style/Sample:
300
+ Description: >-
301
+ Use `sample` instead of `shuffle.first`,
302
+ `shuffle.last`, and `shuffle[Fixnum]`.
303
+ Reference: 'https://github.com/JuanitoFatas/fast-ruby#arrayshufflefirst-vs-arraysample-code'
304
+ Enabled: false
305
+
306
+ Style/SelfAssignment:
307
+ Description: >-
308
+ Checks for places where self-assignment shorthand should have
309
+ been used.
310
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#self-assignment'
311
+ Enabled: false
312
+
313
+ Style/SingleLineBlockParams:
314
+ Description: 'Enforces the names of some block params.'
315
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#reduce-blocks'
316
+ Enabled: false
317
+
318
+ Style/SingleLineMethods:
319
+ Description: 'Avoid single-line methods.'
320
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-single-line-methods'
321
+ Enabled: false
322
+
323
+ Style/SignalException:
324
+ Description: 'Checks for proper usage of fail and raise.'
325
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#fail-method'
326
+ Enabled: false
327
+
328
+ Style/SpecialGlobalVars:
329
+ Description: 'Avoid Perl-style global variables.'
330
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-cryptic-perlisms'
331
+ Enabled: false
332
+
333
+ Style/StringLiterals:
334
+ Description: 'Checks if uses of quotes match the configured preference.'
335
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-string-literals'
336
+ EnforcedStyle: single_quotes
337
+ Enabled: true
338
+
339
+ Style/StructInheritance:
340
+ Enabled: true
341
+
342
+ Style/SymbolArray:
343
+ EnforcedStyle: brackets
344
+
345
+ Style/SymbolProc:
346
+ Enabled: true
347
+
348
+ Style/TrailingCommaInArguments:
349
+ Description: 'Checks for trailing comma in argument lists.'
350
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
351
+ EnforcedStyleForMultiline: comma
352
+ SupportedStylesForMultiline:
353
+ - comma
354
+ - consistent_comma
355
+ - no_comma
356
+ Enabled: true
357
+
358
+ Style/TrailingCommaInArrayLiteral:
359
+ Description: 'Checks for trailing comma in array literals.'
360
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
361
+ EnforcedStyleForMultiline: comma
362
+ SupportedStylesForMultiline:
363
+ - comma
364
+ - consistent_comma
365
+ - no_comma
366
+ Enabled: true
367
+
368
+ Style/TrailingCommaInHashLiteral:
369
+ Description: 'Checks for trailing comma in hash literals.'
370
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
371
+ EnforcedStyleForMultiline: comma
372
+ SupportedStylesForMultiline:
373
+ - comma
374
+ - consistent_comma
375
+ - no_comma
376
+ Enabled: true
377
+
378
+ Style/TrivialAccessors:
379
+ Description: 'Prefer attr_* methods to trivial readers/writers.'
380
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr_family'
381
+ Enabled: false
382
+
383
+ Style/VariableInterpolation:
384
+ Description: >-
385
+ Don't interpolate global, instance and class variables
386
+ directly in strings.
387
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#curlies-interpolate'
388
+ Enabled: false
389
+
390
+ Style/WhenThen:
391
+ Description: 'Use when x then ... for one-line cases.'
392
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#one-line-cases'
393
+ Enabled: false
394
+
395
+ Style/WhileUntilModifier:
396
+ Description: >-
397
+ Favor modifier while/until usage when you have a
398
+ single-line body.
399
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#while-as-a-modifier'
400
+ Enabled: false
401
+
402
+ Style/WordArray:
403
+ Description: 'Use %w or %W for arrays of words.'
404
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-w'
405
+ EnforcedStyle: brackets
406
+
407
+ Style/MethodCallWithArgsParentheses:
408
+ Description: 'Use parentheses for method calls with arguments.'
409
+ Enabled: true
410
+ IgnoredMethods:
411
+ - require
412
+ - require_relative
413
+ - raise
414
+ - head
415
+ - render
416
+ - respond_with
417
+ - puts
418
+ Exclude:
419
+ - Gemfile
420
+ - uffizzi.gemspec
421
+ - test/test_helper.rb
422
+
423
+ Layout/ParameterAlignment:
424
+ Description: 'Here we check if the parameters on a multi-line method call or definition are aligned.'
425
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-double-indent'
426
+ Enabled: false
427
+
428
+ Layout/ConditionPosition:
429
+ Description: >-
430
+ Checks for condition placed in a confusing position relative to
431
+ the keyword.
432
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#same-line-condition'
433
+ Enabled: false
434
+
435
+ Layout/DotPosition:
436
+ Description: 'Checks the position of the dot in multi-line method calls.'
437
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains'
438
+ EnforcedStyle: leading
439
+
440
+ Layout/ExtraSpacing:
441
+ Description: 'Do not use unnecessary spacing.'
442
+ Enabled: true
443
+
444
+ Layout/MultilineOperationIndentation:
445
+ Description: >-
446
+ Checks indentation of binary operations that span more than
447
+ one line.
448
+ Enabled: true
449
+ EnforcedStyle: indented
450
+
451
+ Layout/MultilineMethodCallIndentation:
452
+ Description: >-
453
+ Checks indentation of method calls with the dot operator
454
+ that span more than one line.
455
+ Enabled: true
456
+ EnforcedStyle: indented
457
+
458
+ Layout/InitialIndentation:
459
+ Description: >-
460
+ Checks the indentation of the first non-blank non-comment line in a file.
461
+ Enabled: false
462
+
463
+ Layout/EndAlignment:
464
+ Description: >-
465
+ Checks whether the end keywords are aligned properly.
466
+ EnforcedStyleAlignWith: variable
467
+
468
+ Layout/LineLength:
469
+ Description: 'Limit lines to 140 characters.'
470
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#80-character-limits'
471
+ Max: 140
472
+
473
+ Lint/AmbiguousOperator:
474
+ Description: >-
475
+ Checks for ambiguous operators in the first argument of a
476
+ method invocation without parentheses.
477
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-as-args'
478
+ Enabled: false
479
+
480
+ Lint/AmbiguousRegexpLiteral:
481
+ Description: >-
482
+ Checks for ambiguous regexp literals in the first argument of
483
+ a method invocation without parenthesis.
484
+ Enabled: false
485
+
486
+ Lint/AssignmentInCondition:
487
+ Description: "Don't use assignment in conditions."
488
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#safe-assignment-in-condition'
489
+ Enabled: false
490
+
491
+ Lint/CircularArgumentReference:
492
+ Description: "Don't refer to the keyword argument in the default value."
493
+ Enabled: false
494
+
495
+ Lint/DeprecatedClassMethods:
496
+ Description: 'Check for deprecated class method calls.'
497
+ Enabled: false
498
+
499
+ Lint/DuplicateHashKey:
500
+ Description: 'Check for duplicate keys in hash literals.'
501
+ Enabled: false
502
+
503
+ Lint/EachWithObjectArgument:
504
+ Description: 'Check for immutable argument given to each_with_object.'
505
+ Enabled: false
506
+
507
+ Lint/ElseLayout:
508
+ Description: 'Check for odd code arrangement in an else block.'
509
+ Enabled: false
510
+
511
+ Lint/FlipFlop:
512
+ Description: 'Checks for flip flops'
513
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-flip-flops'
514
+ Enabled: false
515
+
516
+ Lint/FormatParameterMismatch:
517
+ Description: 'The number of parameters to format/sprint must match the fields.'
518
+ Enabled: false
519
+
520
+ Lint/SuppressedException:
521
+ Description: "Don't suppress exception."
522
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions'
523
+ Enabled: false
524
+
525
+ Lint/LiteralAsCondition:
526
+ Description: 'Checks of literals used in conditions.'
527
+ Enabled: false
528
+
529
+ Lint/LiteralInInterpolation:
530
+ Description: 'Checks for literals used in interpolation.'
531
+ Enabled: false
532
+
533
+ Lint/Loop:
534
+ Description: >-
535
+ Use Kernel#loop with break rather than begin/end/until or
536
+ begin/end/while for post-loop tests.
537
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#loop-with-break'
538
+ Enabled: false
539
+
540
+ Lint/NestedMethodDefinition:
541
+ Description: 'Do not use nested method definitions.'
542
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-methods'
543
+ Enabled: false
544
+
545
+ Lint/NonLocalExitFromIterator:
546
+ Description: 'Do not use return in iterator to cause non-local exit.'
547
+ Enabled: false
548
+
549
+ Lint/ParenthesesAsGroupedExpression:
550
+ Description: >-
551
+ Checks for method calls with a space before the opening
552
+ parenthesis.
553
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-no-spaces'
554
+ Enabled: false
555
+
556
+ Lint/RedundantCopDisableDirective:
557
+ Description: >-
558
+ Checks for rubocop:disable comments that can be removed.
559
+ Note: this cop is not disabled when disabling all cops.
560
+ It must be explicitly disabled.
561
+ Enabled: false
562
+
563
+ Lint/RequireParentheses:
564
+ Description: >-
565
+ Use parentheses in the method call to avoid confusion
566
+ about precedence.
567
+ Enabled: false
568
+
569
+ Lint/UnderscorePrefixedVariableName:
570
+ Description: 'Do not use prefix `_` for a variable that is used.'
571
+ Enabled: false
572
+
573
+ Lint/Void:
574
+ Description: 'Possible use of operator/literal/variable in void context.'
575
+ Enabled: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2021-11-12
4
+
5
+ - Initial release
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,13 @@
1
+ ## Contributing to the Uffizzi Command-line Interface
2
+
3
+ First, thank you for considering contributing to Uffizzi! You are what drive the open source community.
4
+
5
+ Uffizzi welcomes all contributions from everyone, not just Pull Requests. You can also help by filing detailed bug reports, proposing new features, and sharing Continuous Previews and Uffizzi with your local community.
6
+
7
+ **Working on your first Pull Request?** You can learn how from this *free* series [How to Contribute to an Open Source Project on GitHub](https://kcd.im/pull-request)
8
+
9
+ If you find a security vulnerability, DO NOT open an issue. Email <info@uffizzi.com> instead.
10
+
11
+ ## Community
12
+
13
+ Please join us on the [Uffizzi Slack](https://join.slack.com/t/uffizzi/shared_invite/zt-ffr4o3x0-J~0yVT6qgFV~wmGm19Ux9A) where we look forward to discussing any feature requests, bugs, and other proposed changes.
data/Dockerfile ADDED
@@ -0,0 +1,22 @@
1
+ FROM ruby:3.0.2-alpine3.14
2
+
3
+ RUN apk update && apk upgrade
4
+ RUN apk add bash
5
+ RUN apk add curl-dev ruby-dev build-base git curl ruby-json openssl
6
+
7
+ RUN mkdir -p /gem
8
+ WORKDIR /gem
9
+
10
+ ENV GEM_HOME="/usr/local/bundle"
11
+ ENV PATH $GEM_HOME/bin:$GEM_HOME/gems/bin:$PATH
12
+
13
+ COPY lib/uffizzi/version.rb /gem/lib/uffizzi/
14
+ COPY uffizzi.gemspec /gem/
15
+ COPY Gemfile* /gem/
16
+ RUN bundle install --jobs 4
17
+
18
+ COPY . /gem
19
+
20
+ RUN rake install
21
+
22
+ CMD ["uffizzi"]
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec