digicert 0.4.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: e2099a3dbed371814f946054f72c991ca11b8327
4
- data.tar.gz: 14593dbf7ac9ef432fb80fdf1314d6dfc790b81e
2
+ SHA256:
3
+ metadata.gz: d89764dabc65977845071af8f2743a0589353d09525b0f81a4e56e13b14a6f68
4
+ data.tar.gz: 4b84bbc8ef541224598c0ab556975732068c1298fbc3849fced027e7ca4a059b
5
5
  SHA512:
6
- metadata.gz: 9914c23d6e411677f84f8d926408d85a6487f4d050d573106c3e3b23b0df6380acd914b670e59c777650f9330e3ea6fcb68f7a9b63632a77158f70721a9203bf
7
- data.tar.gz: d970af1cb439d97d7c9a35f70ebae5b813149b208922641983e3c0c4120d32c8c5075db0344d385b260d75ad0cb4cac2fdf419d10fb882bbaec5387368cd5e1c
6
+ metadata.gz: 9999f95d2a985d81d7d133864a8769b7e1a7184d9780d9d0c649ca681f64dfe298da9fdaacd5f613732ec3df9cdd36f069fde6461802669dc408db2ce94f9bb3
7
+ data.tar.gz: 385f1322a850d186989f20da32e5ca3530d564479f89f2c055650956732f2cfe14a051fe64a340ff2d359366d3d4ac066dc4bb329e7f64e9b3e4bacb64c52e93
@@ -0,0 +1,27 @@
1
+ name: test
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ tags: [ v* ]
7
+ pull_request:
8
+
9
+ jobs:
10
+ test:
11
+ name: RSpec
12
+ runs-on: ${{ matrix.os }}
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ ruby: ["2.6", "2.7", "3.0", "3.1"]
17
+ os: [ ubuntu-latest, windows-latest, macos-latest ]
18
+
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+
22
+ - uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby }}
25
+ bundler-cache: true
26
+
27
+ - run: bundle exec rake
data/.rubocop.yml CHANGED
@@ -1,650 +1,10 @@
1
- AllCops:
2
- Exclude:
3
- - db/schema.rb
4
-
5
- Naming/AccessorMethodName:
6
- Description: Check the naming of accessor methods for get_/set_.
7
- Enabled: false
8
-
9
- Style/Alias:
10
- Description: 'Use alias_method instead of alias.'
11
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#alias-method'
12
- Enabled: false
13
-
14
- Style/ArrayJoin:
15
- Description: 'Use Array#join instead of Array#*.'
16
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#array-join'
17
- Enabled: false
18
-
19
- Style/AsciiComments:
20
- Description: 'Use only ascii symbols in comments.'
21
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-comments'
22
- Enabled: false
23
-
24
- Naming/AsciiIdentifiers:
25
- Description: 'Use only ascii symbols in identifiers.'
26
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-identifiers'
27
- Enabled: false
28
-
29
- Style/Attr:
30
- Description: 'Checks for uses of Module#attr.'
31
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr'
32
- Enabled: false
33
-
34
- Metrics/BlockNesting:
35
- Description: 'Avoid excessive block nesting'
36
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#three-is-the-number-thou-shalt-count'
37
- Enabled: false
38
-
39
- Style/CaseEquality:
40
- Description: 'Avoid explicit use of the case equality operator(===).'
41
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-case-equality'
42
- Enabled: false
43
-
44
- Style/CharacterLiteral:
45
- Description: 'Checks for uses of character literals.'
46
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-character-literals'
47
- Enabled: false
48
-
49
- Style/ClassAndModuleChildren:
50
- Description: 'Checks style of children classes and modules.'
51
- Enabled: true
52
- EnforcedStyle: nested
53
-
54
- Metrics/ClassLength:
55
- Description: 'Avoid classes longer than 100 lines of code.'
56
- Enabled: false
57
-
58
- Metrics/ModuleLength:
59
- Description: 'Avoid modules longer than 100 lines of code.'
60
- Enabled: false
61
-
62
- Style/ClassVars:
63
- Description: 'Avoid the use of class variables.'
64
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-class-vars'
65
- Enabled: false
66
-
67
- Style/CollectionMethods:
68
- Enabled: true
69
- PreferredMethods:
70
- find: detect
71
- inject: reduce
72
- collect: map
73
- find_all: select
74
-
75
- Style/ColonMethodCall:
76
- Description: 'Do not use :: for method call.'
77
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#double-colons'
78
- Enabled: false
79
-
80
- Style/CommentAnnotation:
81
- Description: >-
82
- Checks formatting of special comments
83
- (TODO, FIXME, OPTIMIZE, HACK, REVIEW).
84
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#annotate-keywords'
85
- Enabled: false
86
-
87
- Metrics/AbcSize:
88
- Description: >-
89
- A calculated magnitude based on number of assignments,
90
- branches, and conditions.
91
- Enabled: false
92
-
93
- Metrics/BlockLength:
94
- CountComments: true # count full line comments?
95
- Max: 25
96
- ExcludedMethods: []
97
- Exclude:
98
- - "spec/**/*"
99
-
100
- Metrics/CyclomaticComplexity:
101
- Description: >-
102
- A complexity metric that is strongly correlated to the number
103
- of test cases needed to validate a method.
104
- Enabled: false
105
-
106
- Rails/Delegate:
107
- Description: 'Prefer delegate method for delegations.'
108
- Enabled: false
109
-
110
- Style/PreferredHashMethods:
111
- Description: 'Checks use of `has_key?` and `has_value?` Hash methods.'
112
- StyleGuide: '#hash-key'
113
- Enabled: false
114
-
115
- Style/Documentation:
116
- Description: 'Document classes and non-namespace modules.'
117
- Enabled: false
118
-
119
- Style/DoubleNegation:
120
- Description: 'Checks for uses of double negation (!!).'
121
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-bang-bang'
122
- Enabled: false
123
-
124
- Style/EachWithObject:
125
- Description: 'Prefer `each_with_object` over `inject` or `reduce`.'
126
- Enabled: false
127
-
128
- Style/EmptyLiteral:
129
- Description: 'Prefer literals to Array.new/Hash.new/String.new.'
130
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#literal-array-hash'
131
- Enabled: false
132
-
133
- # Checks whether the source file has a utf-8 encoding comment or not
134
- # AutoCorrectEncodingComment must match the regex
135
- # /#.*coding\s?[:=]\s?(?:UTF|utf)-8/
136
- Style/Encoding:
137
- Enabled: false
138
-
139
- Style/EvenOdd:
140
- Description: 'Favor the use of Fixnum#even? && Fixnum#odd?'
141
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
142
- Enabled: false
143
-
144
- Naming/FileName:
145
- Description: 'Use snake_case for source file names.'
146
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-files'
147
- Enabled: false
148
-
149
- Style/FrozenStringLiteralComment:
150
- Description: >-
151
- Add the frozen_string_literal comment to the top of files
152
- to help transition from Ruby 2.3.0 to Ruby 3.0.
153
- Enabled: false
154
-
155
- Style/FlipFlop:
156
- Description: 'Checks for flip flops'
157
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-flip-flops'
158
- Enabled: false
159
-
160
- Style/FormatString:
161
- Description: 'Enforce the use of Kernel#sprintf, Kernel#format or String#%.'
162
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#sprintf'
163
- Enabled: false
164
-
165
- Style/GlobalVars:
166
- Description: 'Do not introduce global variables.'
167
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#instance-vars'
168
- Reference: 'http://www.zenspider.com/Languages/Ruby/QuickRef.html'
169
- Enabled: false
170
-
171
- Style/GuardClause:
172
- Description: 'Check for conditionals that can be replaced with guard clauses'
173
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals'
174
- Enabled: false
175
-
176
- Style/IfUnlessModifier:
177
- Description: >-
178
- Favor modifier if/unless usage when you have a
179
- single-line body.
180
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#if-as-a-modifier'
181
- Enabled: false
182
-
183
- Style/IfWithSemicolon:
184
- Description: 'Do not use if x; .... Use the ternary operator instead.'
185
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-semicolon-ifs'
186
- Enabled: false
187
-
188
- Style/InlineComment:
189
- Description: 'Avoid inline comments.'
190
- Enabled: false
191
-
192
- Style/Lambda:
193
- Description: 'Use the new lambda literal syntax for single-line blocks.'
194
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#lambda-multi-line'
195
- Enabled: false
196
-
197
- Style/LambdaCall:
198
- Description: 'Use lambda.call(...) instead of lambda.(...).'
199
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc-call'
200
- Enabled: false
201
-
202
- Style/LineEndConcatenation:
203
- Description: >-
204
- Use \ instead of + or << to concatenate two string literals at
205
- line end.
206
- Enabled: false
207
-
208
- Metrics/LineLength:
209
- Description: 'Limit lines to 80 characters.'
210
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#80-character-limits'
211
- Max: 80
212
-
213
- Metrics/MethodLength:
214
- Description: 'Avoid methods longer than 10 lines of code.'
215
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#short-methods'
216
- Enabled: false
217
-
218
- Style/ModuleFunction:
219
- Description: 'Checks for usage of `extend self` in modules.'
220
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#module-function'
221
- Enabled: false
222
-
223
- Style/MultilineBlockChain:
224
- Description: 'Avoid multi-line chains of blocks.'
225
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#single-line-blocks'
226
- Enabled: false
227
-
228
- Style/NegatedIf:
229
- Description: >-
230
- Favor unless over if for negative conditions
231
- (or control flow or).
232
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#unless-for-negatives'
233
- Enabled: false
234
-
235
- Style/NegatedWhile:
236
- Description: 'Favor until over while for negative conditions.'
237
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#until-for-negatives'
238
- Enabled: false
239
-
240
- Style/Next:
241
- Description: 'Use `next` to skip iteration instead of a condition at the end.'
242
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals'
243
- Enabled: false
244
-
245
- Style/NilComparison:
246
- Description: 'Prefer x.nil? to x == nil.'
247
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
248
- Enabled: false
249
-
250
- Style/Not:
251
- Description: 'Use ! instead of not.'
252
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bang-not-not'
253
- Enabled: false
254
-
255
- Style/NumericLiterals:
256
- Description: >-
257
- Add underscores to large numeric literals to improve their
258
- readability.
259
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscores-in-numerics'
260
- Enabled: false
261
-
262
- Style/OneLineConditional:
263
- Description: >-
264
- Favor the ternary operator(?:) over
265
- if/then/else/end constructs.
266
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#ternary-operator'
267
- Enabled: false
268
-
269
- Naming/BinaryOperatorParameterName:
270
- Description: 'When defining binary operators, name the argument other.'
271
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#other-arg'
272
- Enabled: false
273
-
274
- Metrics/ParameterLists:
275
- Description: 'Avoid parameter lists longer than three or four parameters.'
276
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#too-many-params'
277
- Enabled: false
278
-
279
- Style/PercentLiteralDelimiters:
280
- Description: 'Use `%`-literal delimiters consistently'
281
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-literal-braces'
282
- Enabled: false
283
-
284
- Style/PerlBackrefs:
285
- Description: 'Avoid Perl-style regex back references.'
286
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-perl-regexp-last-matchers'
287
- Enabled: false
288
-
289
- Naming/PredicateName:
290
- Description: 'Check the names of predicate methods.'
291
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark'
292
- NamePrefixBlacklist:
293
- - is_
294
- Exclude:
295
- - spec/**/*
296
-
297
- Style/Proc:
298
- Description: 'Use proc instead of Proc.new.'
299
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc'
300
- Enabled: false
301
-
302
- Style/RaiseArgs:
303
- Description: 'Checks the arguments passed to raise/fail.'
304
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#exception-class-messages'
305
- Enabled: false
306
-
307
- Style/RegexpLiteral:
308
- Description: 'Use / or %r around regular expressions.'
309
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-r'
310
- Enabled: false
311
-
312
- Style/SelfAssignment:
313
- Description: >-
314
- Checks for places where self-assignment shorthand should have
315
- been used.
316
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#self-assignment'
317
- Enabled: false
318
-
319
- Style/SingleLineBlockParams:
320
- Description: 'Enforces the names of some block params.'
321
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#reduce-blocks'
322
- Enabled: false
1
+ # Auto-generated by Cimas: Do not edit it manually!
2
+ # See https://github.com/metanorma/cimas
3
+ inherit_from:
4
+ - https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml
323
5
 
