beaker-vagrant 2.0.0 → 2.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce132dde1a0dfe1e4418cbd6cfe5db6dcbb4ee312a090ed7cfb10ff90da59a2e
4
- data.tar.gz: 55ec2efb5d2841a28e29ad9970d1d5b0c8bd99b43d5a6d0cb8eea4d40215e6c6
3
+ metadata.gz: 74f4253e3560ebff2a8c54f81eb71f7c49c50125096966cde054452e19fe0d94
4
+ data.tar.gz: bef8b058d02a069abb348946aa852df492dd011abf772a5a9baa45a1bfd30fb7
5
5
  SHA512:
6
- metadata.gz: de429f8e1a8c53e7bf34400bf1e0ed2ffc1f076d37d3bc50ec10334c950bfa5d64ff007da1beb86c906b20f9c8aeb8a85b1ef2fed89a2373edbf70911569b1c7
7
- data.tar.gz: d6d22e87be99c230c24dc8f23a2f22fb7d2e5a2bbe55713487f941aa7ae6d67973c96e0ec9d2159795d242bd11dbe4a95d29ff84be1314496670ec7026a8a137
6
+ metadata.gz: 3ef68990ac8a8202b5e4a2bb6d7f7dcf0f1c094944a0112f8b7f6be4a33c6e0878931c6adfcbfae23390d8fe0319798890946b8f9019ee7fc2c10f98f548602f
7
+ data.tar.gz: 15632922da5bd5fb058a3e61fd036d88a59d2c743fc86e438fe1f05f10117814e21bba8e2475c316f69cec0264e59bcd745521c31f59e3b7b1f5ff7838002c08
@@ -7,6 +7,9 @@ on:
7
7
  branches:
8
8
  - master
9
9
 
10
+ permissions:
11
+ contents: read
12
+
10
13
  jobs:
11
14
  rubocop_and_matrix:
12
15
  runs-on: ubuntu-24.04
@@ -22,7 +25,7 @@ jobs:
22
25
  - name: Run Rubocop
23
26
  run: bundle exec rake rubocop
24
27
  - id: ruby
25
- uses: voxpupuli/ruby-version@v1
28
+ uses: voxpupuli/ruby-version@v2
26
29
 
27
30
  spec:
28
31
  runs-on: ubuntu-24.04
data/.rubocop.yml CHANGED
@@ -3,6 +3,3 @@ inherit_from: .rubocop_todo.yml
3
3
 
4
4
  inherit_gem:
5
5
  voxpupuli-rubocop: rubocop.yml
