beaker-vmware 2.1.1 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop_todo.yml +3 -3
- data/CHANGELOG.md +12 -0
- data/beaker-vmware.gemspec +2 -2
- data/lib/beaker-vmware/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 654879046503d416397946c9117f33e8be9d18238c53130d32ea8a54d04f2a80
|
4
|
+
data.tar.gz: e650b1133150e6f2ad34978891eeb50c65c3b6be1f6a18e4f57a8ab41b76c9ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa843f17c89db8de132af4f5ab7a5ccb0ec8836ca1601a76f9499f02b6e7723bd3edc5afd4be3bef0148b1733b07d54ed92d2bc5e030ee5189c26a1a74c268db
|
7
|
+
data.tar.gz: 27643ee930555499182812519abe651e970f3f739370d0338b71ade3f2406f9c52d6c03d183ccadb4866e7924cfe9a35ca4b05cf789607a1c14dc1ec05b885f3
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2024-05-28 10:12:30 UTC using RuboCop version 1.63.5.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -78,7 +78,7 @@ RSpec/AnyInstance:
|
|
78
78
|
|
79
79
|
# Offense count: 12
|
80
80
|
# This cop supports unsafe autocorrection (--autocorrect-all).
|
81
|
-
# Configuration parameters: SkipBlocks, EnforcedStyle.
|
81
|
+
# Configuration parameters: SkipBlocks, EnforcedStyle, OnlyStaticConstants.
|
82
82
|
# SupportedStyles: described_class, explicit
|
83
83
|
RSpec/DescribedClass:
|
84
84
|
Exclude:
|
@@ -231,7 +231,7 @@ Style/PreferredHashMethods:
|
|
231
231
|
|
232
232
|
# Offense count: 2
|
233
233
|
# This cop supports unsafe autocorrection (--autocorrect-all).
|
234
|
-
# Configuration parameters: AllowComments.
|
234
|
+
# Configuration parameters: AutoCorrect, AllowComments.
|
235
235
|
Style/RedundantInitialize:
|
236
236
|
Exclude:
|
237
237
|
- 'spec/mock_vsphere.rb'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [2.2.0](https://github.com/voxpupuli/beaker-vmware/tree/2.2.0) (2024-05-28)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-vmware/compare/2.1.1...2.2.0)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- beaker: Allow 6.x [\#49](https://github.com/voxpupuli/beaker-vmware/pull/49) ([bastelfreak](https://github.com/bastelfreak))
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- voxpupuli-rubocop: require 2.7.0 [\#50](https://github.com/voxpupuli/beaker-vmware/pull/50) ([bastelfreak](https://github.com/bastelfreak))
|
14
|
+
|
3
15
|
## [2.1.1](https://github.com/voxpupuli/beaker-vmware/tree/2.1.1) (2024-05-02)
|
4
16
|
|
5
17
|
[Full Changelog](https://github.com/voxpupuli/beaker-vmware/compare/2.1.0...2.1.1)
|
data/beaker-vmware.gemspec
CHANGED
@@ -22,9 +22,9 @@ Gem::Specification.new do |s|
|
|
22
22
|
s.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
|
23
23
|
s.add_development_dependency 'rspec', '~> 3.0'
|
24
24
|
s.add_development_dependency 'rspec-its', '~> 1.3'
|
25
|
-
s.add_development_dependency 'voxpupuli-rubocop', '~> 2.
|
25
|
+
s.add_development_dependency 'voxpupuli-rubocop', '~> 2.7.0'
|
26
26
|
# Run time dependencies
|
27
|
-
s.add_runtime_dependency 'beaker', '>= 4', '<
|
27
|
+
s.add_runtime_dependency 'beaker', '>= 4', '< 7'
|
28
28
|
s.add_runtime_dependency 'fission', '~> 0.4'
|
29
29
|
s.add_runtime_dependency 'rbvmomi2', '~> 3.7'
|
30
30
|
s.add_runtime_dependency 'stringify-hash', '~> 0.0.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-vmware
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fakefs
|
@@ -78,14 +78,14 @@ dependencies:
|
|
78
78
|
requirements:
|
79
79
|
- - "~>"
|
80
80
|
- !ruby/object:Gem::Version
|
81
|
-
version: 2.
|
81
|
+
version: 2.7.0
|
82
82
|
type: :development
|
83
83
|
prerelease: false
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
85
85
|
requirements:
|
86
86
|
- - "~>"
|
87
87
|
- !ruby/object:Gem::Version
|
88
|
-
version: 2.
|
88
|
+
version: 2.7.0
|
89
89
|
- !ruby/object:Gem::Dependency
|
90
90
|
name: beaker
|
91
91
|
requirement: !ruby/object:Gem::Requirement
|
@@ -95,7 +95,7 @@ dependencies:
|
|
95
95
|
version: '4'
|
96
96
|
- - "<"
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: '
|
98
|
+
version: '7'
|
99
99
|
type: :runtime
|
100
100
|
prerelease: false
|
101
101
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -105,7 +105,7 @@ dependencies:
|
|
105
105
|
version: '4'
|
106
106
|
- - "<"
|
107
107
|
- !ruby/object:Gem::Version
|
108
|
-
version: '
|
108
|
+
version: '7'
|
109
109
|
- !ruby/object:Gem::Dependency
|
110
110
|
name: fission
|
111
111
|
requirement: !ruby/object:Gem::Requirement
|