324
- Style/SingleLineMethods:
325
- Description: 'Avoid single-line methods.'
326
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-single-line-methods'
327
- Enabled: false
6
+ # local repo-specific modifications
7
+ # ...
328
8
 
329
- Style/SignalException:
330
- Description: 'Checks for proper usage of fail and raise.'
331
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#fail-method'
332
- Enabled: false
333
-
334
- Style/SpecialGlobalVars:
335
- Description: 'Avoid Perl-style global variables.'
336
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-cryptic-perlisms'
337
- Enabled: false
338
-
339
- Style/StringLiterals:
340
- Description: 'Checks if uses of quotes match the configured preference.'
341
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-string-literals'
342
- EnforcedStyle: double_quotes
343
- Enabled: true
344
-
345
- Style/TrailingCommaInArguments:
346
- Description: 'Checks for trailing comma in argument lists.'
347
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
348
- EnforcedStyleForMultiline: comma
349
- SupportedStylesForMultiline:
350
- - comma
351
- - consistent_comma
352
- - no_comma
353
- Enabled: true
354
-
355
- Style/TrailingCommaInArrayLiteral:
356
- Description: 'Checks for trailing comma in array literals.'
357
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
358
- EnforcedStyleForMultiline: comma
359
- SupportedStylesForMultiline:
360
- - comma
361
- - consistent_comma
362
- - no_comma
363
- Enabled: true
364
-
365
- Style/TrailingCommaInHashLiteral:
366
- Description: 'Checks for trailing comma in hash literals.'
367
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
368
- EnforcedStyleForMultiline: comma
369
- SupportedStylesForMultiline:
370
- - comma
371
- - consistent_comma
372
- - no_comma
373
- Enabled: true
374
-
375
- Style/TrivialAccessors:
376
- Description: 'Prefer attr_* methods to trivial readers/writers.'
377
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr_family'
378
- Enabled: false
379
-
380
- Style/VariableInterpolation:
381
- Description: >-
382
- Don't interpolate global, instance and class variables
383
- directly in strings.
384
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#curlies-interpolate'
385
- Enabled: false
386
-
387
- Style/WhenThen:
388
- Description: 'Use when x then ... for one-line cases.'
389
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#one-line-cases'
390
- Enabled: false
391
-
392
- Style/WhileUntilModifier:
393
- Description: >-
394
- Favor modifier while/until usage when you have a
395
- single-line body.
396
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#while-as-a-modifier'
397
- Enabled: false
398
-
399
- Style/WordArray:
400
- Description: 'Use %w or %W for arrays of words.'
401
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-w'
402
- Enabled: false
403
-
404
- # Layout
405
-
406
- Layout/AlignParameters:
407
- Description: 'Here we check if the parameters on a multi-line method call or definition are aligned.'
408
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-double-indent'
409
- Enabled: false
410
-
411
- Layout/ConditionPosition:
412
- Description: >-
413
- Checks for condition placed in a confusing position relative to
414
- the keyword.
415
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#same-line-condition'
416
- Enabled: false
417
-
418
- Layout/DotPosition:
419
- Description: 'Checks the position of the dot in multi-line method calls.'
420
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains'
421
- EnforcedStyle: trailing
422
-
423
- Layout/ExtraSpacing:
424
- Description: 'Do not use unnecessary spacing.'
425
- Enabled: true
426
-
427
- Layout/MultilineOperationIndentation:
428
- Description: >-
429
- Checks indentation of binary operations that span more than
430
- one line.
431
- Enabled: true
432
- EnforcedStyle: indented
433
-
434
- Layout/MultilineMethodCallIndentation:
435
- Description: >-
436
- Checks indentation of method calls with the dot operator
437
- that span more than one line.
438
- Enabled: true
439
- EnforcedStyle: indented
440
-
441
- Layout/InitialIndentation:
442
- Description: >-
443
- Checks the indentation of the first non-blank non-comment line in a file.
444
- Enabled: false
445
-
446
- # Lint
447
-
448
- Lint/AmbiguousOperator:
449
- Description: >-
450
- Checks for ambiguous operators in the first argument of a
451
- method invocation without parentheses.
452
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-as-args'
453
- Enabled: false
454
-
455
- Lint/AmbiguousRegexpLiteral:
456
- Description: >-
457
- Checks for ambiguous regexp literals in the first argument of
458
- a method invocation without parenthesis.
459
- Enabled: false
460
-
461
- Lint/AssignmentInCondition:
462
- Description: "Don't use assignment in conditions."
463
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#safe-assignment-in-condition'
464
- Enabled: false
465
-
466
- Lint/CircularArgumentReference:
467
- Description: "Don't refer to the keyword argument in the default value."
468
- Enabled: false
469
-
470
- Lint/DeprecatedClassMethods:
471
- Description: 'Check for deprecated class method calls.'
472
- Enabled: false
473
-
474
- Lint/DuplicatedKey:
475
- Description: 'Check for duplicate keys in hash literals.'
476
- Enabled: false
477
-
478
- Lint/EachWithObjectArgument:
479
- Description: 'Check for immutable argument given to each_with_object.'
480
- Enabled: false
481
-
482
- Lint/ElseLayout:
483
- Description: 'Check for odd code arrangement in an else block.'
484
- Enabled: false
485
-
486
- Lint/FormatParameterMismatch:
487
- Description: 'The number of parameters to format/sprint must match the fields.'
488
- Enabled: false
489
-
490
- Lint/HandleExceptions:
491
- Description: "Don't suppress exception."
492
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions'
493
- Enabled: false
494
-
495
- Lint/LiteralAsCondition:
496
- Description: 'Checks of literals used in conditions.'
497
- Enabled: false
498
-
499
- Lint/LiteralInInterpolation:
500
- Description: 'Checks for literals used in interpolation.'
501
- Enabled: false
502
-
503
- Lint/Loop:
504
- Description: >-
505
- Use Kernel#loop with break rather than begin/end/until or
506
- begin/end/while for post-loop tests.
507
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#loop-with-break'
508
- Enabled: false
509
-
510
- Lint/NestedMethodDefinition:
511
- Description: 'Do not use nested method definitions.'
512
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-methods'
513
- Enabled: false
514
-
515
- Lint/NonLocalExitFromIterator:
516
- Description: 'Do not use return in iterator to cause non-local exit.'
517
- Enabled: false
518
-
519
- Lint/ParenthesesAsGroupedExpression:
520
- Description: >-
521
- Checks for method calls with a space before the opening
522
- parenthesis.
523
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-no-spaces'
524
- Enabled: false
525
-
526
- Lint/RequireParentheses:
527
- Description: >-
528
- Use parentheses in the method call to avoid confusion
529
- about precedence.
530
- Enabled: false
531
-
532
- Lint/UnderscorePrefixedVariableName:
533
- Description: 'Do not use prefix `_` for a variable that is used.'
534
- Enabled: false
535
-
536
- Lint/UnneededCopDisableDirective:
537
- Description: >-
538
- Checks for rubocop:disable comments that can be removed.
539
- Note: this cop is not disabled when disabling all cops.
540
- It must be explicitly disabled.
541
- Enabled: false
542
-
543
- Lint/Void:
544
- Description: 'Possible use of operator/literal/variable in void context.'
545
- Enabled: false
546
-
547
- # Performance
548
-
549
- Performance/CaseWhenSplat:
550
- Description: >-
551
- Place `when` conditions that use splat at the end
552
- of the list of `when` branches.
553
- Enabled: false
554
-
555
- Performance/Count:
556
- Description: >-
557
- Use `count` instead of `select...size`, `reject...size`,
558
- `select...count`, `reject...count`, `select...length`,
559
- and `reject...length`.
560
- Enabled: false
561
-
562
- Performance/Detect:
563
- Description: >-
564
- Use `detect` instead of `select.first`, `find_all.first`,
565
- `select.last`, and `find_all.last`.
566
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerabledetect-vs-enumerableselectfirst-code'
567
- Enabled: false
568
-
569
- Performance/FlatMap:
570
- Description: >-
571
- Use `Enumerable#flat_map`
572
- instead of `Enumerable#map...Array#flatten(1)`
573
- or `Enumberable#collect..Array#flatten(1)`
574
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerablemaparrayflatten-vs-enumerableflat_map-code'
575
- Enabled: false
576
-
577
- Performance/ReverseEach:
578
- Description: 'Use `reverse_each` instead of `reverse.each`.'
579
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerablereverseeach-vs-enumerablereverse_each-code'
580
- Enabled: false
581
-
582
- Performance/Sample:
583
- Description: >-
584
- Use `sample` instead of `shuffle.first`,
585
- `shuffle.last`, and `shuffle[Fixnum]`.
586
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#arrayshufflefirst-vs-arraysample-code'
587
- Enabled: false
588
-
589
- Performance/Size:
590
- Description: >-
591
- Use `size` instead of `count` for counting
592
- the number of elements in `Array` and `Hash`.
593
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#arraycount-vs-arraysize-code'
594
- Enabled: false
595
-
596
- Performance/StringReplacement:
597
- Description: >-
598
- Use `tr` instead of `gsub` when you are replacing the same
599
- number of characters. Use `delete` instead of `gsub` when
600
- you are deleting characters.
601
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#stringgsub-vs-stringtr-code'
602
- Enabled: false
603
-
604
- # Rails
605
-
606
- Rails/ActionFilter:
607
- Description: 'Enforces consistent use of action filter methods.'
608
- Enabled: false
609
-
610
- Rails/Date:
611
- Description: >-
612
- Checks the correct usage of date aware methods,
613
- such as Date.today, Date.current etc.
614
- Enabled: false
615
-
616
- Rails/FindBy:
617
- Description: 'Prefer find_by over where.first.'
618
- Enabled: false
619
-
620
- Rails/FindEach:
621
- Description: 'Prefer all.find_each over all.find.'
622
- Enabled: false
623
-
624
- Rails/HasAndBelongsToMany:
625
- Description: 'Prefer has_many :through to has_and_belongs_to_many.'
626
- Enabled: false
627
-
628
- Rails/Output:
629
- Description: 'Checks for calls to puts, print, etc.'
630
- Enabled: false
631
-
632
- Rails/ReadWriteAttribute:
633
- Description: >-
634
- Checks for read_attribute(:attr) and
635
- write_attribute(:attr, val).
636
- Enabled: false
637
-
638
- Rails/ScopeArgs:
639
- Description: 'Checks the arguments of ActiveRecord scopes.'
640
- Enabled: false
641
-
642
- Rails/TimeZone:
643
- Description: 'Checks the correct usage of time zone aware methods.'
644
- StyleGuide: 'https://github.com/bbatsov/rails-style-guide#time'
645
- Reference: 'http://danilenko.org/2012/7/6/rails_timezones'
646
- Enabled: false
647
-
648
- Rails/Validation:
649
- Description: 'Use validates :attribute, hash of validations.'
650
- Enabled: false
9
+ AllCops:
10
+ TargetRubyVersion: 2.5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 0.5.0 (2020-03-03)
2
+
3
+ * Remove bundler's hard dependency
4
+ * Add server platform id back for order
5
+
6
+ ## 0.4.1 (2018-10-26)
7
+
8
+ * Add support for SSL Multi Domain Order
9
+ * Add support for ssl ev multi domain Order
10
+
1
11
  ## 0.4.0 (2018-07-22)