6
-
7
- AllCops:
8
- TargetRubyVersion: 3.2
data/.rubocop_todo.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config --no-auto-gen-timestamp`
3
- # using RuboCop version 1.75.8.
3
+ # using RuboCop version 1.85.1.
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
@@ -106,10 +106,6 @@ RSpec/InstanceVariable:
106
106
  RSpec/MessageSpies:
107
107
  EnforcedStyle: receive
108
108
 
109
- # Offense count: 17
110
- RSpec/MultipleExpectations:
111
- Max: 5
112
-
113
109
  # Offense count: 2
114
110
  # Configuration parameters: AllowSubject.
115
111
  RSpec/MultipleMemoizedHelpers:
@@ -127,6 +123,12 @@ RSpec/NamedSubject:
127
123
  - 'spec/beaker/vagrant_virtualbox_spec.rb'
128
124
  - 'spec/beaker/vagrant_workstation_spec.rb'
129
125
 
126
+ # Offense count: 1
127
+ # This cop supports unsafe autocorrection (--autocorrect-all).
128
+ RSpec/Output:
129
+ Exclude:
130
+ - 'spec/beaker/vagrant_spec.rb'
131
+
130
132
  # Offense count: 3
131
133
  RSpec/StubbedMock:
132
134
  Exclude:
@@ -162,7 +164,7 @@ Style/CaseEquality:
162
164
  - 'spec/beaker/vagrant_custom_spec.rb'
163
165
  - 'spec/beaker/vagrant_spec.rb'
164
166
 
165
- # Offense count: 8
167
+ # Offense count: 7
166
168
  # This cop supports unsafe autocorrection (--autocorrect-all).
167
169
  # Configuration parameters: EnforcedStyle, EnforcedStyleForClasses, EnforcedStyleForModules.
168
170
  # SupportedStyles: nested, compact
@@ -170,7 +172,6 @@ Style/CaseEquality:
170
172
  # SupportedStylesForModules: ~, nested, compact
171
173
  Style/ClassAndModuleChildren:
172
174
  Exclude:
173
- - 'lib/beaker/hypervisor/vagrant/mount_folder.rb'
174
175
  - 'lib/beaker/hypervisor/vagrant_custom.rb'
175
176
  - 'lib/beaker/hypervisor/vagrant_desktop.rb'
176
177
  - 'lib/beaker/hypervisor/vagrant_fusion.rb'
@@ -201,6 +202,11 @@ Style/EnvHome:
201
202
  Exclude:
202
203
  - 'Rakefile'
203
204
 
205
+ # Offense count: 1
206
+ Style/FileOpen:
207
+ Exclude:
208
+ - 'spec/beaker/vagrant_custom_spec.rb'
209
+
204
210
  # Offense count: 22
205
211
  # This cop supports unsafe autocorrection (--autocorrect-all).
206
212
  # Configuration parameters: EnforcedStyle.
@@ -259,7 +265,7 @@ Style/StringConcatenation:
259
265
 
260
266
  # Offense count: 24
261
267
  # This cop supports safe autocorrection (--autocorrect).
262
- # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
268
+ # Configuration parameters: AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, AllowRBSInlineAnnotation, AllowCopDirectives, AllowedPatterns, SplitStrings.
263
269
  # URISchemes: http, https
264
270
  Layout/LineLength:
265
271
  Max: 222
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.1.0](https://github.com/voxpupuli/beaker-vagrant/tree/2.1.0) (2026-04-02)
4
+
5
+ [Full Changelog](https://github.com/voxpupuli/beaker-vagrant/compare/2.0.0...2.1.0)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - Add Ruby 4.0 support [\#100](https://github.com/voxpupuli/beaker-vagrant/pull/100) ([bastelfreak](https://github.com/bastelfreak))
10
+
3
11
  ## [2.0.0](https://github.com/voxpupuli/beaker-vagrant/tree/2.0.0) (2025-08-07)
4
12
 
5
13
  [Full Changelog](https://github.com/voxpupuli/beaker-vagrant/compare/1.4.0...2.0.0)
data/Gemfile CHANGED
@@ -6,5 +6,5 @@ gemspec
6
6
 
7
7
  group :release, optional: true do
8
8
  gem 'faraday-retry', '~> 2.1', require: false
9
- gem 'github_changelog_generator', '~> 1.16.4', require: false
9
+ gem 'github_changelog_generator', '~> 1.18', require: false
10
10
  end
@@ -16,18 +16,25 @@ Gem::Specification.new do |s|
16
16
  s.description = 'For use for the Beaker acceptance testing tool'
17
17
  s.license = 'Apache-2.0'
18
18
 
19
- s.required_ruby_version = Gem::Requirement.new('>= 3.2', '< 4')
19
+ s.required_ruby_version = Gem::Requirement.new('>= 3.2', '< 5')
20
20
 
21
21
  s.files = `git ls-files`.split("\n")
22
22
  s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
23
23
  s.require_paths = ['lib']
24
24
 
25
+ s.metadata = {
26
+ 'source_code_uri' => 'https://github.com/voxpupuli/beaker-vagrant',
27
+ 'changelog_uri' => 'https://github.com/voxpupuli/beaker-vagrant/blob/main/CHANGELOG.md',
28
+ 'bug_tracker_uri' => 'https://github.com/voxpupuli/beaker-vagrant/issues',
29
+ 'rubygems_mfa_required' => 'true',
30
+ }
31
+
25
32
  # Testing dependencies
26
33
  s.add_development_dependency 'fakefs', '>= 0.6', '< 4'
27
34
  s.add_development_dependency 'pry', '~> 0.10'
28
35
  s.add_development_dependency 'rake', '~> 13.0'
29
36
  s.add_development_dependency 'rspec', '~> 3.0'
30
- s.add_development_dependency 'voxpupuli-rubocop', '~> 4.1.0'
37
+ s.add_development_dependency 'voxpupuli-rubocop', '~> 5.2.0'
31
38
 
32
39
  s.add_dependency 'beaker', '>= 4', '< 8'
33
40
  end
@@ -1,3 +1,3 @@
1
1
  module BeakerVagrant
2
- VERSION = '2.0.0'
2
+ VERSION = '2.1.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-vagrant
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
@@ -80,14 +80,14 @@ dependencies:
80
80
  requirements:
81
81
  - - "~>"
82
82
  - !ruby/object:Gem::Version
83
- version: 4.1.0
83
+ version: 5.2.0
84
84
  type: :development
85
85
  prerelease: false
86
86
  version_requirements: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: 4.1.0
90
+ version: 5.2.0
91
91
  - !ruby/object:Gem::Dependency
92
92
  name: beaker
93
93
  requirement: !ruby/object:Gem::Requirement
@@ -156,7 +156,11 @@ files:
156
156
  homepage: https://github.com/puppetlabs/beaker-vagrant
157
157
  licenses:
158
158
  - Apache-2.0
159
- metadata: {}
159
+ metadata:
160
+ source_code_uri: https://github.com/voxpupuli/beaker-vagrant
161
+ changelog_uri: https://github.com/voxpupuli/beaker-vagrant/blob/main/CHANGELOG.md
162
+ bug_tracker_uri: https://github.com/voxpupuli/beaker-vagrant/issues
163
+ rubygems_mfa_required: 'true'
160
164
  rdoc_options: []
161
165
  require_paths:
162
166
  - lib
@@ -167,14 +171,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
167
171
  version: '3.2'
168
172
  - - "<"
169
173
  - !ruby/object:Gem::Version
170
- version: '4'
174
+ version: '5'
171
175
  required_rubygems_version: !ruby/object:Gem::Requirement
172
176
  requirements:
173
177
  - - ">="
174
178
  - !ruby/object:Gem::Version
175
179
  version: '0'
176
180
  requirements: []
177
- rubygems_version: 3.6.9
181
+ rubygems_version: 4.0.6
178
182
  specification_version: 4
179
183
  summary: Beaker DSL Extension Helpers!
180
184
  test_files: []