beaker-rspec 9.0.0 → 9.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 +4 -4
- data/.github/release.yml +41 -0
- data/.github/workflows/release.yml +6 -6
- data/.github/workflows/test.yml +7 -5
- data/.rubocop.yml +0 -3
- data/.rubocop_todo.yml +6 -1
- data/CHANGELOG.md +9 -0
- data/Gemfile +3 -3
- data/beaker-rspec.gemspec +3 -3
- data/lib/beaker-rspec/version.rb +1 -1
- metadata +14 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9cc71e435ebcddca6fe39047a81c1170d7bebd027d49d7ceea815c402d36e9d
|
|
4
|
+
data.tar.gz: c1e04ffae101bb23f6901deb194d3ba128597c7ff9bfb8aeeefd74539d14cd1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1aa258712a808fcf4bfc979b3e512d94c240959bcd7b8aa2821b7341df654577a84b53165b6abcbeded44b233f278d14e3480819961f214207669563396d0ee
|
|
7
|
+
data.tar.gz: bb0fcecbf2c257a3c479509e0914de4aab446e883eaba519b73f04f135cdfe1b0c3edf74ae5032af8195e38997afb71e2ca5e83b13397b90c20abceeb1e095d4
|
data/.github/release.yml
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
|
|
3
|
+
|
|
4
|
+
changelog:
|
|
5
|
+
exclude:
|
|
6
|
+
labels:
|
|
7
|
+
- duplicate
|
|
8
|
+
- invalid
|
|
9
|
+
- modulesync
|
|
10
|
+
- question
|
|
11
|
+
- skip-changelog
|
|
12
|
+
- wont-fix
|
|
13
|
+
- wontfix
|
|
14
|
+
- github_actions
|
|
15
|
+
|
|
16
|
+
categories:
|
|
17
|
+
- title: Breaking Changes 🛠
|
|
18
|
+
labels:
|
|
19
|
+
- backwards-incompatible
|
|
20
|
+
|
|
21
|
+
- title: New Features 🎉
|
|
22
|
+
labels:
|
|
23
|
+
- enhancement
|
|
24
|
+
|
|
25
|
+
- title: Bug Fixes 🐛
|
|
26
|
+
labels:
|
|
27
|
+
- bug
|
|
28
|
+
- bugfix
|
|
29
|
+
|
|
30
|
+
- title: Documentation Updates 📚
|
|
31
|
+
labels:
|
|
32
|
+
- documentation
|
|
33
|
+
- docs
|
|
34
|
+
|
|
35
|
+
- title: Dependency Updates ⬆️
|
|
36
|
+
labels:
|
|
37
|
+
- dependencies
|
|
38
|
+
|
|
39
|
+
- title: Other Changes
|
|
40
|
+
labels:
|
|
41
|
+
- "*"
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
name: Build the gem
|
|
16
16
|
runs-on: ubuntu-24.04
|
|
17
17
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
18
|
+
- uses: actions/checkout@v6
|
|
19
19
|
- name: Install Ruby
|
|
20
20
|
uses: ruby/setup-ruby@v1
|
|
21
21
|
with:
|
|
@@ -24,7 +24,7 @@ jobs:
|
|
|
24
24
|
shell: bash
|
|
25
25
|
run: gem build --verbose *.gemspec
|
|
26
26
|
- name: Upload gem to GitHub cache
|
|
27
|
-
uses: actions/upload-artifact@
|
|
27
|
+
uses: actions/upload-artifact@v6
|
|
28
28
|
with:
|
|
29
29
|
name: gem-artifact
|
|
30
30
|
path: '*.gem'
|
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
contents: write # clone repo and create release
|
|
40
40
|
steps:
|
|
41
41
|
- name: Download gem from GitHub cache
|
|
42
|
-
uses: actions/download-artifact@
|
|
42
|
+
uses: actions/download-artifact@v7
|
|
43
43
|
with:
|
|
44
44
|
name: gem-artifact
|
|
45
45
|
- name: Create Release
|
|
@@ -56,7 +56,7 @@ jobs:
|
|
|
56
56
|
packages: write # publish to rubygems.pkg.github.com
|
|
57
57
|
steps:
|
|
58
58
|
- name: Download gem from GitHub cache
|
|
59
|
-
uses: actions/download-artifact@
|
|
59
|
+
uses: actions/download-artifact@v7
|
|
60
60
|
with:
|
|
61
61
|
name: gem-artifact
|
|
62
62
|
- name: Publish gem to GitHub packages
|
|
@@ -73,7 +73,7 @@ jobs:
|
|
|
73
73
|
id-token: write # rubygems.org authentication
|
|
74
74
|
steps:
|
|
75
75
|
- name: Download gem from GitHub cache
|
|
76
|
-
uses: actions/download-artifact@
|
|
76
|
+
uses: actions/download-artifact@v7
|
|
77
77
|
with:
|
|
78
78
|
name: gem-artifact
|
|
79
79
|
- uses: rubygems/configure-rubygems-credentials@v1.0.0
|
|
@@ -92,7 +92,7 @@ jobs:
|
|
|
92
92
|
- release-to-rubygems
|
|
93
93
|
steps:
|
|
94
94
|
- name: Download gem from GitHub cache
|
|
95
|
-
uses: actions/download-artifact@
|
|
95
|
+
uses: actions/download-artifact@v7
|
|
96
96
|
with:
|
|
97
97
|
name: gem-artifact
|
|
98
98
|
- name: Install Ruby
|
data/.github/workflows/test.yml
CHANGED
|
@@ -7,8 +7,10 @@ on:
|
|
|
7
7
|
branches:
|
|
8
8
|
- master
|
|
9
9
|
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
|
|
10
13
|
env:
|
|
11
|
-
BUNDLE_WITHOUT: release
|
|
12
14
|
BEAKER_HYPERVISOR: docker
|
|
13
15
|
|
|
14
16
|
jobs:
|
|
@@ -17,16 +19,16 @@ jobs:
|
|
|
17
19
|
outputs:
|
|
18
20
|
ruby: ${{ steps.ruby.outputs.versions }}
|
|
19
21
|
steps:
|
|
20
|
-
- uses: actions/checkout@
|
|
22
|
+
- uses: actions/checkout@v6
|
|
21
23
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
22
24
|
uses: ruby/setup-ruby@v1
|
|
23
25
|
with:
|
|
24
|
-
ruby-version:
|
|
26
|
+
ruby-version: '4.0'
|
|
25
27
|
bundler-cache: true
|
|
26
28
|
- name: Run Rubocop
|
|
27
29
|
run: bundle exec rake rubocop
|
|
28
30
|
- id: ruby
|
|
29
|
-
uses: voxpupuli/ruby-version@
|
|
31
|
+
uses: voxpupuli/ruby-version@v2
|
|
30
32
|
|
|
31
33
|
build:
|
|
32
34
|
runs-on: ubuntu-24.04
|
|
@@ -37,7 +39,7 @@ jobs:
|
|
|
37
39
|
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
|
|
38
40
|
name: Ruby ${{ matrix.ruby }}
|
|
39
41
|
steps:
|
|
40
|
-
- uses: actions/checkout@
|
|
42
|
+
- uses: actions/checkout@v6
|
|
41
43
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
42
44
|
uses: ruby/setup-ruby@v1
|
|
43
45
|
with:
|
data/.rubocop.yml
CHANGED
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.
|
|
3
|
+
# using RuboCop version 1.81.7.
|
|
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
|
|
@@ -45,6 +45,11 @@ RSpec/DescribeClass:
|
|
|
45
45
|
- '**/spec/views/**/*'
|
|
46
46
|
- 'spec/acceptance/example_spec.rb'
|
|
47
47
|
|
|
48
|
+
# Offense count: 1
|
|
49
|
+
RSpec/LeakyLocalVariable:
|
|
50
|
+
Exclude:
|
|
51
|
+
- 'spec/acceptance/example_spec.rb'
|
|
52
|
+
|
|
48
53
|
# Offense count: 5
|
|
49
54
|
# Configuration parameters: AllowedPatterns.
|
|
50
55
|
# AllowedPatterns: ^expect_, ^assert_
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [9.1.0](https://github.com/voxpupuli/beaker-rspec/tree/9.1.0) (2025-12-27)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-rspec/compare/9.0.0...9.1.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Add Ruby 4.0 support [\#161](https://github.com/voxpupuli/beaker-rspec/pull/161) ([bastelfreak](https://github.com/bastelfreak))
|
|
12
|
+
- minitest: allow 6.x [\#160](https://github.com/voxpupuli/beaker-rspec/pull/160) ([bastelfreak](https://github.com/bastelfreak))
|
|
13
|
+
|
|
5
14
|
## [9.0.0](https://github.com/voxpupuli/beaker-rspec/tree/9.0.0) (2025-08-07)
|
|
6
15
|
|
|
7
16
|
[Full Changelog](https://github.com/voxpupuli/beaker-rspec/compare/8.3.0...9.0.0)
|
data/Gemfile
CHANGED
|
@@ -25,9 +25,9 @@ when 'vmpooler'
|
|
|
25
25
|
gem 'beaker-vmpooler', '~> 1.3'
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
-
group :release do
|
|
29
|
-
gem 'faraday-retry', require: false
|
|
30
|
-
gem 'github_changelog_generator', require: false
|
|
28
|
+
group :release, optional: true do
|
|
29
|
+
gem 'faraday-retry', '~> 2.1', require: false
|
|
30
|
+
gem 'github_changelog_generator', '~> 1.16.4', require: false
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
gemspec
|
data/beaker-rspec.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
s.description = 'RSpec bindings for beaker, see https://github.com/voxpupuli/beaker'
|
|
14
14
|
s.license = 'Apache-2.0'
|
|
15
15
|
|
|
16
|
-
s.required_ruby_version = '>= 3.2.0', '<
|
|
16
|
+
s.required_ruby_version = '>= 3.2.0', '< 5.0.0'
|
|
17
17
|
|
|
18
18
|
s.files = `git ls-files`.split("\n")
|
|
19
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
@@ -21,9 +21,9 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
|
|
22
22
|
# Testing dependencies
|
|
23
23
|
s.add_development_dependency 'fakefs', '>= 0.6', '< 4'
|
|
24
|
-
s.add_development_dependency 'minitest', '
|
|
24
|
+
s.add_development_dependency 'minitest', '>= 5.4', '< 7'
|
|
25
25
|
s.add_development_dependency 'rake', '~> 13.0'
|
|
26
|
-
s.add_development_dependency 'voxpupuli-rubocop', '~>
|
|
26
|
+
s.add_development_dependency 'voxpupuli-rubocop', '~> 5.1.0'
|
|
27
27
|
|
|
28
28
|
# Run time dependencies
|
|
29
29
|
s.add_dependency 'beaker', '>= 4.0', '< 8'
|
data/lib/beaker-rspec/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-rspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.
|
|
4
|
+
version: 9.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
@@ -33,16 +33,22 @@ dependencies:
|
|
|
33
33
|
name: minitest
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
|
35
35
|
requirements:
|
|
36
|
-
- - "
|
|
36
|
+
- - ">="
|
|
37
37
|
- !ruby/object:Gem::Version
|
|
38
38
|
version: '5.4'
|
|
39
|
+
- - "<"
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '7'
|
|
39
42
|
type: :development
|
|
40
43
|
prerelease: false
|
|
41
44
|
version_requirements: !ruby/object:Gem::Requirement
|
|
42
45
|
requirements:
|
|
43
|
-
- - "
|
|
46
|
+
- - ">="
|
|
44
47
|
- !ruby/object:Gem::Version
|
|
45
48
|
version: '5.4'
|
|
49
|
+
- - "<"
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '7'
|
|
46
52
|
- !ruby/object:Gem::Dependency
|
|
47
53
|
name: rake
|
|
48
54
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -63,14 +69,14 @@ dependencies:
|
|
|
63
69
|
requirements:
|
|
64
70
|
- - "~>"
|
|
65
71
|
- !ruby/object:Gem::Version
|
|
66
|
-
version:
|
|
72
|
+
version: 5.1.0
|
|
67
73
|
type: :development
|
|
68
74
|
prerelease: false
|
|
69
75
|
version_requirements: !ruby/object:Gem::Requirement
|
|
70
76
|
requirements:
|
|
71
77
|
- - "~>"
|
|
72
78
|
- !ruby/object:Gem::Version
|
|
73
|
-
version:
|
|
79
|
+
version: 5.1.0
|
|
74
80
|
- !ruby/object:Gem::Dependency
|
|
75
81
|
name: beaker
|
|
76
82
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -141,6 +147,7 @@ extensions: []
|
|
|
141
147
|
extra_rdoc_files: []
|
|
142
148
|
files:
|
|
143
149
|
- ".github/dependabot.yml"
|
|
150
|
+
- ".github/release.yml"
|
|
144
151
|
- ".github/workflows/release.yml"
|
|
145
152
|
- ".github/workflows/test.yml"
|
|
146
153
|
- ".gitignore"
|
|
@@ -175,14 +182,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
175
182
|
version: 3.2.0
|
|
176
183
|
- - "<"
|
|
177
184
|
- !ruby/object:Gem::Version
|
|
178
|
-
version:
|
|
185
|
+
version: 5.0.0
|
|
179
186
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
180
187
|
requirements:
|
|
181
188
|
- - ">="
|
|
182
189
|
- !ruby/object:Gem::Version
|
|
183
190
|
version: '0'
|
|
184
191
|
requirements: []
|
|
185
|
-
rubygems_version:
|
|
192
|
+
rubygems_version: 4.0.3
|
|
186
193
|
specification_version: 4
|
|
187
194
|
summary: RSpec bindings for beaker
|
|
188
195
|
test_files: []
|