2
12
 
3
13
  * Add option support on certificate duplication
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Digicert
2
2
 
3
- [![Build
4
- Status](https://travis-ci.org/riboseinc/digicert.svg?branch=master)](https://travis-ci.org/riboseinc/digicert)
3
+ [![Build Status](https://github.com/riboseinc/digicert/actions/workflows/test.yml/badge.svg)](https://github.com/riboseinc/digicert/actions/workflows/test.yml)
5
4
  [![Code
6
5
  Climate](https://codeclimate.com/github/riboseinc/digicert/badges/gpa.svg)](https://codeclimate.com/github/riboseinc/digicert)
7
6
  [![Gem
data/digicert.gemspec CHANGED
@@ -17,14 +17,13 @@ Gem::Specification.new do |spec|
17
17
  spec.require_paths = ["lib"]
18
18
  spec.files = `git ls-files`.split("\n")
19
19
  spec.test_files = `git ls-files -- {spec}/*`.split("\n")
20
- spec.required_ruby_version = Gem::Requirement.new(">= 2.1.9")
20
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.6")
21
21
 
22
22
  spec.add_dependency "r509", "~> 1.0"
23
23
 
24
24
  spec.add_development_dependency "pry"
25
25
  spec.add_development_dependency "dotenv"
26
- spec.add_development_dependency "bundler", "~> 1.14"
27
26
  spec.add_development_dependency "rake", "~> 12.0"
28
27
  spec.add_development_dependency "rspec", "~> 3.0"
29
- spec.add_development_dependency "webmock", "~> 2.0"
28
+ spec.add_development_dependency "webmock", "~> 3.0"
30
29
  end
@@ -7,7 +7,7 @@ module Digicert
7
7
 
8
8
  def create
9
9
  Digicert::Request.new(
10
- :post, resource_creation_path, validate(attributes)
10
+ :post, resource_creation_path, **validate(**attributes)
11
11
  ).parse
12
12
  end
13
13
 
@@ -7,7 +7,7 @@ module Digicert
7
7
 
8
8
  def update
9
9
  Digicert::Request.new(
10
- :put, resource_update_path, attributes
10
+ :put, resource_update_path, **attributes
11
11
  ).run
12
12
  end
13
13
 
@@ -8,8 +8,8 @@ module Digicert
8
8
 
9
9
  def validate(certificate:, organization:, validity_years:, **attributes)
10
10
  required_attributes = {
11
- certificate: validate_certificate(certificate),
12
- organization: validate_organization(organization),
11
+ certificate: validate_certificate(**certificate),
12
+ organization: validate_organization(**organization),
13
13
  validity_years: validity_years,
14
14
  }
15
15
 
@@ -13,7 +13,7 @@ module Digicert
13
13
  end
14
14
 
15
15
  def revoke
16
- request_klass.new(:put, revocation_path, attributes).parse
16
+ request_klass.new(:put, revocation_path, **attributes).parse
17
17
  end
18
18
 
19
19
  def self.revoke(certificate_id, attributes = {})
@@ -22,7 +22,7 @@ module Digicert
22
22
 
23
23
  def download_to_path(path:, ext: "zip", **attributes)
24
24
  certificate_downloader.fetch_to_path(
25
- resource_id, attributes.merge(path: path, ext: ext)
25
+ resource_id, **attributes.merge(path: path, ext: ext)
26
26
  )
27
27
  end
28
28
 
@@ -10,7 +10,7 @@ module Digicert
10
10
  end
11
11
 
12
12
  def validate_certificate(csr:, **attributes)
13
- super(attributes.merge(csr: csr))
13
+ super(**attributes.merge(csr: csr))
14
14
  end
15
15
  end
16
16
  end
@@ -14,7 +14,7 @@ module Digicert
14
14
  end
15
15
 
16
16
  def self.generate(attributes)
17
- new(attributes).generate
17
+ new(**attributes).generate
18
18
  end
19
19
 
20
20
  private
@@ -29,7 +29,7 @@ module Digicert
29
29
 
30
30
  def validate_validations(attributes)
31
31
  attributes.map do |attribute|
32
- validate_validation(attribute)
32
+ validate_validation(**attribute)
33
33
  end
34
34
  end
35
35
 
@@ -43,7 +43,7 @@ module Digicert
43
43
  # Ref: https://www.digicert.com/services/v2/documentation/appendix-validation-types
44
44
  #
45
45
  def validate_validation(type:, **attributes)
46
- { type: type.downcase }.merge(attributes)
46
+ attributes.merge(type: type.downcase)
47
47
  end
48
48
 
49
49
  def validate(name:, organization:, validations:, **attributes)
@@ -10,7 +10,9 @@ module Digicert
10
10
 
11
11
  def self.valid?(token:, email:)
12
12
  response = Digicert::Request.new(
13
- :put, ["email-validation", token].join("/"), params: { email: email }
13
+ :put,
14
+ ["email-validation", token].join("/"),
15
+ **{ params: { email: email } },
14
16
  ).run
15
17
 
16
18
  response.code.to_i == 204
@@ -4,6 +4,8 @@ require "digicert/findable"
4
4
  require "digicert/ssl_certificate/ssl_plus"
5
5
  require "digicert/ssl_certificate/ssl_ev_plus"
6
6
  require "digicert/ssl_certificate/ssl_wildcard"
7
+ require "digicert/ssl_certificate/ssl_multi_domain"
8
+ require "digicert/ssl_certificate/ssl_ev_multi_domain"
7
9
 
8
10
  require "digicert/client_certificate/premium"
9
11
  require "digicert/client_certificate/private_premium"
@@ -73,6 +75,8 @@ module Digicert
73
75
  ssl_plus: Digicert::SSLCertificate::SSLPlus,
74
76
  ssl_wildcard: Digicert::SSLCertificate::SSLWildcard,
75
77
  ssl_ev_plus: Digicert::SSLCertificate::SSLEVPlus,
78
+ ssl_multi_domain: Digicert::SSLCertificate::SSLMultiDomain,
79
+ ssl_ev_multi_domain: Digicert::SSLCertificate::SSLEVMultiDomain,
76
80
  client_premium: Digicert::ClientCertificate::Premium,
77
81
  email_security_plus: Digicert::ClientCertificate::EmailSecurityPlus,
78
82
  digital_signature_plus: Digicert::ClientCertificate::DigitalSignaturePlus,
@@ -4,7 +4,7 @@ module Digicert
4
4
  class OrderCancellation < Digicert::Base
5
5
  def create
6
6
  request_klass.new(
7
- :put, resource_path, default_attributes.merge(attributes)
7
+ :put, resource_path, **default_attributes.merge(attributes)
8
8
  ).run
9
9
  end
10
10
 
@@ -5,12 +5,12 @@ module Digicert
5
5
  include Digicert::Actions::Create
6
6
 
7
7
  def self.create(order_id:, **attributes)
8
- new(resource_id: order_id, **attributes).create
8
+ new(attributes.merge(resource_id: order_id)).create
9
9
  end
10
10
 
11
11
  private
12
12
 
13
- def validate(attributes)
13
+ def validate(**attributes)
14
14
  { certificate: order_attributes.merge(attributes) }
15
15
  end
16
16
 
@@ -20,13 +20,7 @@ module Digicert
20
20
  dns_names: simplified_certificate_dns_names,
21
21
  csr: order.certificate.csr,
22
22
  signature_hash: order.certificate.signature_hash,
23
-
24
- # In a recent changes, the order response does not seem
25
- # to have the paltform id in it, so let's not try to fetch
26
- # the platform id for now, and once confirmed then we can
27
- # also adjust this as necessary.
28
- #
29
- # server_platform: { id: order.certificate.server_platform.id },
23
+ server_platform: { id: order.certificate.server_platform.id },
30
24
  }
31
25
  end
32
26
 
@@ -23,7 +23,7 @@ module Digicert
23
23
  country: country,
24
24
  telephone: telephone,
25
25
  container: container,
26
- organization_contact: validate_contact(organization_contact),
26
+ organization_contact: validate_contact(**organization_contact),
27
27
  }
28
28
 
29
29
  required_attributes.merge(attributes)
@@ -0,0 +1,13 @@
1
+ require "digicert/ssl_certificate/base"
2
+
3
+ module Digicert
4
+ module SSLCertificate
5
+ class SSLEVMultiDomain < Digicert::SSLCertificate::Base
6
+ private
7
+
8
+ def certificate_type
9
+ "ssl_ev_multi_domain"
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ require "digicert/ssl_certificate/base"
2
+
3
+ module Digicert
4
+ module SSLCertificate
5
+ class SSLMultiDomain < Digicert::SSLCertificate::Base
6
+ private
7
+
8
+ def certificate_type
9
+ "ssl_multi_domain"
10
+ end
11
+ end
12
+ end
13
+ end
@@ -21,5 +21,5 @@
21
21
  # ++
22
22
 
23
23
  module Digicert
24
- VERSION = "0.4.0".freeze
24
+ VERSION = "1.0.0".freeze
25
25
  end
@@ -4,7 +4,7 @@ require "digicert/base"
4
4
  RSpec.describe "Digicert::Actions::Create" do
5
5
  describe ".create" do
6
6
  it "creates a new resource" do
7
- stub_digicert_container_create_api(container_attributes)
7
+ stub_digicert_container_create_api(**container_attributes)
8
8
  resource = Digicert::TestCreateAction.create(container_attributes)
9
9
 
10
10
  expect(resource.id).not_to be_nil
@@ -52,7 +52,7 @@ RSpec.describe Digicert::Certificate do
52
52
  }
53
53
 
54
54
  stub_digicert_certificate_download_by_platform(certificate_id)
55
- certificate.download_to_path(download_to_path_attributes)
55
+ certificate.download_to_path(**download_to_path_attributes)
56
56
 
57
57
  download_url =
58
58
  [download_to_path_attributes[:path], "certificate.zip"].join("/")
@@ -13,8 +13,8 @@ RSpec.describe Digicert::Container do
13
13
 
14
14
  describe ".create" do
15
15
  it "creates a new sub container" do
16
- stub_digicert_container_create_api(container_attributes)
17
- container = Digicert::Container.create(container_attributes)
16
+ stub_digicert_container_create_api(**container_attributes)
17
+ container = Digicert::Container.create(**container_attributes)
18
18
 
19
19
  expect(container.id).not_to be_nil
20
20
  end
@@ -79,8 +79,8 @@ RSpec.describe Digicert::Domain do
79
79
  organization: { id: 117483 },
80
80
  validations: [
81
81
  {
82
- type: "ev",
83
82
  user: { id: 12 },
83
+ type: "ev",
84
84
  },
85
85
  ],
86
86
  dcv: { method: "email" },
@@ -16,10 +16,10 @@ RSpec.describe Digicert::EmailValidation do
16
16
  describe ".valid?" do
17
17
  it "validates the email through digicert" do
18
18
  validation_attributes = { token: "token", email: "email@example.com" }
19
- stub_digicert_email_validations_validate_api(validation_attributes)
19
+ stub_digicert_email_validations_validate_api(**validation_attributes)
20
20
 
21
21
  expect(
22
- Digicert::EmailValidation.valid?(validation_attributes),
22
+ Digicert::EmailValidation.valid?(**validation_attributes),
23
23
  ).to eq(true)
24
24
  end
25
25
  end
@@ -34,7 +34,7 @@ RSpec.describe Digicert::OrderDuplicator do
34
34
  dns_names: order.certificate.dns_names,
35
35
  csr: order.certificate.csr,
36
36
  signature_hash: order.certificate.signature_hash,
37
- # server_platform: { id: order.certificate.server_platform.id },
37
+ server_platform: { id: order.certificate.server_platform.id },
38
38
  }
39
39
  end
40
40
 
@@ -43,7 +43,7 @@ RSpec.describe Digicert::OrderReissuer do
43
43
  dns_names: order.certificate.dns_names,
44
44
  csr: order.certificate.csr,
45
45
  signature_hash: order.certificate.signature_hash,
46
- # server_platform: { id: order.certificate.server_platform.id },
46
+ server_platform: { id: order.certificate.server_platform.id },
47
47
  }
48
48
  end
49
49
 
@@ -0,0 +1,45 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe Digicert::SSLCertificate::SSLEVMultiDomain do
4
+ describe ".create" do
5
+ it "creates a new order for a ssl multi domain certificate" do
6
+ stub_digicert_order_create_api(
7
+ "ssl_ev_multi_domain", order_attributes
8
+ )
9
+
10
+ order = Digicert::SSLCertificate::SSLEVMultiDomain.create(
11
+ order_attributes,
12
+ )
13
+
14
+ expect(order.id).not_to be_nil
15
+ expect(order.requests.first.id).not_to be_nil
16
+ expect(order.requests.first.status).to eq("pending")
17
+ end
18
+ end
19
+
20
+ def order_attributes
21
+ {
22
+ certificate: {
23
+ organization_units: ["Developer Operations"],
24
+ server_platform: { id: 45 },
25
+ profile_option: "some_ssl_profile",
26
+ dns_names: [
27
+ "blue.digicert.com",
28
+ "white.digicert.com",
29
+ "blue.white.digicert.com",
30
+ ],
31
+
32
+ # Required for certificate
33
+ csr: "------ [CSR HERE] ------",
34
+ common_name: "digicert.com",
35
+ signature_hash: "sha256",
36
+ },
37
+ organization: { id: 117483 },
38
+ validity_years: 3,
39
+ custom_expiration_date: "2017-05-18",
40
+ comments: "Comments for the the approver",
41
+ disable_renewal_notifications: false,
42
+ renewal_of_order_id: 314152,
43
+ }
44
+ end
45
+ end
@@ -0,0 +1,45 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe Digicert::SSLCertificate::SSLMultiDomain do
4
+ describe ".create" do
5
+ it "creates a new order for a ssl multi domain certificate" do
6
+ stub_digicert_order_create_api(
7
+ "ssl_multi_domain", order_attributes
8
+ )
9
+
10
+ order = Digicert::SSLCertificate::SSLMultiDomain.create(
11
+ order_attributes
12
+ )
13
+
14
+ expect(order.id).not_to be_nil
15
+ expect(order.requests.first.id).not_to be_nil
16
+ expect(order.requests.first.status).to eq("pending")
17
+ end
18
+ end
19
+
20
+ def order_attributes
21
+ {
22
+ certificate: {
23
+ organization_units: ["Developer Operations"],
24
+ server_platform: { id: 45 },
25
+ profile_option: "some_ssl_profile",
26
+ dns_names: [
27
+ "blue.digicert.com",
28
+ "white.digicert.com",
29
+ "blue.white.digicert.com"
30
+ ],
31
+
32
+ # Required for certificate
33
+ csr: "------ [CSR HERE] ------",
34
+ common_name: "digicert.com",
35
+ signature_hash: "sha256",
36
+ },
37
+ organization: { id: 117483 },
38
+ validity_years: 3,
39
+ custom_expiration_date: "2017-05-18",
40
+ comments: "Comments for the the approver",
41
+ disable_renewal_notifications: false,
42
+ renewal_of_order_id: 314152,
43
+ }
44
+ end
45
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: digicert
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-22 00:00:00.000000000 Z
11
+ date: 2022-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: r509
@@ -52,20 +52,6 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: bundler
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '1.14'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '1.14'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: rake
71
57
  requirement: !ruby/object:Gem::Requirement
@@ -100,14 +86,14 @@ dependencies:
100
86
  requirements:
101
87
  - - "~>"
102
88
  - !ruby/object:Gem::Version
103
- version: '2.0'
89
+ version: '3.0'
104
90
  type: :development
105
91
  prerelease: false
106
92
  version_requirements: !ruby/object:Gem::Requirement
107
93
  requirements:
108
94
  - - "~>"
109
95
  - !ruby/object:Gem::Version
110
- version: '2.0'
96
+ version: '3.0'
111
97
  description: Digicert Ruby API.
112
98
  email:
113
99
  - operations@ribose.com
@@ -115,13 +101,13 @@ executables: []
115
101
  extensions: []
116
102
  extra_rdoc_files: []
117
103
  files:
104
+ - ".github/workflows/test.yml"
118
105
  - ".gitignore"
119
106
  - ".hound.yml"
120
107
  - ".rspec"
121
108
  - ".rubocop.yml"
122
109
  - ".sample.env"
123
110
  - ".sample.pryrc"
124
- - ".travis.yml"
125
111
  - CHANGELOG.md
126
112
  - CODE_OF_CONDUCT.md
127
113
  - Gemfile
@@ -177,7 +163,9 @@ files:
177
163
  - lib/digicert/response.rb
178
164
  - lib/digicert/rspec.rb
179
165
  - lib/digicert/ssl_certificate/base.rb
166
+ - lib/digicert/ssl_certificate/ssl_ev_multi_domain.rb
180
167
  - lib/digicert/ssl_certificate/ssl_ev_plus.rb
168
+ - lib/digicert/ssl_certificate/ssl_multi_domain.rb
181
169
  - lib/digicert/ssl_certificate/ssl_plus.rb
182
170
  - lib/digicert/ssl_certificate/ssl_wildcard.rb
183
171
  - lib/digicert/util.rb
@@ -213,7 +201,9 @@ files:
213
201
  - spec/digicert/organization_spec.rb
214
202
  - spec/digicert/product_spec.rb
215
203
  - spec/digicert/request_spec.rb
204
+ - spec/digicert/ssl_certificate/ssl_ev_multi_domain_spec.rb
216
205
  - spec/digicert/ssl_certificate/ssl_ev_plus_spec.rb
206
+ - spec/digicert/ssl_certificate/ssl_multi_domain_spec.rb
217
207
  - spec/digicert/ssl_certificate/ssl_plus_spec.rb
218
208
  - spec/digicert/ssl_certificate/ssl_wildcard_spec.rb
219
209
  - spec/digicert/util_spec.rb
@@ -269,7 +259,7 @@ homepage: https://www.ribose.com
269
259
  licenses:
270
260
  - MIT
271
261
  metadata: {}
272
- post_install_message:
262
+ post_install_message:
273
263
  rdoc_options: []
274
264
  require_paths:
275
265
  - lib
@@ -277,16 +267,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
277
267
  requirements:
278
268
  - - ">="
279
269
  - !ruby/object:Gem::Version
280
- version: 2.1.9
270
+ version: '2.6'
281
271
  required_rubygems_version: !ruby/object:Gem::Requirement
282
272
  requirements:
283
273
  - - ">="
284
274
  - !ruby/object:Gem::Version
285
275
  version: '0'
286
276
  requirements: []
287
- rubyforge_project:
288
- rubygems_version: 2.6.8
289
- signing_key:
277
+ rubygems_version: 3.2.3
278
+ signing_key:
290
279
  specification_version: 4
291
280
  summary: Digicert Ruby API.
292
281
  test_files: []
data/.travis.yml DELETED
@@ -1,8 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.4.1
5
- - 2.3.1
6
- - 2.2.0
7
- - 2.1.9
8
- before_install: gem install bundler -v 1.14.6