beaker-vcloud 1.0.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/dependabot.yml +17 -0
- data/.github/workflows/release.yml +32 -0
- data/.github/workflows/test.yml +58 -0
- data/.rubocop.yml +5 -0
- data/.rubocop_todo.yml +292 -0
- data/CHANGELOG.md +79 -0
- data/Gemfile +7 -19
- data/README.md +28 -2
- data/Rakefile +20 -116
- data/beaker-vcloud.gemspec +19 -31
- data/bin/beaker-vcloud +1 -3
- data/lib/beaker/hypervisor/vcloud.rb +79 -88
- data/lib/beaker-vcloud/version.rb +1 -1
- data/spec/beaker/hypervisor/vcloud_spec.rb +39 -49
- data/spec/mock_vsphere.rb +284 -0
- data/spec/mock_vsphere_helper.rb +167 -0
- data/spec/spec_helper.rb +28 -3
- metadata +58 -81
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1e7a2a9d01c6336ded1ef7f7bfa690095acfb358b245f42cdd3dcbbb044fd980
|
4
|
+
data.tar.gz: f38c247c87a35f9e8f00d9ee88ea4c59edd4155d3580bb4daa138300ca9413a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ff9560c8b7c900a867b7ddc14d386a7912067878991809b414901f197a0624eda7ff6ea11b5c2a82a9a1dcd489b926da998514881c8f92d17be29a2688bd2bc
|
7
|
+
data.tar.gz: b75ad34a05276e85c3c35e4a4331d0a4b65119afe603d5867866ff67d847f34d7a85b2c1b1ade07d2ce5fa08f4e4638af893494208b4326f499506d1d52b634e
|
@@ -0,0 +1,17 @@
|
|
1
|
+
version: 2
|
2
|
+
updates:
|
3
|
+
# raise PRs for gem updates
|
4
|
+
- package-ecosystem: bundler
|
5
|
+
directory: "/"
|
6
|
+
schedule:
|
7
|
+
interval: daily
|
8
|
+
time: "13:00"
|
9
|
+
open-pull-requests-limit: 10
|
10
|
+
|
11
|
+
# Maintain dependencies for GitHub Actions
|
12
|
+
- package-ecosystem: github-actions
|
13
|
+
directory: "/"
|
14
|
+
schedule:
|
15
|
+
interval: daily
|
16
|
+
time: "13:00"
|
17
|
+
open-pull-requests-limit: 10
|
@@ -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@v4
|
14
|
+
- name: Install Ruby 3.0
|
15
|
+
uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: '3.0'
|
18
|
+
env:
|
19
|
+
BUNDLE_WITHOUT: release
|
20
|
+
- name: Build gem
|
21
|
+
run: gem build --strict --verbose *.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
|
@@ -0,0 +1,58 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request: {}
|
5
|
+
push:
|
6
|
+
branches:
|
7
|
+
- master
|
8
|
+
|
9
|
+
env:
|
10
|
+
BUNDLE_WITHOUT: release
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
rubocop:
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v4
|
17
|
+
- name: Install Ruby ${{ matrix.ruby }}
|
18
|
+
uses: ruby/setup-ruby@v1
|
19
|
+
with:
|
20
|
+
ruby-version: "3.3"
|
21
|
+
bundler-cache: true
|
22
|
+
- name: Run Rubocop
|
23
|
+
run: bundle exec rake rubocop
|
24
|
+
|
25
|
+
test:
|
26
|
+
runs-on: ubuntu-latest
|
27
|
+
strategy:
|
28
|
+
fail-fast: false
|
29
|
+
matrix:
|
30
|
+
include:
|
31
|
+
- ruby: "2.7"
|
32
|
+
- ruby: "3.0"
|
33
|
+
coverage: "yes"
|
34
|
+
- ruby: "3.1"
|
35
|
+
- ruby: "3.2"
|
36
|
+
- ruby: "3.3"
|
37
|
+
env:
|
38
|
+
COVERAGE: ${{ matrix.coverage }}
|
39
|
+
steps:
|
40
|
+
- uses: actions/checkout@v4
|
41
|
+
- name: Install Ruby ${{ matrix.ruby }}
|
42
|
+
uses: ruby/setup-ruby@v1
|
43
|
+
with:
|
44
|
+
ruby-version: ${{ matrix.ruby }}
|
45
|
+
bundler-cache: true
|
46
|
+
- name: Run tests
|
47
|
+
run: bundle exec rake
|
48
|
+
- name: Build gem
|
49
|
+
run: gem build --strict --verbose *.gemspec
|
50
|
+
|
51
|
+
tests:
|
52
|
+
needs:
|
53
|
+
- rubocop
|
54
|
+
- test
|
55
|
+
runs-on: ubuntu-latest
|
56
|
+
name: Test suite
|
57
|
+
steps:
|
58
|
+
- run: echo Test suite completed
|
data/.rubocop.yml
ADDED
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,292 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2024-04-23 13:50:35 UTC using RuboCop version 1.62.1.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 1
|
10
|
+
# Configuration parameters: Severity, Include.
|
11
|
+
# Include: **/*.gemspec
|
12
|
+
Gemspec/RequiredRubyVersion:
|
13
|
+
Exclude:
|
14
|
+
- 'beaker-vcloud.gemspec'
|
15
|
+
|
16
|
+
# Offense count: 1
|
17
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
18
|
+
# Configuration parameters: AllowSafeAssignment.
|
19
|
+
Lint/AssignmentInCondition:
|
20
|
+
Exclude:
|
21
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
22
|
+
|
23
|
+
# Offense count: 2
|
24
|
+
Lint/DuplicateMethods:
|
25
|
+
Exclude:
|
26
|
+
- 'spec/mock_vsphere_helper.rb'
|
27
|
+
|
28
|
+
# Offense count: 1
|
29
|
+
# Configuration parameters: AllowedParentClasses.
|
30
|
+
Lint/MissingSuper:
|
31
|
+
Exclude:
|
32
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
33
|
+
|
34
|
+
# Offense count: 1
|
35
|
+
# Configuration parameters: AllowComments, AllowNil.
|
36
|
+
Lint/SuppressedException:
|
37
|
+
Exclude:
|
38
|
+
- 'Rakefile'
|
39
|
+
|
40
|
+
# Offense count: 2
|
41
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
42
|
+
# Configuration parameters: AutoCorrect.
|
43
|
+
Lint/UselessAssignment:
|
44
|
+
Exclude:
|
45
|
+
- 'Rakefile'
|
46
|
+
|
47
|
+
# Offense count: 3
|
48
|
+
Naming/AccessorMethodName:
|
49
|
+
Exclude:
|
50
|
+
- 'spec/mock_vsphere.rb'
|
51
|
+
- 'spec/mock_vsphere_helper.rb'
|
52
|
+
|
53
|
+
# Offense count: 30
|
54
|
+
# Configuration parameters: EnforcedStyle, AllowedPatterns.
|
55
|
+
# SupportedStyles: snake_case, camelCase
|
56
|
+
Naming/MethodName:
|
57
|
+
Exclude:
|
58
|
+
- 'spec/mock_vsphere.rb'
|
59
|
+
- 'spec/mock_vsphere_helper.rb'
|
60
|
+
|
61
|
+
# Offense count: 6
|
62
|
+
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
|
63
|
+
# AllowedNames: as, at, by, cc, db, id, if, in, io, ip, of, on, os, pp, to
|
64
|
+
Naming/MethodParameterName:
|
65
|
+
Exclude:
|
66
|
+
- 'spec/mock_vsphere.rb'
|
67
|
+
- 'spec/mock_vsphere_helper.rb'
|
68
|
+
|
69
|
+
# Offense count: 16
|
70
|
+
# Configuration parameters: EnforcedStyle, AllowedIdentifiers, AllowedPatterns.
|
71
|
+
# SupportedStyles: snake_case, camelCase
|
72
|
+
Naming/VariableName:
|
73
|
+
Exclude:
|
74
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
75
|
+
- 'spec/mock_vsphere.rb'
|
76
|
+
- 'spec/mock_vsphere_helper.rb'
|
77
|
+
|
78
|
+
# Offense count: 2
|
79
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
80
|
+
Performance/MapCompact:
|
81
|
+
Exclude:
|
82
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
83
|
+
- 'spec/beaker/hypervisor/vcloud_spec.rb'
|
84
|
+
|
85
|
+
# Offense count: 1
|
86
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
87
|
+
Performance/StringInclude:
|
88
|
+
Exclude:
|
89
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
90
|
+
|
91
|
+
# Offense count: 2
|
92
|
+
RSpec/AnyInstance:
|
93
|
+
Exclude:
|
94
|
+
- 'spec/beaker/hypervisor/vcloud_spec.rb'
|
95
|
+
|
96
|
+
# Offense count: 7
|
97
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
98
|
+
# Configuration parameters: SkipBlocks, EnforcedStyle, OnlyStaticConstants.
|
99
|
+
# SupportedStyles: described_class, explicit
|
100
|
+
RSpec/DescribedClass:
|
101
|
+
Exclude:
|
102
|
+
- 'spec/beaker/hypervisor/vcloud_spec.rb'
|
103
|
+
|
104
|
+
# Offense count: 3
|
105
|
+
# Configuration parameters: CountAsOne.
|
106
|
+
RSpec/ExampleLength:
|
107
|
+
Max: 15
|
108
|
+
|
109
|
+
# Offense count: 2
|
110
|
+
# Configuration parameters: .
|
111
|
+
# SupportedStyles: have_received, receive
|
112
|
+
RSpec/MessageSpies:
|
113
|
+
EnforcedStyle: receive
|
114
|
+
|
115
|
+
# Offense count: 1
|
116
|
+
RSpec/MultipleExpectations:
|
117
|
+
Max: 2
|
118
|
+
|
119
|
+
# Offense count: 6
|
120
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
121
|
+
RSpec/ReceiveMessages:
|
122
|
+
Exclude:
|
123
|
+
- 'spec/beaker/hypervisor/vcloud_spec.rb'
|
124
|
+
|
125
|
+
# Offense count: 1
|
126
|
+
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
|
127
|
+
RSpec/VerifiedDoubles:
|
128
|
+
Exclude:
|
129
|
+
- 'spec/beaker/hypervisor/vcloud_spec.rb'
|
130
|
+
|
131
|
+
# Offense count: 3
|
132
|
+
# This cop supports safe autocorrection (--autocorrect).
|
133
|
+
Rake/Desc:
|
134
|
+
Exclude:
|
135
|
+
- 'Rakefile'
|
136
|
+
|
137
|
+
# Offense count: 2
|
138
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
139
|
+
# Configuration parameters: EnforcedStyle.
|
140
|
+
# SupportedStyles: always, conditionals
|
141
|
+
Style/AndOr:
|
142
|
+
Exclude:
|
143
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
144
|
+
|
145
|
+
# Offense count: 2
|
146
|
+
# This cop supports safe autocorrection (--autocorrect).
|
147
|
+
# Configuration parameters: AllowOnConstant, AllowOnSelfClass.
|
148
|
+
Style/CaseEquality:
|
149
|
+
Exclude:
|
150
|
+
- 'spec/beaker/hypervisor/vcloud_spec.rb'
|
151
|
+
|
152
|
+
# Offense count: 4
|
153
|
+
Style/ClassVars:
|
154
|
+
Exclude:
|
155
|
+
- 'spec/mock_vsphere_helper.rb'
|
156
|
+
|
157
|
+
# Offense count: 1
|
158
|
+
# Configuration parameters: AllowedConstants.
|
159
|
+
Style/Documentation:
|
160
|
+
Exclude:
|
161
|
+
- 'spec/**/*'
|
162
|
+
- 'test/**/*'
|
163
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
164
|
+
|
165
|
+
# Offense count: 4
|
166
|
+
# This cop supports safe autocorrection (--autocorrect).
|
167
|
+
# Configuration parameters: EnforcedStyle.
|
168
|
+
# SupportedStyles: format, sprintf, percent
|
169
|
+
Style/FormatString:
|
170
|
+
Exclude:
|
171
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
172
|
+
|
173
|
+
# Offense count: 11
|
174
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
175
|
+
# Configuration parameters: EnforcedStyle.
|
176
|
+
# SupportedStyles: always, always_true, never
|
177
|
+
Style/FrozenStringLiteralComment:
|
178
|
+
Exclude:
|
179
|
+
- '.simplecov'
|
180
|
+
- 'Gemfile'
|
181
|
+
- 'Rakefile'
|
182
|
+
- 'beaker-vcloud.gemspec'
|
183
|
+
- 'bin/beaker-vcloud'
|
184
|
+
- 'lib/beaker-vcloud/version.rb'
|
185
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
186
|
+
- 'spec/beaker/hypervisor/vcloud_spec.rb'
|
187
|
+
- 'spec/mock_vsphere.rb'
|
188
|
+
- 'spec/mock_vsphere_helper.rb'
|
189
|
+
- 'spec/spec_helper.rb'
|
190
|
+
|
191
|
+
# Offense count: 2
|
192
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
193
|
+
# Configuration parameters: AllowedReceivers.
|
194
|
+
# AllowedReceivers: Thread.current
|
195
|
+
Style/HashEachMethods:
|
196
|
+
Exclude:
|
197
|
+
- 'spec/mock_vsphere_helper.rb'
|
198
|
+
|
199
|
+
# Offense count: 1
|
200
|
+
# This cop supports safe autocorrection (--autocorrect).
|
201
|
+
Style/IfUnlessModifier:
|
202
|
+
Exclude:
|
203
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
204
|
+
|
205
|
+
# Offense count: 1
|
206
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
207
|
+
# Configuration parameters: AllowedMethods.
|
208
|
+
# AllowedMethods: nonzero?
|
209
|
+
Style/IfWithBooleanLiteralBranches:
|
210
|
+
Exclude:
|
211
|
+
- 'Rakefile'
|
212
|
+
|
213
|
+
# Offense count: 3
|
214
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
215
|
+
Style/LineEndConcatenation:
|
216
|
+
Exclude:
|
217
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
218
|
+
|
219
|
+
# Offense count: 4
|
220
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
221
|
+
# Configuration parameters: EnforcedStyle.
|
222
|
+
# SupportedStyles: literals, strict
|
223
|
+
Style/MutableConstant:
|
224
|
+
Exclude:
|
225
|
+
- 'Rakefile'
|
226
|
+
- 'bin/beaker-vcloud'
|
227
|
+
- 'lib/beaker-vcloud/version.rb'
|
228
|
+
|
229
|
+
# Offense count: 1
|
230
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
231
|
+
# Configuration parameters: EnforcedStyle, AllowedMethods, AllowedPatterns.
|
232
|
+
# SupportedStyles: predicate, comparison
|
233
|
+
Style/NumericPredicate:
|
234
|
+
Exclude:
|
235
|
+
- 'spec/**/*'
|
236
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
237
|
+
|
238
|
+
# Offense count: 2
|
239
|
+
Style/OpenStructUse:
|
240
|
+
Exclude:
|
241
|
+
- 'spec/mock_vsphere.rb'
|
242
|
+
|
243
|
+
# Offense count: 1
|
244
|
+
# Configuration parameters: AllowedMethods.
|
245
|
+
# AllowedMethods: respond_to_missing?
|
246
|
+
Style/OptionalBooleanParameter:
|
247
|
+
Exclude:
|
248
|
+
- 'spec/mock_vsphere.rb'
|
249
|
+
|
250
|
+
# Offense count: 2
|
251
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
252
|
+
# Configuration parameters: EnforcedStyle.
|
253
|
+
# SupportedStyles: short, verbose
|
254
|
+
Style/PreferredHashMethods:
|
255
|
+
Exclude:
|
256
|
+
- 'spec/mock_vsphere_helper.rb'
|
257
|
+
|
258
|
+
# Offense count: 1
|
259
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
260
|
+
# Configuration parameters: Methods.
|
261
|
+
Style/RedundantArgument:
|
262
|
+
Exclude:
|
263
|
+
- 'Rakefile'
|
264
|
+
|
265
|
+
# Offense count: 2
|
266
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
267
|
+
# Configuration parameters: AutoCorrect, AllowComments.
|
268
|
+
Style/RedundantInitialize:
|
269
|
+
Exclude:
|
270
|
+
- 'spec/mock_vsphere.rb'
|
271
|
+
- 'spec/mock_vsphere_helper.rb'
|
272
|
+
|
273
|
+
# Offense count: 3
|
274
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
275
|
+
# Configuration parameters: Mode.
|
276
|
+
Style/StringConcatenation:
|
277
|
+
Exclude:
|
278
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
279
|
+
- 'spec/mock_vsphere.rb'
|
280
|
+
|
281
|
+
# Offense count: 1
|
282
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
283
|
+
Style/ZeroLengthPredicate:
|
284
|
+
Exclude:
|
285
|
+
- 'lib/beaker/hypervisor/vcloud.rb'
|
286
|
+
|
287
|
+
# Offense count: 4
|
288
|
+
# This cop supports safe autocorrection (--autocorrect).
|
289
|
+
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
|
290
|
+
# URISchemes: http, https
|
291
|
+
Layout/LineLength:
|
292
|
+
Max: 152
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [2.0.0](https://github.com/voxpupuli/beaker-vcloud/tree/2.0.0) (2024-04-23)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-vcloud/compare/1.1.0...2.0.0)
|
6
|
+
|
7
|
+
**Breaking changes:**
|
8
|
+
|
9
|
+
- Drop Ruby 2.4/2.5/2.5 support [\#21](https://github.com/voxpupuli/beaker-vcloud/pull/21) ([bastelfreak](https://github.com/bastelfreak))
|
10
|
+
|
11
|
+
**Implemented enhancements:**
|
12
|
+
|
13
|
+
- add strict version constraints for dependencies & Build gem in strict mode [\#28](https://github.com/voxpupuli/beaker-vcloud/pull/28) ([bastelfreak](https://github.com/bastelfreak))
|
14
|
+
- Apply our CI best practices [\#27](https://github.com/voxpupuli/beaker-vcloud/pull/27) ([bastelfreak](https://github.com/bastelfreak))
|
15
|
+
- Implement voxpupli-rubocop & rubocop: autocorrect [\#26](https://github.com/voxpupuli/beaker-vcloud/pull/26) ([bastelfreak](https://github.com/bastelfreak))
|
16
|
+
- Replace dead dependency rbvmomi with rbvmomi2 [\#23](https://github.com/voxpupuli/beaker-vcloud/pull/23) ([bastelfreak](https://github.com/bastelfreak))
|
17
|
+
- Add Ruby 3.1/3.2/3.3 to CI [\#19](https://github.com/voxpupuli/beaker-vcloud/pull/19) ([bastelfreak](https://github.com/bastelfreak))
|
18
|
+
|
19
|
+
**Fixed bugs:**
|
20
|
+
|
21
|
+
- Add missing beaker dependency [\#22](https://github.com/voxpupuli/beaker-vcloud/pull/22) ([bastelfreak](https://github.com/bastelfreak))
|
22
|
+
|
23
|
+
**Merged pull requests:**
|
24
|
+
|
25
|
+
- Update fakefs requirement from ~\> 0.6 to ~\> 2.5 [\#25](https://github.com/voxpupuli/beaker-vcloud/pull/25) ([dependabot[bot]](https://github.com/apps/dependabot))
|
26
|
+
- dependabot: check for github actions and gems [\#18](https://github.com/voxpupuli/beaker-vcloud/pull/18) ([bastelfreak](https://github.com/bastelfreak))
|
27
|
+
|
28
|
+
## [1.1.0](https://github.com/voxpupuli/beaker-vcloud/tree/1.1.0) (2021-08-09)
|
29
|
+
|
30
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-vcloud/compare/1.0.0...1.1.0)
|
31
|
+
|
32
|
+
**Merged pull requests:**
|
33
|
+
|
34
|
+
- Add GitHub actions, Update README.md after migration [\#8](https://github.com/voxpupuli/beaker-vcloud/pull/8) ([bastelfreak](https://github.com/bastelfreak))
|
35
|
+
|
36
|
+
## [1.0.0](https://github.com/voxpupuli/beaker-vcloud/tree/1.0.0) (2018-08-06)
|
37
|
+
|
38
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-vcloud/compare/0.4.0...1.0.0)
|
39
|
+
|
40
|
+
**Merged pull requests:**
|
41
|
+
|
42
|
+
- \(BKR-1509\) Removes vcloud legacy fallback to vmpooler [\#7](https://github.com/voxpupuli/beaker-vcloud/pull/7) ([Dakta](https://github.com/Dakta))
|
43
|
+
|
44
|
+
## [0.4.0](https://github.com/voxpupuli/beaker-vcloud/tree/0.4.0) (2018-08-03)
|
45
|
+
|
46
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-vcloud/compare/0.3.0...0.4.0)
|
47
|
+
|
48
|
+
**Merged pull requests:**
|
49
|
+
|
50
|
+
- \(BKR-1507\) Specify vcenter\_instance for init [\#6](https://github.com/voxpupuli/beaker-vcloud/pull/6) ([jcoconnor](https://github.com/jcoconnor))
|
51
|
+
|
52
|
+
## [0.3.0](https://github.com/voxpupuli/beaker-vcloud/tree/0.3.0) (2018-06-27)
|
53
|
+
|
54
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-vcloud/compare/0.2.0...0.3.0)
|
55
|
+
|
56
|
+
**Merged pull requests:**
|
57
|
+
|
58
|
+
- \(BKR-1094\) Deprecate vcloud's silent fallback to vmpooler [\#5](https://github.com/voxpupuli/beaker-vcloud/pull/5) ([Dakta](https://github.com/Dakta))
|
59
|
+
|
60
|
+
## [0.2.0](https://github.com/voxpupuli/beaker-vcloud/tree/0.2.0) (2017-10-24)
|
61
|
+
|
62
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-vcloud/compare/0.1.0...0.2.0)
|
63
|
+
|
64
|
+
**Merged pull requests:**
|
65
|
+
|
66
|
+
- \(BKR-1217\) suppress enable\_root on cygwin SUTs [\#4](https://github.com/voxpupuli/beaker-vcloud/pull/4) ([kevpl](https://github.com/kevpl))
|
67
|
+
- \(BKR-1216\) Add beaker-vmware to vcloud [\#2](https://github.com/voxpupuli/beaker-vcloud/pull/2) ([tvpartytonight](https://github.com/tvpartytonight))
|
68
|
+
|
69
|
+
## [0.1.0](https://github.com/voxpupuli/beaker-vcloud/tree/0.1.0) (2017-08-09)
|
70
|
+
|
71
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-vcloud/compare/df44e4b13e3ede1d832623b54fe4acb8278543dd...0.1.0)
|
72
|
+
|
73
|
+
**Merged pull requests:**
|
74
|
+
|
75
|
+
- \(MAINT\) Add README for beaker-vcloud repo [\#1](https://github.com/voxpupuli/beaker-vcloud/pull/1) ([rishijavia](https://github.com/rishijavia))
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/Gemfile
CHANGED
@@ -1,25 +1,13 @@
|
|
1
|
-
source ENV['GEM_SOURCE'] ||
|
1
|
+
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
elsif place =~ /^file:\/\/(.*)/
|
9
|
-
['>= 0', { :path => File.expand_path($1), :require => false }]
|
10
|
-
else
|
11
|
-
[place, { :require => false }]
|
12
|
-
end
|
5
|
+
group :release do
|
6
|
+
gem 'faraday-retry', '~> 2.1', require: false
|
7
|
+
gem 'github_changelog_generator', '~> 1.16.4', require: false
|
13
8
|
end
|
14
9
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
group :acceptance_testing do
|
19
|
-
gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '~> 3.0')
|
20
|
-
end
|
21
|
-
|
22
|
-
|
23
|
-
if File.exists? "#{__FILE__}.local"
|
24
|
-
eval(File.read("#{__FILE__}.local"), binding)
|
10
|
+
group :coverage, optional: ENV['COVERAGE'] != 'yes' do
|
11
|
+
gem 'codecov', require: false
|
12
|
+
gem 'simplecov-console', require: false
|
25
13
|
end
|
data/README.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# beaker-vcloud
|
2
2
|
|
3
|
+
[![License](https://img.shields.io/github/license/voxpupuli/beaker-vcloud.svg)](https://github.com/voxpupuli/beaker-vcloud/blob/master/LICENSE)
|
4
|
+
[![Test](https://github.com/voxpupuli/beaker-vcloud/actions/workflows/test.yml/badge.svg)](https://github.com/voxpupuli/beaker-vcloud/actions/workflows/test.yml)
|
5
|
+
[![codecov](https://codecov.io/gh/voxpupuli/beaker-vcloud/branch/master/graph/badge.svg)](https://codecov.io/gh/voxpupuli/beaker-vcloud)
|
6
|
+
[![Release](https://github.com/voxpupuli/beaker-vcloud/actions/workflows/release.yml/badge.svg)](https://github.com/voxpupuli/beaker-vcloud/actions/workflows/release.yml)
|
7
|
+
[![RubyGem Version](https://img.shields.io/gem/v/beaker-vcloud.svg)](https://rubygems.org/gems/beaker-vcloud)
|
8
|
+
[![RubyGem Downloads](https://img.shields.io/gem/dt/beaker-vcloud.svg)](https://rubygems.org/gems/beaker-vcloud)
|
9
|
+
[![Donated by Puppet Inc](https://img.shields.io/badge/donated%20by-Puppet%20Inc-fb7047.svg)](#transfer-notice)
|
10
|
+
|
3
11
|
Beaker library to use vcloud hypervisor
|
4
12
|
|
5
13
|
# Legacy VMPooler Fallback
|
@@ -29,6 +37,24 @@ s.add_runtime_dependency 'beaker', '~>4.0'
|
|
29
37
|
s.add_runtime_dependency 'beaker-vcloud'
|
30
38
|
~~~
|
31
39
|
|
32
|
-
|
40
|
+
## Transfer Notice
|
41
|
+
|
42
|
+
This plugin was originally authored by [Puppet Inc](http://puppet.com).
|
43
|
+
The maintainer preferred that Vox Pupuli take ownership of the module for future improvement and maintenance.
|
44
|
+
Existing pull requests and issues were transferred over, please fork and continue to contribute at https://github.com/voxpupuli/beaker-vcloud
|
45
|
+
|
46
|
+
Previously: https://github.com/puppetlabs/beaker-vcloud
|
47
|
+
|
48
|
+
## License
|
49
|
+
|
50
|
+
This gem is licensed under the Apache-2 license.
|
51
|
+
|
52
|
+
## Release information
|
33
53
|
|
34
|
-
|
54
|
+
To make a new release, please do:
|
55
|
+
* update the version in lib/beaker-vcloud/version.rb
|
56
|
+
* Install gems with `bundle install --with release --path .vendor`
|
57
|
+
* generate the changelog with `bundle exec rake changelog`
|
58
|
+
* Check if the new version matches the closed issues/PRs in the changelog
|
59
|
+
* Create a PR with it
|
60
|
+
* After it got merged, push a tag. GitHub actions will do the actual release to rubygems and GitHub Packages
|