beaker-google 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +46 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/release.yml +32 -0
- data/.rubocop.yml +519 -0
- data/.simplecov +1 -1
- data/CHANGELOG.md +18 -0
- data/Gemfile +9 -12
- data/README.md +48 -19
- data/Rakefile +35 -39
- data/beaker-google.gemspec +11 -13
- data/bin/beaker-google +1 -3
- data/lib/beaker/hypervisor/google_compute.rb +134 -115
- data/lib/beaker/hypervisor/google_compute_helper.rb +445 -754
- data/lib/beaker-google/version.rb +1 -1
- metadata +49 -17
- data/.github/workflows/snyk_scan.yaml +0 -23
- data/CODEOWNERS +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7c9d8854cc9795c318f4c1b7b1dc411b6bc839ad2c293cac7bc8b99f97b0af3
|
4
|
+
data.tar.gz: dc4b56228a3a7317f0c3032e63cf1708bdee5df42293961cdfc400df33b08120
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d230bd16333806921d355d90354fae2df1ca0f15473778125b5b7a22f5dc7268568b6749886a2e52dd5ef66b92d8c5567cdc0774633c36ea20e05f8d5c1b946
|
7
|
+
data.tar.gz: f66c8a383ea3848ef48778171eae3b52ce06989ff1ec80cbd4b2422af888183ca866a6a6ee70098853e125a4ba5546b58edb2bdb7028a2a4205c6850508528c4
|
@@ -0,0 +1,46 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
- pull_request
|
5
|
+
|
6
|
+
env:
|
7
|
+
BUNDLE_WITHOUT: release
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
# rubocop is currently not included in Gemfile
|
11
|
+
# rubocop:
|
12
|
+
# runs-on: ubuntu-latest
|
13
|
+
# steps:
|
14
|
+
# - uses: actions/checkout@v2
|
15
|
+
# - name: Install Ruby 3.1
|
16
|
+
# uses: ruby/setup-ruby@v1
|
17
|
+
# with:
|
18
|
+
# ruby-version: "3.1"
|
19
|
+
# bundler-cache: true
|
20
|
+
# - name: Run rubocop
|
21
|
+
# run: bundle exec rake rubocop
|
22
|
+
test:
|
23
|
+
runs-on: ubuntu-latest
|
24
|
+
strategy:
|
25
|
+
fail-fast: false
|
26
|
+
matrix:
|
27
|
+
include:
|
28
|
+
- ruby: "2.7"
|
29
|
+
- ruby: "3.0"
|
30
|
+
- ruby: "3.1"
|
31
|
+
coverage: "yes"
|
32
|
+
env:
|
33
|
+
COVERAGE: ${{ matrix.coverage }}
|
34
|
+
name: Ruby ${{ matrix.ruby }}
|
35
|
+
steps:
|
36
|
+
- uses: actions/checkout@v2
|
37
|
+
- name: Install Ruby ${{ matrix.ruby }}
|
38
|
+
uses: ruby/setup-ruby@v1
|
39
|
+
with:
|
40
|
+
ruby-version: ${{ matrix.ruby }}
|
41
|
+
bundler-cache: true
|
42
|
+
- name: Verify gem builds
|
43
|
+
run: gem build *.gemspec
|
44
|
+
# Currently no tests are defined in this gem
|
45
|
+
# - name: Run spec tests
|
46
|
+
# run: bundle exec rake
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# For most projects, this workflow file will not need changing; you simply need
|
2
|
+
# to commit it to your repository.
|
3
|
+
#
|
4
|
+
# You may wish to alter this file to override the set of languages analyzed,
|
5
|
+
# or to provide custom queries or build logic.
|
6
|
+
#
|
7
|
+
# ******** NOTE ********
|
8
|
+
# We have attempted to detect the languages in your repository. Please check
|
9
|
+
# the `language` matrix defined below to confirm you have the correct set of
|
10
|
+
# supported CodeQL languages.
|
11
|
+
#
|
12
|
+
name: "CodeQL"
|
13
|
+
|
14
|
+
on:
|
15
|
+
push:
|
16
|
+
branches: [ main ]
|
17
|
+
pull_request:
|
18
|
+
# The branches below must be a subset of the branches above
|
19
|
+
branches: [ main ]
|
20
|
+
schedule:
|
21
|
+
- cron: '30 0 * * 4'
|
22
|
+
|
23
|
+
jobs:
|
24
|
+
analyze:
|
25
|
+
name: Analyze
|
26
|
+
runs-on: ubuntu-latest
|
27
|
+
permissions:
|
28
|
+
actions: read
|
29
|
+
contents: read
|
30
|
+
security-events: write
|
31
|
+
|
32
|
+
strategy:
|
33
|
+
fail-fast: false
|
34
|
+
matrix:
|
35
|
+
language: [ 'ruby' ]
|
36
|
+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
37
|
+
# Learn more about CodeQL language support at https://git.io/codeql-language-support
|
38
|
+
|
39
|
+
steps:
|
40
|
+
- name: Checkout repository
|
41
|
+
uses: actions/checkout@v2
|
42
|
+
|
43
|
+
# Initializes the CodeQL tools for scanning.
|
44
|
+
- name: Initialize CodeQL
|
45
|
+
uses: github/codeql-action/init@v1
|
46
|
+
with:
|
47
|
+
languages: ${{ matrix.language }}
|
48
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
49
|
+
# By default, queries listed here will override any specified in a config file.
|
50
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
51
|
+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
52
|
+
|
53
|
+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
54
|
+
# If this step fails, then you should remove it and run the build manually (see below)
|
55
|
+
- name: Autobuild
|
56
|
+
uses: github/codeql-action/autobuild@v1
|
57
|
+
|
58
|
+
# ℹ️ Command-line programs to run using the OS shell.
|
59
|
+
# 📚 https://git.io/JvXDl
|
60
|
+
|
61
|
+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
62
|
+
# and modify them (or add more) to build your code if your project
|
63
|
+
# uses a compiled language
|
64
|
+
|
65
|
+
#- run: |
|
66
|
+
# make bootstrap
|
67
|
+
# make release
|
68
|
+
|
69
|
+
- name: Perform CodeQL Analysis
|
70
|
+
uses: github/codeql-action/analyze@v1
|
@@ -0,0 +1,32 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- '*'
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
release:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
if: github.repository_owner == 'voxpupuli'
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
- name: Install Ruby 3.1
|
15
|
+
uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: '3.1'
|
18
|
+
env:
|
19
|
+
BUNDLE_WITHOUT: release
|
20
|
+
- name: Build gem
|
21
|
+
run: gem build *.gemspec
|
22
|
+
- name: Publish gem to rubygems.org
|
23
|
+
run: gem push *.gem
|
24
|
+
env:
|
25
|
+
GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
|
26
|
+
- name: Setup GitHub packages access
|
27
|
+
run: |
|
28
|
+
mkdir -p ~/.gem
|
29
|
+
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
|
30
|
+
chmod 0600 ~/.gem/credentials
|
31
|
+
- name: Publish gem to GitHub packages
|
32
|
+
run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,519 @@
|
|
1
|
+
---
|
2
|
+
require:
|
3
|
+
- rubocop-performance
|
4
|
+
- rubocop-rspec
|
5
|
+
AllCops:
|
6
|
+
DisplayCopNames: true
|
7
|
+
TargetRubyVersion: '2.7'
|
8
|
+
Include:
|
9
|
+
- "**/*.rb"
|
10
|
+
Exclude:
|
11
|
+
- bin/*
|
12
|
+
- ".vendor/**/*"
|
13
|
+
- "**/Gemfile"
|
14
|
+
- "**/Rakefile"
|
15
|
+
- pkg/**/*
|
16
|
+
- spec/fixtures/**/*
|
17
|
+
- vendor/**/*
|
18
|
+
- "**/Puppetfile"
|
19
|
+
- "**/Vagrantfile"
|
20
|
+
- "**/Guardfile"
|
21
|
+
Layout/LineLength:
|
22
|
+
Description: People have wide screens, use them.
|
23
|
+
Max: 200
|
24
|
+
RSpec/BeforeAfterAll:
|
25
|
+
Description: Beware of using after(:all) as it may cause state to leak between tests.
|
26
|
+
A necessary evil in acceptance testing.
|
27
|
+
Exclude:
|
28
|
+
- spec/acceptance/**/*.rb
|
29
|
+
RSpec/HookArgument:
|
30
|
+
Description: Prefer explicit :each argument, matching existing module's style
|
31
|
+
EnforcedStyle: each
|
32
|
+
RSpec/DescribeSymbol:
|
33
|
+
Exclude:
|
34
|
+
- spec/unit/facter/**/*.rb
|
35
|
+
Style/BlockDelimiters:
|
36
|
+
Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to
|
37
|
+
be consistent then.
|
38
|
+
EnforcedStyle: braces_for_chaining
|
39
|
+
Style/ClassAndModuleChildren:
|
40
|
+
Description: Compact style reduces the required amount of indentation.
|
41
|
+
EnforcedStyle: compact
|
42
|
+
Style/EmptyElse:
|
43
|
+
Description: Enforce against empty else clauses, but allow `nil` for clarity.
|
44
|
+
EnforcedStyle: empty
|
45
|
+
Style/FormatString:
|
46
|
+
Description: Following the main puppet project's style, prefer the % format format.
|
47
|
+
EnforcedStyle: percent
|
48
|
+
Style/FormatStringToken:
|
49
|
+
Description: Following the main puppet project's style, prefer the simpler template
|
50
|
+
tokens over annotated ones.
|
51
|
+
EnforcedStyle: template
|
52
|
+
Style/Lambda:
|
53
|
+
Description: Prefer the keyword for easier discoverability.
|
54
|
+
EnforcedStyle: literal
|
55
|
+
Style/RegexpLiteral:
|
56
|
+
Description: Community preference. See https://github.com/voxpupuli/modulesync_config/issues/168
|
57
|
+
EnforcedStyle: percent_r
|
58
|
+
Style/TernaryParentheses:
|
59
|
+
Description: Checks for use of parentheses around ternary conditions. Enforce parentheses
|
60
|
+
on complex expressions for better readability, but seriously consider breaking
|
61
|
+
it up.
|
62
|
+
EnforcedStyle: require_parentheses_when_complex
|
63
|
+
Style/TrailingCommaInArguments:
|
64
|
+
Description: Prefer always trailing comma on multiline argument lists. This makes
|
65
|
+
diffs, and re-ordering nicer.
|
66
|
+
EnforcedStyleForMultiline: comma
|
67
|
+
Style/TrailingCommaInArrayLiteral:
|
68
|
+
Description: Prefer always trailing comma on multiline literals. This makes diffs,
|
69
|
+
and re-ordering nicer.
|
70
|
+
EnforcedStyleForMultiline: comma
|
71
|
+
Style/SymbolArray:
|
72
|
+
Description: Using percent style obscures symbolic intent of array's contents.
|
73
|
+
EnforcedStyle: brackets
|
74
|
+
RSpec/MessageSpies:
|
75
|
+
EnforcedStyle: receive
|
76
|
+
Style/Documentation:
|
77
|
+
Exclude:
|
78
|
+
- lib/puppet/parser/functions/**/*
|
79
|
+
- spec/**/*
|
80
|
+
Style/WordArray:
|
81
|
+
EnforcedStyle: brackets
|
82
|
+
Performance/AncestorsInclude:
|
83
|
+
Enabled: true
|
84
|
+
Performance/BigDecimalWithNumericArgument:
|
85
|
+
Enabled: true
|
86
|
+
Performance/BlockGivenWithExplicitBlock:
|
87
|
+
Enabled: true
|
88
|
+
Performance/CaseWhenSplat:
|
89
|
+
Enabled: true
|
90
|
+
Performance/ConstantRegexp:
|
91
|
+
Enabled: true
|
92
|
+
Performance/MethodObjectAsBlock:
|
93
|
+
Enabled: true
|
94
|
+
Performance/RedundantSortBlock:
|
95
|
+
Enabled: true
|
96
|
+
Performance/RedundantStringChars:
|
97
|
+
Enabled: true
|
98
|
+
Performance/ReverseFirst:
|
99
|
+
Enabled: true
|
100
|
+
Performance/SortReverse:
|
101
|
+
Enabled: true
|
102
|
+
Performance/Squeeze:
|
103
|
+
Enabled: true
|
104
|
+
Performance/StringInclude:
|
105
|
+
Enabled: true
|
106
|
+
Performance/Sum:
|
107
|
+
Enabled: true
|
108
|
+
Style/CollectionMethods:
|
109
|
+
Enabled: true
|
110
|
+
Style/MethodCalledOnDoEndBlock:
|
111
|
+
Enabled: true
|
112
|
+
Style/StringMethods:
|
113
|
+
Enabled: true
|
114
|
+
Bundler/InsecureProtocolSource:
|
115
|
+
Enabled: false
|
116
|
+
Gemspec/DuplicatedAssignment:
|
117
|
+
Enabled: false
|
118
|
+
Gemspec/OrderedDependencies:
|
119
|
+
Enabled: false
|
120
|
+
Gemspec/RequiredRubyVersion:
|
121
|
+
Enabled: false
|
122
|
+
Gemspec/RubyVersionGlobalsUsage:
|
123
|
+
Enabled: false
|
124
|
+
Layout/ArgumentAlignment:
|
125
|
+
Enabled: false
|
126
|
+
Layout/BeginEndAlignment:
|
127
|
+
Enabled: false
|
128
|
+
Layout/ClosingHeredocIndentation:
|
129
|
+
Enabled: false
|
130
|
+
Layout/EmptyComment:
|
131
|
+
Enabled: false
|
132
|
+
Layout/EmptyLineAfterGuardClause:
|
133
|
+
Enabled: false
|
134
|
+
Layout/EmptyLinesAroundArguments:
|
135
|
+
Enabled: false
|
136
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
137
|
+
Enabled: false
|
138
|
+
Layout/EndOfLine:
|
139
|
+
Enabled: false
|
140
|
+
Layout/FirstArgumentIndentation:
|
141
|
+
Enabled: false
|
142
|
+
Layout/HashAlignment:
|
143
|
+
Enabled: false
|
144
|
+
Layout/HeredocIndentation:
|
145
|
+
Enabled: false
|
146
|
+
Layout/LeadingEmptyLines:
|
147
|
+
Enabled: false
|
148
|
+
Layout/SpaceAroundMethodCallOperator:
|
149
|
+
Enabled: false
|
150
|
+
Layout/SpaceInsideArrayLiteralBrackets:
|
151
|
+
Enabled: false
|
152
|
+
Layout/SpaceInsideReferenceBrackets:
|
153
|
+
Enabled: false
|
154
|
+
Lint/BigDecimalNew:
|
155
|
+
Enabled: false
|
156
|
+
Lint/BooleanSymbol:
|
157
|
+
Enabled: false
|
158
|
+
Lint/ConstantDefinitionInBlock:
|
159
|
+
Enabled: false
|
160
|
+
Lint/DeprecatedOpenSSLConstant:
|
161
|
+
Enabled: false
|
162
|
+
Lint/DisjunctiveAssignmentInConstructor:
|
163
|
+
Enabled: false
|
164
|
+
Lint/DuplicateElsifCondition:
|
165
|
+
Enabled: false
|
166
|
+
Lint/DuplicateRequire:
|
167
|
+
Enabled: false
|
168
|
+
Lint/DuplicateRescueException:
|
169
|
+
Enabled: false
|
170
|
+
Lint/EmptyConditionalBody:
|
171
|
+
Enabled: false
|
172
|
+
Lint/EmptyFile:
|
173
|
+
Enabled: false
|
174
|
+
Lint/ErbNewArguments:
|
175
|
+
Enabled: false
|
176
|
+
Lint/FloatComparison:
|
177
|
+
Enabled: false
|
178
|
+
Lint/HashCompareByIdentity:
|
179
|
+
Enabled: false
|
180
|
+
Lint/IdentityComparison:
|
181
|
+
Enabled: false
|
182
|
+
Lint/InterpolationCheck:
|
183
|
+
Enabled: false
|
184
|
+
Lint/MissingCopEnableDirective:
|
185
|
+
Enabled: false
|
186
|
+
Lint/MixedRegexpCaptureTypes:
|
187
|
+
Enabled: false
|
188
|
+
Lint/NestedPercentLiteral:
|
189
|
+
Enabled: false
|
190
|
+
Lint/NonDeterministicRequireOrder:
|
191
|
+
Enabled: false
|
192
|
+
Lint/OrderedMagicComments:
|
193
|
+
Enabled: false
|
194
|
+
Lint/OutOfRangeRegexpRef:
|
195
|
+
Enabled: false
|
196
|
+
Lint/RaiseException:
|
197
|
+
Enabled: false
|
198
|
+
Lint/RedundantCopEnableDirective:
|
199
|
+
Enabled: false
|
200
|
+
Lint/RedundantRequireStatement:
|
201
|
+
Enabled: false
|
202
|
+
Lint/RedundantSafeNavigation:
|
203
|
+
Enabled: false
|
204
|
+
Lint/RedundantWithIndex:
|
205
|
+
Enabled: false
|
206
|
+
Lint/RedundantWithObject:
|
207
|
+
Enabled: false
|
208
|
+
Lint/RegexpAsCondition:
|
209
|
+
Enabled: false
|
210
|
+
Lint/ReturnInVoidContext:
|
211
|
+
Enabled: false
|
212
|
+
Lint/SafeNavigationConsistency:
|
213
|
+
Enabled: false
|
214
|
+
Lint/SafeNavigationWithEmpty:
|
215
|
+
Enabled: false
|
216
|
+
Lint/SelfAssignment:
|
217
|
+
Enabled: false
|
218
|
+
Lint/SendWithMixinArgument:
|
219
|
+
Enabled: false
|
220
|
+
Lint/ShadowedArgument:
|
221
|
+
Enabled: false
|
222
|
+
Lint/StructNewOverride:
|
223
|
+
Enabled: false
|
224
|
+
Lint/ToJSON:
|
225
|
+
Enabled: false
|
226
|
+
Lint/TopLevelReturnWithArgument:
|
227
|
+
Enabled: false
|
228
|
+
Lint/TrailingCommaInAttributeDeclaration:
|
229
|
+
Enabled: false
|
230
|
+
Lint/UnreachableLoop:
|
231
|
+
Enabled: false
|
232
|
+
Lint/UriEscapeUnescape:
|
233
|
+
Enabled: false
|
234
|
+
Lint/UriRegexp:
|
235
|
+
Enabled: false
|
236
|
+
Lint/UselessMethodDefinition:
|
237
|
+
Enabled: false
|
238
|
+
Lint/UselessTimes:
|
239
|
+
Enabled: false
|
240
|
+
Metrics/AbcSize:
|
241
|
+
Enabled: false
|
242
|
+
Metrics/BlockLength:
|
243
|
+
Enabled: false
|
244
|
+
Metrics/BlockNesting:
|
245
|
+
Enabled: false
|
246
|
+
Metrics/ClassLength:
|
247
|
+
Enabled: false
|
248
|
+
Metrics/CyclomaticComplexity:
|
249
|
+
Enabled: false
|
250
|
+
Metrics/MethodLength:
|
251
|
+
Enabled: false
|
252
|
+
Metrics/ModuleLength:
|
253
|
+
Enabled: false
|
254
|
+
Metrics/ParameterLists:
|
255
|
+
Enabled: false
|
256
|
+
Metrics/PerceivedComplexity:
|
257
|
+
Enabled: false
|
258
|
+
Migration/DepartmentName:
|
259
|
+
Enabled: false
|
260
|
+
Naming/AccessorMethodName:
|
261
|
+
Enabled: false
|
262
|
+
Naming/BlockParameterName:
|
263
|
+
Enabled: false
|
264
|
+
Naming/HeredocDelimiterCase:
|
265
|
+
Enabled: false
|
266
|
+
Naming/HeredocDelimiterNaming:
|
267
|
+
Enabled: false
|
268
|
+
Naming/MemoizedInstanceVariableName:
|
269
|
+
Enabled: false
|
270
|
+
Naming/MethodParameterName:
|
271
|
+
Enabled: false
|
272
|
+
Naming/RescuedExceptionsVariableName:
|
273
|
+
Enabled: false
|
274
|
+
Naming/VariableNumber:
|
275
|
+
Enabled: false
|
276
|
+
Performance/BindCall:
|
277
|
+
Enabled: false
|
278
|
+
Performance/DeletePrefix:
|
279
|
+
Enabled: false
|
280
|
+
Performance/DeleteSuffix:
|
281
|
+
Enabled: false
|
282
|
+
Performance/InefficientHashSearch:
|
283
|
+
Enabled: false
|
284
|
+
Performance/UnfreezeString:
|
285
|
+
Enabled: false
|
286
|
+
Performance/UriDefaultParser:
|
287
|
+
Enabled: false
|
288
|
+
RSpec/Be:
|
289
|
+
Enabled: false
|
290
|
+
RSpec/Capybara/CurrentPathExpectation:
|
291
|
+
Enabled: false
|
292
|
+
RSpec/Capybara/FeatureMethods:
|
293
|
+
Enabled: false
|
294
|
+
RSpec/Capybara/VisibilityMatcher:
|
295
|
+
Enabled: false
|
296
|
+
RSpec/ContextMethod:
|
297
|
+
Enabled: false
|
298
|
+
RSpec/ContextWording:
|
299
|
+
Enabled: false
|
300
|
+
RSpec/DescribeClass:
|
301
|
+
Enabled: false
|
302
|
+
RSpec/EmptyHook:
|
303
|
+
Enabled: false
|
304
|
+
RSpec/EmptyLineAfterExample:
|
305
|
+
Enabled: false
|
306
|
+
RSpec/EmptyLineAfterExampleGroup:
|
307
|
+
Enabled: false
|
308
|
+
RSpec/EmptyLineAfterHook:
|
309
|
+
Enabled: false
|
310
|
+
RSpec/ExampleLength:
|
311
|
+
Enabled: false
|
312
|
+
RSpec/ExampleWithoutDescription:
|
313
|
+
Enabled: false
|
314
|
+
RSpec/ExpectChange:
|
315
|
+
Enabled: false
|
316
|
+
RSpec/ExpectInHook:
|
317
|
+
Enabled: false
|
318
|
+
RSpec/FactoryBot/AttributeDefinedStatically:
|
319
|
+
Enabled: false
|
320
|
+
RSpec/FactoryBot/CreateList:
|
321
|
+
Enabled: false
|
322
|
+
RSpec/FactoryBot/FactoryClassName:
|
323
|
+
Enabled: false
|
324
|
+
RSpec/HooksBeforeExamples:
|
325
|
+
Enabled: false
|
326
|
+
RSpec/ImplicitBlockExpectation:
|
327
|
+
Enabled: false
|
328
|
+
RSpec/ImplicitSubject:
|
329
|
+
Enabled: false
|
330
|
+
RSpec/LeakyConstantDeclaration:
|
331
|
+
Enabled: false
|
332
|
+
RSpec/LetBeforeExamples:
|
333
|
+
Enabled: false
|
334
|
+
RSpec/MissingExampleGroupArgument:
|
335
|
+
Enabled: false
|
336
|
+
RSpec/MultipleExpectations:
|
337
|
+
Enabled: false
|
338
|
+
RSpec/MultipleMemoizedHelpers:
|
339
|
+
Enabled: false
|
340
|
+
RSpec/MultipleSubjects:
|
341
|
+
Enabled: false
|
342
|
+
RSpec/NestedGroups:
|
343
|
+
Enabled: false
|
344
|
+
RSpec/PredicateMatcher:
|
345
|
+
Enabled: false
|
346
|
+
RSpec/ReceiveCounts:
|
347
|
+
Enabled: false
|
348
|
+
RSpec/ReceiveNever:
|
349
|
+
Enabled: false
|
350
|
+
RSpec/RepeatedExampleGroupBody:
|
351
|
+
Enabled: false
|
352
|
+
RSpec/RepeatedExampleGroupDescription:
|
353
|
+
Enabled: false
|
354
|
+
RSpec/RepeatedIncludeExample:
|
355
|
+
Enabled: false
|
356
|
+
RSpec/ReturnFromStub:
|
357
|
+
Enabled: false
|
358
|
+
RSpec/SharedExamples:
|
359
|
+
Enabled: false
|
360
|
+
RSpec/StubbedMock:
|
361
|
+
Enabled: false
|
362
|
+
RSpec/UnspecifiedException:
|
363
|
+
Enabled: false
|
364
|
+
RSpec/VariableDefinition:
|
365
|
+
Enabled: false
|
366
|
+
RSpec/VoidExpect:
|
367
|
+
Enabled: false
|
368
|
+
RSpec/Yield:
|
369
|
+
Enabled: false
|
370
|
+
Security/Open:
|
371
|
+
Enabled: false
|
372
|
+
Style/AccessModifierDeclarations:
|
373
|
+
Enabled: false
|
374
|
+
Style/AccessorGrouping:
|
375
|
+
Enabled: false
|
376
|
+
Style/AsciiComments:
|
377
|
+
Enabled: false
|
378
|
+
Style/BisectedAttrAccessor:
|
379
|
+
Enabled: false
|
380
|
+
Style/CaseLikeIf:
|
381
|
+
Enabled: false
|
382
|
+
Style/ClassEqualityComparison:
|
383
|
+
Enabled: false
|
384
|
+
Style/ColonMethodDefinition:
|
385
|
+
Enabled: false
|
386
|
+
Style/CombinableLoops:
|
387
|
+
Enabled: false
|
388
|
+
Style/CommentedKeyword:
|
389
|
+
Enabled: false
|
390
|
+
Style/Dir:
|
391
|
+
Enabled: false
|
392
|
+
Style/DoubleCopDisableDirective:
|
393
|
+
Enabled: false
|
394
|
+
Style/EmptyBlockParameter:
|
395
|
+
Enabled: false
|
396
|
+
Style/EmptyLambdaParameter:
|
397
|
+
Enabled: false
|
398
|
+
Style/Encoding:
|
399
|
+
Enabled: false
|
400
|
+
Style/EvalWithLocation:
|
401
|
+
Enabled: false
|
402
|
+
Style/ExpandPathArguments:
|
403
|
+
Enabled: false
|
404
|
+
Style/ExplicitBlockArgument:
|
405
|
+
Enabled: false
|
406
|
+
Style/ExponentialNotation:
|
407
|
+
Enabled: false
|
408
|
+
Style/FloatDivision:
|
409
|
+
Enabled: false
|
410
|
+
Style/FrozenStringLiteralComment:
|
411
|
+
Enabled: false
|
412
|
+
Style/GlobalStdStream:
|
413
|
+
Enabled: false
|
414
|
+
Style/HashAsLastArrayItem:
|
415
|
+
Enabled: false
|
416
|
+
Style/HashLikeCase:
|
417
|
+
Enabled: false
|
418
|
+
Style/HashTransformKeys:
|
419
|
+
Enabled: false
|
420
|
+
Style/HashTransformValues:
|
421
|
+
Enabled: false
|
422
|
+
Style/IfUnlessModifier:
|
423
|
+
Enabled: false
|
424
|
+
Style/KeywordParametersOrder:
|
425
|
+
Enabled: false
|
426
|
+
Style/MinMax:
|
427
|
+
Enabled: false
|
428
|
+
Style/MixinUsage:
|
429
|
+
Enabled: false
|
430
|
+
Style/MultilineWhenThen:
|
431
|
+
Enabled: false
|
432
|
+
Style/NegatedUnless:
|
433
|
+
Enabled: false
|
434
|
+
Style/NumericPredicate:
|
435
|
+
Enabled: false
|
436
|
+
Style/OptionalBooleanParameter:
|
437
|
+
Enabled: false
|
438
|
+
Style/OrAssignment:
|
439
|
+
Enabled: false
|
440
|
+
Style/RandomWithOffset:
|
441
|
+
Enabled: false
|
442
|
+
Style/RedundantAssignment:
|
443
|
+
Enabled: false
|
444
|
+
Style/RedundantCondition:
|
445
|
+
Enabled: false
|
446
|
+
Style/RedundantConditional:
|
447
|
+
Enabled: false
|
448
|
+
Style/RedundantFetchBlock:
|
449
|
+
Enabled: false
|
450
|
+
Style/RedundantFileExtensionInRequire:
|
451
|
+
Enabled: false
|
452
|
+
Style/RedundantRegexpCharacterClass:
|
453
|
+
Enabled: false
|
454
|
+
Style/RedundantRegexpEscape:
|
455
|
+
Enabled: false
|
456
|
+
Style/RedundantSelfAssignment:
|
457
|
+
Enabled: false
|
458
|
+
Style/RedundantSort:
|
459
|
+
Enabled: false
|
460
|
+
Style/RescueStandardError:
|
461
|
+
Enabled: false
|
462
|
+
Style/SingleArgumentDig:
|
463
|
+
Enabled: false
|
464
|
+
Style/SlicingWithRange:
|
465
|
+
Enabled: false
|
466
|
+
Style/SoleNestedConditional:
|
467
|
+
Enabled: false
|
468
|
+
Style/StderrPuts:
|
469
|
+
Enabled: false
|
470
|
+
Style/StringConcatenation:
|
471
|
+
Enabled: false
|
472
|
+
Style/Strip:
|
473
|
+
Enabled: false
|
474
|
+
Style/SymbolProc:
|
475
|
+
Enabled: false
|
476
|
+
Style/TrailingBodyOnClass:
|
477
|
+
Enabled: false
|
478
|
+
Style/TrailingBodyOnMethodDefinition:
|
479
|
+
Enabled: false
|
480
|
+
Style/TrailingBodyOnModule:
|
481
|
+
Enabled: false
|
482
|
+
Style/TrailingCommaInHashLiteral:
|
483
|
+
Enabled: false
|
484
|
+
Style/TrailingMethodEndStatement:
|
485
|
+
Enabled: false
|
486
|
+
Style/UnpackFirst:
|
487
|
+
Enabled: false
|
488
|
+
Lint/DuplicateBranch:
|
489
|
+
Enabled: false
|
490
|
+
Lint/DuplicateRegexpCharacterClassElement:
|
491
|
+
Enabled: false
|
492
|
+
Lint/EmptyBlock:
|
493
|
+
Enabled: false
|
494
|
+
Lint/EmptyClass:
|
495
|
+
Enabled: false
|
496
|
+
Lint/NoReturnInBeginEndBlocks:
|
497
|
+
Enabled: false
|
498
|
+
Lint/ToEnumArguments:
|
499
|
+
Enabled: false
|
500
|
+
Lint/UnexpectedBlockArity:
|
501
|
+
Enabled: false
|
502
|
+
Lint/UnmodifiedReduceAccumulator:
|
503
|
+
Enabled: false
|
504
|
+
Performance/CollectionLiteralInLoop:
|
505
|
+
Enabled: false
|
506
|
+
Style/ArgumentsForwarding:
|
507
|
+
Enabled: false
|
508
|
+
Style/CollectionCompact:
|
509
|
+
Enabled: false
|
510
|
+
Style/DocumentDynamicEvalDefinition:
|
511
|
+
Enabled: false
|
512
|
+
Style/NegatedIfElseCondition:
|
513
|
+
Enabled: false
|
514
|
+
Style/NilLambda:
|
515
|
+
Enabled: false
|
516
|
+
Style/RedundantArgument:
|
517
|
+
Enabled: false
|
518
|
+
Style/SwapValues:
|
519
|
+
Enabled: false
|
data/.simplecov
CHANGED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
## [0.4.0](https://github.com/voxpupuli/beaker-google/tree/0.4.0) (2022-09-15)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-google/compare/0.3.0...0.4.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Migrated from the deprecated `google-api-client` to the more modern `google-apis-compute`
|
12
|
+
|
13
|
+
**Breaking changes:**
|
14
|
+
|
15
|
+
- Removed the mysterious `kill_zombies()` method since it was more of a helper and could result in potentially
|
16
|
+
unexpected results
|
17
|
+
- Users will now need to clean up artifacts from unexpected job termination manually instead of including this method
|
18
|
+
into their test code
|