cem_win_spec 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +534 -0
- data/CODEOWNERS +2 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +115 -0
- data/LICENSE.txt +21 -0
- data/README.md +33 -0
- data/Rakefile +12 -0
- data/cem_win_spec.gemspec +37 -0
- data/exe/cem-win-spec +52 -0
- data/lib/cem_win_spec/fixture_cache.rb +121 -0
- data/lib/cem_win_spec/iap_tunnel.rb +174 -0
- data/lib/cem_win_spec/logging/formatter.rb +97 -0
- data/lib/cem_win_spec/logging.rb +170 -0
- data/lib/cem_win_spec/module_archive_builder.rb +84 -0
- data/lib/cem_win_spec/rake_tasks.rb +138 -0
- data/lib/cem_win_spec/remote_command.rb +47 -0
- data/lib/cem_win_spec/rspec_test_cmds.rb +51 -0
- data/lib/cem_win_spec/test_runner.rb +144 -0
- data/lib/cem_win_spec/version.rb +5 -0
- data/lib/cem_win_spec/win_exec/base_exec.rb +42 -0
- data/lib/cem_win_spec/win_exec/connection_opts.rb +169 -0
- data/lib/cem_win_spec/win_exec/local_exec.rb +74 -0
- data/lib/cem_win_spec/win_exec/output.rb +104 -0
- data/lib/cem_win_spec/win_exec/winrm_exec.rb +89 -0
- data/lib/cem_win_spec/win_exec.rb +234 -0
- data/lib/cem_win_spec.rb +79 -0
- data/sig/cem_win_spec.rbs +4 -0
- metadata +159 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3e203035d39f85443211c2780752bfe4ac3bcbdb00f2609e314ec2e9c590262a
|
4
|
+
data.tar.gz: fdf8d060009aec0fe839afa4fdba545e812c4933fb4fbc9f21dfa79a775808bf
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bcba5218950ecc0e48a696c49e96407dccd5d097365570e8a203bf204281a339a4b1f7f2e70bb7f3121dbdcd67639112cae189d688b7ed57e749b906bec0020e
|
7
|
+
data.tar.gz: 0a58f7fad80e1fecdbd5669f102a661bae70bb51beeb70fe378820436b8696eb9cb636024a6cac6957cc7ea4899c0d5f4c9c02d8d21a2ed14cee4de513a7439d
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,534 @@
|
|
1
|
+
---
|
2
|
+
require:
|
3
|
+
- rubocop-performance
|
4
|
+
- rubocop-rspec
|
5
|
+
AllCops:
|
6
|
+
DisplayCopNames: true
|
7
|
+
TargetRubyVersion: '2.7'
|
8
|
+
NewCops: disable
|
9
|
+
Include:
|
10
|
+
- "**/*.rb"
|
11
|
+
Exclude:
|
12
|
+
- bin/*
|
13
|
+
- ".vendor/**/*"
|
14
|
+
- "**/Gemfile"
|
15
|
+
- "**/Rakefile"
|
16
|
+
- pkg/**/*
|
17
|
+
- spec/fixtures/**/*
|
18
|
+
- vendor/**/*
|
19
|
+
- "**/Puppetfile"
|
20
|
+
- "**/Vagrantfile"
|
21
|
+
- "**/Guardfile"
|
22
|
+
- lib/puppet_x/puppetlabs/cem/rgl.rb
|
23
|
+
- lib/puppet_x/puppetlabs/cem/stream.rb
|
24
|
+
- dev/**/*
|
25
|
+
Layout/LineLength:
|
26
|
+
Description: People have wide screens, use them.
|
27
|
+
Max: 200
|
28
|
+
RSpec/BeforeAfterAll:
|
29
|
+
Description: Beware of using after(:all) as it may cause state to leak between tests.
|
30
|
+
A necessary evil in acceptance testing.
|
31
|
+
Exclude:
|
32
|
+
- spec/acceptance/**/*.rb
|
33
|
+
RSpec/HookArgument:
|
34
|
+
Description: Prefer explicit :each argument, matching existing module's style
|
35
|
+
EnforcedStyle: each
|
36
|
+
RSpec/DescribeSymbol:
|
37
|
+
Exclude:
|
38
|
+
- spec/unit/facter/**/*.rb
|
39
|
+
Style/BlockDelimiters:
|
40
|
+
Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to
|
41
|
+
be consistent then.
|
42
|
+
EnforcedStyle: braces_for_chaining
|
43
|
+
Style/ClassAndModuleChildren:
|
44
|
+
Description: Compact style reduces the required amount of indentation.
|
45
|
+
EnforcedStyle: compact
|
46
|
+
Style/EmptyElse:
|
47
|
+
Description: Enforce against empty else clauses, but allow `nil` for clarity.
|
48
|
+
EnforcedStyle: empty
|
49
|
+
Style/FormatString:
|
50
|
+
Description: Following the main puppet project's style, prefer the % format format.
|
51
|
+
EnforcedStyle: percent
|
52
|
+
Style/FormatStringToken:
|
53
|
+
Description: Following the main puppet project's style, prefer the simpler template
|
54
|
+
tokens over annotated ones.
|
55
|
+
EnforcedStyle: template
|
56
|
+
Style/Lambda:
|
57
|
+
Description: Prefer the keyword for easier discoverability.
|
58
|
+
EnforcedStyle: literal
|
59
|
+
Style/RegexpLiteral:
|
60
|
+
Description: Community preference. See https://github.com/voxpupuli/modulesync_config/issues/168
|
61
|
+
EnforcedStyle: percent_r
|
62
|
+
Style/TernaryParentheses:
|
63
|
+
Description: Checks for use of parentheses around ternary conditions. Enforce parentheses
|
64
|
+
on complex expressions for better readability, but seriously consider breaking
|
65
|
+
it up.
|
66
|
+
EnforcedStyle: require_parentheses_when_complex
|
67
|
+
Style/TrailingCommaInArguments:
|
68
|
+
Description: Prefer always trailing comma on multiline argument lists. This makes
|
69
|
+
diffs, and re-ordering nicer.
|
70
|
+
EnforcedStyleForMultiline: comma
|
71
|
+
Style/TrailingCommaInArrayLiteral:
|
72
|
+
Description: Prefer always trailing comma on multiline literals. This makes diffs,
|
73
|
+
and re-ordering nicer.
|
74
|
+
EnforcedStyleForMultiline: comma
|
75
|
+
Style/SymbolArray:
|
76
|
+
Enabled: false
|
77
|
+
Lint/ScriptPermission:
|
78
|
+
Enabled: false
|
79
|
+
Style/IfInsideElse:
|
80
|
+
Enabled: false
|
81
|
+
RSpec/MessageSpies:
|
82
|
+
EnforcedStyle: receive
|
83
|
+
Style/Documentation:
|
84
|
+
Exclude:
|
85
|
+
- lib/puppet/parser/functions/**/*
|
86
|
+
- spec/**/*
|
87
|
+
Style/WordArray:
|
88
|
+
Enabled: false
|
89
|
+
Performance/AncestorsInclude:
|
90
|
+
Enabled: true
|
91
|
+
Performance/BigDecimalWithNumericArgument:
|
92
|
+
Enabled: true
|
93
|
+
Performance/BlockGivenWithExplicitBlock:
|
94
|
+
Enabled: true
|
95
|
+
Performance/CaseWhenSplat:
|
96
|
+
Enabled: true
|
97
|
+
Performance/ConstantRegexp:
|
98
|
+
Enabled: true
|
99
|
+
Performance/MethodObjectAsBlock:
|
100
|
+
Enabled: true
|
101
|
+
Performance/RedundantSortBlock:
|
102
|
+
Enabled: true
|
103
|
+
Performance/RedundantStringChars:
|
104
|
+
Enabled: true
|
105
|
+
Performance/ReverseFirst:
|
106
|
+
Enabled: true
|
107
|
+
Performance/SortReverse:
|
108
|
+
Enabled: true
|
109
|
+
Performance/Squeeze:
|
110
|
+
Enabled: true
|
111
|
+
Performance/StringInclude:
|
112
|
+
Enabled: true
|
113
|
+
Performance/Sum:
|
114
|
+
Enabled: true
|
115
|
+
Style/CollectionMethods:
|
116
|
+
Enabled: true
|
117
|
+
Style/MethodCalledOnDoEndBlock:
|
118
|
+
Enabled: true
|
119
|
+
Style/StringMethods:
|
120
|
+
Enabled: true
|
121
|
+
Bundler/InsecureProtocolSource:
|
122
|
+
Enabled: false
|
123
|
+
Gemspec/DuplicatedAssignment:
|
124
|
+
Enabled: false
|
125
|
+
Gemspec/OrderedDependencies:
|
126
|
+
Enabled: false
|
127
|
+
Gemspec/RequiredRubyVersion:
|
128
|
+
Enabled: false
|
129
|
+
Gemspec/RubyVersionGlobalsUsage:
|
130
|
+
Enabled: false
|
131
|
+
Layout/ArgumentAlignment:
|
132
|
+
Enabled: false
|
133
|
+
Layout/BeginEndAlignment:
|
134
|
+
Enabled: false
|
135
|
+
Layout/ClosingHeredocIndentation:
|
136
|
+
Enabled: false
|
137
|
+
Layout/EmptyComment:
|
138
|
+
Enabled: false
|
139
|
+
Layout/EmptyLineAfterGuardClause:
|
140
|
+
Enabled: false
|
141
|
+
Layout/EmptyLinesAroundArguments:
|
142
|
+
Enabled: false
|
143
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
144
|
+
Enabled: false
|
145
|
+
Layout/EndOfLine:
|
146
|
+
Enabled: false
|
147
|
+
Layout/FirstArgumentIndentation:
|
148
|
+
Enabled: false
|
149
|
+
Layout/HashAlignment:
|
150
|
+
Enabled: false
|
151
|
+
Layout/HeredocIndentation:
|
152
|
+
Enabled: false
|
153
|
+
Layout/LeadingEmptyLines:
|
154
|
+
Enabled: false
|
155
|
+
Layout/SpaceAroundMethodCallOperator:
|
156
|
+
Enabled: false
|
157
|
+
Layout/SpaceInsideArrayLiteralBrackets:
|
158
|
+
Enabled: false
|
159
|
+
Layout/SpaceInsideReferenceBrackets:
|
160
|
+
Enabled: false
|
161
|
+
Lint/BigDecimalNew:
|
162
|
+
Enabled: false
|
163
|
+
Lint/BooleanSymbol:
|
164
|
+
Enabled: false
|
165
|
+
Lint/ConstantDefinitionInBlock:
|
166
|
+
Enabled: false
|
167
|
+
Lint/DeprecatedOpenSSLConstant:
|
168
|
+
Enabled: false
|
169
|
+
Lint/DisjunctiveAssignmentInConstructor:
|
170
|
+
Enabled: false
|
171
|
+
Lint/DuplicateElsifCondition:
|
172
|
+
Enabled: false
|
173
|
+
Lint/DuplicateRequire:
|
174
|
+
Enabled: false
|
175
|
+
Lint/DuplicateRescueException:
|
176
|
+
Enabled: false
|
177
|
+
Lint/EmptyConditionalBody:
|
178
|
+
Enabled: false
|
179
|
+
Lint/EmptyFile:
|
180
|
+
Enabled: false
|
181
|
+
Lint/ErbNewArguments:
|
182
|
+
Enabled: false
|
183
|
+
Lint/FloatComparison:
|
184
|
+
Enabled: false
|
185
|
+
Lint/HashCompareByIdentity:
|
186
|
+
Enabled: false
|
187
|
+
Lint/IdentityComparison:
|
188
|
+
Enabled: false
|
189
|
+
Lint/InterpolationCheck:
|
190
|
+
Enabled: false
|
191
|
+
Lint/MissingCopEnableDirective:
|
192
|
+
Enabled: false
|
193
|
+
Lint/MixedRegexpCaptureTypes:
|
194
|
+
Enabled: false
|
195
|
+
Lint/NestedPercentLiteral:
|
196
|
+
Enabled: false
|
197
|
+
Lint/NonDeterministicRequireOrder:
|
198
|
+
Enabled: false
|
199
|
+
Lint/OrderedMagicComments:
|
200
|
+
Enabled: false
|
201
|
+
Lint/OutOfRangeRegexpRef:
|
202
|
+
Enabled: false
|
203
|
+
Lint/RaiseException:
|
204
|
+
Enabled: false
|
205
|
+
Lint/RedundantCopEnableDirective:
|
206
|
+
Enabled: false
|
207
|
+
Lint/RedundantRequireStatement:
|
208
|
+
Enabled: false
|
209
|
+
Lint/RedundantSafeNavigation:
|
210
|
+
Enabled: false
|
211
|
+
Lint/RedundantWithIndex:
|
212
|
+
Enabled: false
|
213
|
+
Lint/RedundantWithObject:
|
214
|
+
Enabled: false
|
215
|
+
Lint/RegexpAsCondition:
|
216
|
+
Enabled: false
|
217
|
+
Lint/ReturnInVoidContext:
|
218
|
+
Enabled: false
|
219
|
+
Lint/SafeNavigationConsistency:
|
220
|
+
Enabled: false
|
221
|
+
Lint/SafeNavigationWithEmpty:
|
222
|
+
Enabled: false
|
223
|
+
Lint/SelfAssignment:
|
224
|
+
Enabled: false
|
225
|
+
Lint/SendWithMixinArgument:
|
226
|
+
Enabled: false
|
227
|
+
Lint/ShadowedArgument:
|
228
|
+
Enabled: false
|
229
|
+
Lint/StructNewOverride:
|
230
|
+
Enabled: false
|
231
|
+
Lint/ToJSON:
|
232
|
+
Enabled: false
|
233
|
+
Lint/TopLevelReturnWithArgument:
|
234
|
+
Enabled: false
|
235
|
+
Lint/TrailingCommaInAttributeDeclaration:
|
236
|
+
Enabled: false
|
237
|
+
Lint/UnreachableLoop:
|
238
|
+
Enabled: false
|
239
|
+
Lint/UriEscapeUnescape:
|
240
|
+
Enabled: false
|
241
|
+
Lint/UriRegexp:
|
242
|
+
Enabled: false
|
243
|
+
Lint/UselessMethodDefinition:
|
244
|
+
Enabled: false
|
245
|
+
Lint/UselessTimes:
|
246
|
+
Enabled: false
|
247
|
+
Metrics/AbcSize:
|
248
|
+
Enabled: false
|
249
|
+
Metrics/BlockLength:
|
250
|
+
Enabled: false
|
251
|
+
Metrics/BlockNesting:
|
252
|
+
Enabled: false
|
253
|
+
Metrics/ClassLength:
|
254
|
+
Enabled: false
|
255
|
+
Metrics/CyclomaticComplexity:
|
256
|
+
Enabled: false
|
257
|
+
Metrics/MethodLength:
|
258
|
+
Enabled: false
|
259
|
+
Metrics/ModuleLength:
|
260
|
+
Enabled: false
|
261
|
+
Metrics/ParameterLists:
|
262
|
+
Enabled: false
|
263
|
+
Metrics/PerceivedComplexity:
|
264
|
+
Enabled: false
|
265
|
+
Migration/DepartmentName:
|
266
|
+
Enabled: false
|
267
|
+
Naming/AccessorMethodName:
|
268
|
+
Enabled: false
|
269
|
+
Naming/BlockParameterName:
|
270
|
+
Enabled: false
|
271
|
+
Naming/FileName:
|
272
|
+
Exclude:
|
273
|
+
- spec/acceptance/**/*
|
274
|
+
Naming/HeredocDelimiterCase:
|
275
|
+
Enabled: false
|
276
|
+
Naming/HeredocDelimiterNaming:
|
277
|
+
Enabled: false
|
278
|
+
Naming/MemoizedInstanceVariableName:
|
279
|
+
Enabled: false
|
280
|
+
Naming/MethodParameterName:
|
281
|
+
Enabled: false
|
282
|
+
Naming/RescuedExceptionsVariableName:
|
283
|
+
Enabled: false
|
284
|
+
Naming/VariableNumber:
|
285
|
+
Enabled: false
|
286
|
+
Performance/BindCall:
|
287
|
+
Enabled: false
|
288
|
+
Performance/DeletePrefix:
|
289
|
+
Enabled: false
|
290
|
+
Performance/DeleteSuffix:
|
291
|
+
Enabled: false
|
292
|
+
Performance/InefficientHashSearch:
|
293
|
+
Enabled: false
|
294
|
+
Performance/StringIdentifierArgument:
|
295
|
+
Enabled: false
|
296
|
+
Performance/RedundantEqualityComparisonBlock:
|
297
|
+
Enabled: false
|
298
|
+
Performance/UnfreezeString:
|
299
|
+
Enabled: false
|
300
|
+
Performance/UriDefaultParser:
|
301
|
+
Enabled: false
|
302
|
+
RSpec/Be:
|
303
|
+
Enabled: false
|
304
|
+
RSpec/Capybara/CurrentPathExpectation:
|
305
|
+
Enabled: false
|
306
|
+
RSpec/Capybara/FeatureMethods:
|
307
|
+
Enabled: false
|
308
|
+
RSpec/Capybara/VisibilityMatcher:
|
309
|
+
Enabled: false
|
310
|
+
RSpec/ContextMethod:
|
311
|
+
Enabled: false
|
312
|
+
RSpec/ContextWording:
|
313
|
+
Enabled: false
|
314
|
+
RSpec/DescribeClass:
|
315
|
+
Enabled: false
|
316
|
+
RSpec/EmptyHook:
|
317
|
+
Enabled: false
|
318
|
+
RSpec/EmptyLineAfterExample:
|
319
|
+
Enabled: false
|
320
|
+
RSpec/EmptyLineAfterExampleGroup:
|
321
|
+
Enabled: false
|
322
|
+
RSpec/EmptyLineAfterHook:
|
323
|
+
Enabled: false
|
324
|
+
RSpec/ExampleLength:
|
325
|
+
Enabled: false
|
326
|
+
RSpec/ExampleWithoutDescription:
|
327
|
+
Enabled: false
|
328
|
+
RSpec/ExpectChange:
|
329
|
+
Enabled: false
|
330
|
+
RSpec/ExpectInHook:
|
331
|
+
Enabled: false
|
332
|
+
RSpec/FactoryBot/AttributeDefinedStatically:
|
333
|
+
Enabled: false
|
334
|
+
RSpec/FactoryBot/CreateList:
|
335
|
+
Enabled: false
|
336
|
+
RSpec/FactoryBot/FactoryClassName:
|
337
|
+
Enabled: false
|
338
|
+
RSpec/HooksBeforeExamples:
|
339
|
+
Enabled: false
|
340
|
+
RSpec/ImplicitBlockExpectation:
|
341
|
+
Enabled: false
|
342
|
+
RSpec/ImplicitSubject:
|
343
|
+
Enabled: false
|
344
|
+
RSpec/LeakyConstantDeclaration:
|
345
|
+
Enabled: false
|
346
|
+
RSpec/LetBeforeExamples:
|
347
|
+
Enabled: false
|
348
|
+
RSpec/MissingExampleGroupArgument:
|
349
|
+
Enabled: false
|
350
|
+
RSpec/MultipleExpectations:
|
351
|
+
Enabled: false
|
352
|
+
RSpec/MultipleMemoizedHelpers:
|
353
|
+
Enabled: false
|
354
|
+
RSpec/MultipleSubjects:
|
355
|
+
Enabled: false
|
356
|
+
RSpec/NestedGroups:
|
357
|
+
Enabled: false
|
358
|
+
RSpec/PredicateMatcher:
|
359
|
+
Enabled: false
|
360
|
+
RSpec/ReceiveCounts:
|
361
|
+
Enabled: false
|
362
|
+
RSpec/ReceiveNever:
|
363
|
+
Enabled: false
|
364
|
+
RSpec/RepeatedExampleGroupBody:
|
365
|
+
Enabled: false
|
366
|
+
RSpec/RepeatedExampleGroupDescription:
|
367
|
+
Enabled: false
|
368
|
+
RSpec/RepeatedIncludeExample:
|
369
|
+
Enabled: false
|
370
|
+
RSpec/ReturnFromStub:
|
371
|
+
Enabled: false
|
372
|
+
RSpec/SharedExamples:
|
373
|
+
Enabled: false
|
374
|
+
RSpec/StubbedMock:
|
375
|
+
Enabled: false
|
376
|
+
RSpec/UnspecifiedException:
|
377
|
+
Enabled: false
|
378
|
+
RSpec/VariableDefinition:
|
379
|
+
Enabled: false
|
380
|
+
RSpec/VoidExpect:
|
381
|
+
Enabled: false
|
382
|
+
RSpec/Yield:
|
383
|
+
Enabled: false
|
384
|
+
Security/Open:
|
385
|
+
Enabled: false
|
386
|
+
Style/AccessModifierDeclarations:
|
387
|
+
Enabled: false
|
388
|
+
Style/AccessorGrouping:
|
389
|
+
Enabled: false
|
390
|
+
Style/AsciiComments:
|
391
|
+
Enabled: false
|
392
|
+
Style/BisectedAttrAccessor:
|
393
|
+
Enabled: false
|
394
|
+
Style/CaseLikeIf:
|
395
|
+
Enabled: false
|
396
|
+
Style/ClassEqualityComparison:
|
397
|
+
Enabled: false
|
398
|
+
Style/ColonMethodDefinition:
|
399
|
+
Enabled: false
|
400
|
+
Style/CombinableLoops:
|
401
|
+
Enabled: false
|
402
|
+
Style/CommentedKeyword:
|
403
|
+
Enabled: false
|
404
|
+
Style/Dir:
|
405
|
+
Enabled: false
|
406
|
+
Style/DoubleCopDisableDirective:
|
407
|
+
Enabled: false
|
408
|
+
Style/EmptyBlockParameter:
|
409
|
+
Enabled: false
|
410
|
+
Style/EmptyLambdaParameter:
|
411
|
+
Enabled: false
|
412
|
+
Style/Encoding:
|
413
|
+
Enabled: false
|
414
|
+
Style/EvalWithLocation:
|
415
|
+
Enabled: false
|
416
|
+
Style/ExpandPathArguments:
|
417
|
+
Enabled: false
|
418
|
+
Style/ExplicitBlockArgument:
|
419
|
+
Enabled: false
|
420
|
+
Style/ExponentialNotation:
|
421
|
+
Enabled: false
|
422
|
+
Style/FloatDivision:
|
423
|
+
Enabled: false
|
424
|
+
Style/FrozenStringLiteralComment:
|
425
|
+
Enabled: false
|
426
|
+
Style/GlobalStdStream:
|
427
|
+
Enabled: false
|
428
|
+
Style/HashAsLastArrayItem:
|
429
|
+
Enabled: false
|
430
|
+
Style/HashLikeCase:
|
431
|
+
Enabled: false
|
432
|
+
Style/HashTransformKeys:
|
433
|
+
Enabled: false
|
434
|
+
Style/HashTransformValues:
|
435
|
+
Enabled: false
|
436
|
+
Style/IfUnlessModifier:
|
437
|
+
Enabled: false
|
438
|
+
Style/KeywordParametersOrder:
|
439
|
+
Enabled: false
|
440
|
+
Style/MinMax:
|
441
|
+
Enabled: false
|
442
|
+
Style/MixinUsage:
|
443
|
+
Enabled: false
|
444
|
+
Style/MultilineWhenThen:
|
445
|
+
Enabled: false
|
446
|
+
Style/NegatedUnless:
|
447
|
+
Enabled: false
|
448
|
+
Style/NumericPredicate:
|
449
|
+
Enabled: false
|
450
|
+
Style/OptionalBooleanParameter:
|
451
|
+
Enabled: false
|
452
|
+
Style/OrAssignment:
|
453
|
+
Enabled: false
|
454
|
+
Style/RandomWithOffset:
|
455
|
+
Enabled: false
|
456
|
+
Style/RedundantAssignment:
|
457
|
+
Enabled: false
|
458
|
+
Style/RedundantCondition:
|
459
|
+
Enabled: false
|
460
|
+
Style/RedundantConditional:
|
461
|
+
Enabled: false
|
462
|
+
Style/RedundantFetchBlock:
|
463
|
+
Enabled: false
|
464
|
+
Style/RedundantFileExtensionInRequire:
|
465
|
+
Enabled: false
|
466
|
+
Style/RedundantRegexpCharacterClass:
|
467
|
+
Enabled: false
|
468
|
+
Style/RedundantRegexpEscape:
|
469
|
+
Enabled: false
|
470
|
+
Style/RedundantSelfAssignment:
|
471
|
+
Enabled: false
|
472
|
+
Style/RedundantSort:
|
473
|
+
Enabled: false
|
474
|
+
Style/RescueStandardError:
|
475
|
+
Enabled: false
|
476
|
+
Style/SingleArgumentDig:
|
477
|
+
Enabled: false
|
478
|
+
Style/SlicingWithRange:
|
479
|
+
Enabled: false
|
480
|
+
Style/SoleNestedConditional:
|
481
|
+
Enabled: false
|
482
|
+
Style/StderrPuts:
|
483
|
+
Enabled: false
|
484
|
+
Style/StringConcatenation:
|
485
|
+
Enabled: false
|
486
|
+
Style/Strip:
|
487
|
+
Enabled: false
|
488
|
+
Style/SymbolProc:
|
489
|
+
Enabled: false
|
490
|
+
Style/TrailingBodyOnClass:
|
491
|
+
Enabled: false
|
492
|
+
Style/TrailingBodyOnMethodDefinition:
|
493
|
+
Enabled: false
|
494
|
+
Style/TrailingBodyOnModule:
|
495
|
+
Enabled: false
|
496
|
+
Style/TrailingCommaInHashLiteral:
|
497
|
+
Enabled: false
|
498
|
+
Style/TrailingMethodEndStatement:
|
499
|
+
Enabled: false
|
500
|
+
Style/UnpackFirst:
|
501
|
+
Enabled: false
|
502
|
+
Lint/DuplicateBranch:
|
503
|
+
Enabled: false
|
504
|
+
Lint/DuplicateRegexpCharacterClassElement:
|
505
|
+
Enabled: false
|
506
|
+
Lint/EmptyBlock:
|
507
|
+
Enabled: false
|
508
|
+
Lint/EmptyClass:
|
509
|
+
Enabled: false
|
510
|
+
Lint/NoReturnInBeginEndBlocks:
|
511
|
+
Enabled: false
|
512
|
+
Lint/ToEnumArguments:
|
513
|
+
Enabled: false
|
514
|
+
Lint/UnexpectedBlockArity:
|
515
|
+
Enabled: false
|
516
|
+
Lint/UnmodifiedReduceAccumulator:
|
517
|
+
Enabled: false
|
518
|
+
Performance/CollectionLiteralInLoop:
|
519
|
+
Enabled: false
|
520
|
+
Style/ArgumentsForwarding:
|
521
|
+
Enabled: false
|
522
|
+
Style/CollectionCompact:
|
523
|
+
Enabled: false
|
524
|
+
Style/DocumentDynamicEvalDefinition:
|
525
|
+
Enabled: false
|
526
|
+
Style/NegatedIfElseCondition:
|
527
|
+
Enabled: false
|
528
|
+
Style/NilLambda:
|
529
|
+
Enabled: false
|
530
|
+
Style/RedundantArgument:
|
531
|
+
Enabled: false
|
532
|
+
Style/SwapValues:
|
533
|
+
Enabled: false
|
534
|
+
|
data/CODEOWNERS
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cem_win_spec (0.1.0)
|
5
|
+
parallel_tests (~> 3.4)
|
6
|
+
puppet_forge (~> 4.1)
|
7
|
+
tty-spinner (~> 0.9)
|
8
|
+
winrm (~> 2.3)
|
9
|
+
winrm-fs (~> 1.3)
|
10
|
+
|
11
|
+
GEM
|
12
|
+
remote: https://rubygems.org/
|
13
|
+
specs:
|
14
|
+
ast (2.4.2)
|
15
|
+
builder (3.2.4)
|
16
|
+
coderay (1.1.3)
|
17
|
+
diff-lcs (1.5.0)
|
18
|
+
erubi (1.10.0)
|
19
|
+
faraday (2.3.0)
|
20
|
+
faraday-net_http (~> 2.0)
|
21
|
+
ruby2_keywords (>= 0.0.4)
|
22
|
+
faraday-follow_redirects (0.3.0)
|
23
|
+
faraday (>= 1, < 3)
|
24
|
+
faraday-net_http (2.0.3)
|
25
|
+
ffi (1.15.5)
|
26
|
+
gssapi (1.3.1)
|
27
|
+
ffi (>= 1.0.1)
|
28
|
+
gyoku (1.3.1)
|
29
|
+
builder (>= 2.1.2)
|
30
|
+
httpclient (2.8.3)
|
31
|
+
little-plugger (1.1.4)
|
32
|
+
logging (2.3.0)
|
33
|
+
little-plugger (~> 1.1)
|
34
|
+
multi_json (~> 1.14)
|
35
|
+
method_source (1.0.0)
|
36
|
+
minitar (0.9)
|
37
|
+
multi_json (1.15.0)
|
38
|
+
nori (2.6.0)
|
39
|
+
parallel (1.22.1)
|
40
|
+
parallel_tests (3.13.0)
|
41
|
+
parallel
|
42
|
+
parser (3.2.0.0)
|
43
|
+
ast (~> 2.4.1)
|
44
|
+
pry (0.14.2)
|
45
|
+
coderay (~> 1.1)
|
46
|
+
method_source (~> 1.0)
|
47
|
+
puppet_forge (4.1.0)
|
48
|
+
faraday (~> 2.0)
|
49
|
+
faraday-follow_redirects (~> 0.3.0)
|
50
|
+
minitar
|
51
|
+
semantic_puppet (~> 1.0)
|
52
|
+
rainbow (3.1.1)
|
53
|
+
rake (13.0.6)
|
54
|
+
regexp_parser (2.6.1)
|
55
|
+
rexml (3.2.5)
|
56
|
+
rspec (3.12.0)
|
57
|
+
rspec-core (~> 3.12.0)
|
58
|
+
rspec-expectations (~> 3.12.0)
|
59
|
+
rspec-mocks (~> 3.12.0)
|
60
|
+
rspec-core (3.12.0)
|
61
|
+
rspec-support (~> 3.12.0)
|
62
|
+
rspec-expectations (3.12.2)
|
63
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
64
|
+
rspec-support (~> 3.12.0)
|
65
|
+
rspec-mocks (3.12.2)
|
66
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
67
|
+
rspec-support (~> 3.12.0)
|
68
|
+
rspec-support (3.12.0)
|
69
|
+
rubocop (1.30.1)
|
70
|
+
parallel (~> 1.10)
|
71
|
+
parser (>= 3.1.0.0)
|
72
|
+
rainbow (>= 2.2.2, < 4.0)
|
73
|
+
regexp_parser (>= 1.8, < 3.0)
|
74
|
+
rexml (>= 3.2.5, < 4.0)
|
75
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
76
|
+
ruby-progressbar (~> 1.7)
|
77
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
78
|
+
rubocop-ast (1.24.1)
|
79
|
+
parser (>= 3.1.1.0)
|
80
|
+
ruby-progressbar (1.11.0)
|
81
|
+
ruby2_keywords (0.0.5)
|
82
|
+
rubyntlm (0.6.3)
|
83
|
+
rubyzip (2.3.2)
|
84
|
+
semantic_puppet (1.0.4)
|
85
|
+
tty-cursor (0.7.1)
|
86
|
+
tty-spinner (0.9.3)
|
87
|
+
tty-cursor (~> 0.7)
|
88
|
+
unicode-display_width (2.1.0)
|
89
|
+
winrm (2.3.6)
|
90
|
+
builder (>= 2.1.2)
|
91
|
+
erubi (~> 1.8)
|
92
|
+
gssapi (~> 1.2)
|
93
|
+
gyoku (~> 1.0)
|
94
|
+
httpclient (~> 2.2, >= 2.2.0.2)
|
95
|
+
logging (>= 1.6.1, < 3.0)
|
96
|
+
nori (~> 2.0)
|
97
|
+
rubyntlm (~> 0.6.0, >= 0.6.3)
|
98
|
+
winrm-fs (1.3.5)
|
99
|
+
erubi (~> 1.8)
|
100
|
+
logging (>= 1.6.1, < 3.0)
|
101
|
+
rubyzip (~> 2.0)
|
102
|
+
winrm (~> 2.0)
|
103
|
+
|
104
|
+
PLATFORMS
|
105
|
+
x86_64-darwin-19
|
106
|
+
|
107
|
+
DEPENDENCIES
|
108
|
+
cem_win_spec!
|
109
|
+
pry
|
110
|
+
rake (~> 13.0)
|
111
|
+
rspec (~> 3.0)
|
112
|
+
rubocop (~> 1.21)
|
113
|
+
|
114
|
+
BUNDLED WITH
|
115
|
+
2.3.9
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2023 Heston Snodgrass
|
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.
|