beaker-hiera 1.0.0 → 2.0.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/release.yml +90 -16
- data/.github/workflows/test.yml +20 -19
- data/.rubocop.yml +3 -0
- data/.rubocop_todo.yml +15 -14
- data/CHANGELOG.md +38 -0
- data/Gemfile +3 -3
- data/README.md +29 -0
- data/Rakefile +2 -9
- data/beaker-hiera.gemspec +3 -4
- data/lib/beaker-hiera/version.rb +1 -1
- data/spec/spec_helper.rb +0 -1
- metadata +8 -26
- data/.simplecov +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e415fb3e45f9facc0e6acc10174da56d166106a8b3739f44bdb941f2f7fb5ec
|
4
|
+
data.tar.gz: 5a93a85d293e587e158aefff869b61f638abf798785649774f5258605ce05917
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 177503d7d724d4691417181f5b26cf4c89978137fbfdade6ea11e34c52868f7b45872ff7f0f04d492806a24487c63afda14b8630966900efa9d58ddc1466ca71
|
7
|
+
data.tar.gz: 0a8c4cdb7df056cfb1839006a2af6f21a8e00e4a8198ee878939741bba910fed647ea7e8e7df9135936863ac23837b52ac691d066cda9947abe2d01c226b900b
|
@@ -1,32 +1,106 @@
|
|
1
|
-
|
1
|
+
---
|
2
|
+
name: Gem Release
|
2
3
|
|
3
4
|
on:
|
4
5
|
push:
|
5
6
|
tags:
|
6
7
|
- '*'
|
7
8
|
|
9
|
+
permissions: {}
|
10
|
+
|
8
11
|
jobs:
|
9
|
-
release:
|
10
|
-
|
12
|
+
build-release:
|
13
|
+
# Prevent releases from forked repositories
|
11
14
|
if: github.repository_owner == 'voxpupuli'
|
15
|
+
name: Build the gem
|
16
|
+
runs-on: ubuntu-24.04
|
12
17
|
steps:
|
13
18
|
- uses: actions/checkout@v4
|
14
|
-
- name: Install Ruby
|
19
|
+
- name: Install Ruby
|
15
20
|
uses: ruby/setup-ruby@v1
|
16
21
|
with:
|
17
|
-
ruby-version: '
|
18
|
-
env:
|
19
|
-
BUNDLE_WITHOUT: release:development:rubocop
|
22
|
+
ruby-version: 'ruby'
|
20
23
|
- name: Build gem
|
21
|
-
|
24
|
+
shell: bash
|
25
|
+
run: gem build --verbose *.gemspec
|
26
|
+
- name: Upload gem to GitHub cache
|
27
|
+
uses: actions/upload-artifact@v4
|
28
|
+
with:
|
29
|
+
name: gem-artifact
|
30
|
+
path: '*.gem'
|
31
|
+
retention-days: 1
|
32
|
+
compression-level: 0
|
33
|
+
|
34
|
+
create-github-release:
|
35
|
+
needs: build-release
|
36
|
+
name: Create GitHub release
|
37
|
+
runs-on: ubuntu-24.04
|
38
|
+
permissions:
|
39
|
+
contents: write # clone repo and create release
|
40
|
+
steps:
|
41
|
+
- name: Download gem from GitHub cache
|
42
|
+
uses: actions/download-artifact@v5
|
43
|
+
with:
|
44
|
+
name: gem-artifact
|
45
|
+
- name: Create Release
|
46
|
+
shell: bash
|
47
|
+
env:
|
48
|
+
GH_TOKEN: ${{ github.token }}
|
49
|
+
run: gh release create --repo ${{ github.repository }} ${{ github.ref_name }} --generate-notes *.gem
|
50
|
+
|
51
|
+
release-to-github:
|
52
|
+
needs: build-release
|
53
|
+
name: Release to GitHub
|
54
|
+
runs-on: ubuntu-24.04
|
55
|
+
permissions:
|
56
|
+
packages: write # publish to rubygems.pkg.github.com
|
57
|
+
steps:
|
58
|
+
- name: Download gem from GitHub cache
|
59
|
+
uses: actions/download-artifact@v5
|
60
|
+
with:
|
61
|
+
name: gem-artifact
|
62
|
+
- name: Publish gem to GitHub packages
|
63
|
+
run: gem push --host https://rubygems.pkg.github.com/${{ github.repository_owner }} *.gem
|
64
|
+
env:
|
65
|
+
GEM_HOST_API_KEY: ${{ secrets.GITHUB_TOKEN }}
|
66
|
+
|
67
|
+
release-to-rubygems:
|
68
|
+
needs: build-release
|
69
|
+
name: Release gem to rubygems.org
|
70
|
+
runs-on: ubuntu-24.04
|
71
|
+
environment: release # recommended by rubygems.org
|
72
|
+
permissions:
|
73
|
+
id-token: write # rubygems.org authentication
|
74
|
+
steps:
|
75
|
+
- name: Download gem from GitHub cache
|
76
|
+
uses: actions/download-artifact@v5
|
77
|
+
with:
|
78
|
+
name: gem-artifact
|
79
|
+
- uses: rubygems/configure-rubygems-credentials@v1.0.0
|
22
80
|
- name: Publish gem to rubygems.org
|
81
|
+
shell: bash
|
23
82
|
run: gem push *.gem
|
24
|
-
|
25
|
-
|
26
|
-
|
83
|
+
|
84
|
+
release-verification:
|
85
|
+
name: Check that all releases are done
|
86
|
+
runs-on: ubuntu-24.04
|
87
|
+
permissions:
|
88
|
+
contents: read # minimal permissions that we have to grant
|
89
|
+
needs:
|
90
|
+
- create-github-release
|
91
|
+
- release-to-github
|
92
|
+
- release-to-rubygems
|
93
|
+
steps:
|
94
|
+
- name: Download gem from GitHub cache
|
95
|
+
uses: actions/download-artifact@v5
|
96
|
+
with:
|
97
|
+
name: gem-artifact
|
98
|
+
- name: Install Ruby
|
99
|
+
uses: ruby/setup-ruby@v1
|
100
|
+
with:
|
101
|
+
ruby-version: 'ruby'
|
102
|
+
- name: Wait for release to propagate
|
103
|
+
shell: bash
|
27
104
|
run: |
|
28
|
-
|
29
|
-
|
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
|
105
|
+
gem install rubygems-await
|
106
|
+
gem await *.gem
|
data/.github/workflows/test.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
name: Test
|
2
3
|
|
3
4
|
on:
|
@@ -6,34 +7,30 @@ on:
|
|
6
7
|
branches:
|
7
8
|
- master
|
8
9
|
|
9
|
-
env:
|
10
|
-
BUNDLE_WITHOUT: release
|
11
|
-
|
12
10
|
jobs:
|
13
|
-
|
14
|
-
runs-on: ubuntu-
|
11
|
+
rubocop_and_matrix:
|
12
|
+
runs-on: ubuntu-24.04
|
13
|
+
outputs:
|
14
|
+
ruby: ${{ steps.ruby.outputs.versions }}
|
15
15
|
steps:
|
16
16
|
- uses: actions/checkout@v4
|
17
17
|
- name: Install Ruby ${{ matrix.ruby }}
|
18
18
|
uses: ruby/setup-ruby@v1
|
19
19
|
with:
|
20
|
-
ruby-version: "
|
20
|
+
ruby-version: "3.4"
|
21
21
|
bundler-cache: true
|
22
22
|
- name: Run Rubocop
|
23
23
|
run: bundle exec rake rubocop
|
24
|
+
- id: ruby
|
25
|
+
uses: voxpupuli/ruby-version@v1
|
26
|
+
|
24
27
|
spec:
|
25
|
-
runs-on: ubuntu-
|
28
|
+
runs-on: ubuntu-24.04
|
29
|
+
needs: rubocop_and_matrix
|
26
30
|
strategy:
|
27
31
|
fail-fast: false
|
28
32
|
matrix:
|
29
|
-
|
30
|
-
- ruby: "2.7"
|
31
|
-
coverage: "yes"
|
32
|
-
- ruby: "3.0"
|
33
|
-
- ruby: "3.1"
|
34
|
-
- ruby: "3.2"
|
35
|
-
env:
|
36
|
-
COVERAGE: ${{ matrix.coverage }}
|
33
|
+
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
|
37
34
|
name: RSpec - Ruby ${{ matrix.ruby }}
|
38
35
|
steps:
|
39
36
|
- uses: actions/checkout@v4
|
@@ -45,13 +42,17 @@ jobs:
|
|
45
42
|
- name: spec tests
|
46
43
|
run: bundle exec rake test
|
47
44
|
- name: Build gem
|
48
|
-
run: gem build *.gemspec
|
45
|
+
run: gem build --strict --verbose *.gemspec
|
49
46
|
|
50
47
|
tests:
|
48
|
+
if: always()
|
51
49
|
needs:
|
50
|
+
- rubocop_and_matrix
|
52
51
|
- spec
|
53
|
-
|
54
|
-
runs-on: ubuntu-latest
|
52
|
+
runs-on: ubuntu-24.04
|
55
53
|
name: Test suite
|
56
54
|
steps:
|
57
|
-
-
|
55
|
+
- name: Decide whether the needed jobs succeeded or failed
|
56
|
+
uses: re-actors/alls-green@release/v1
|
57
|
+
with:
|
58
|
+
jobs: ${{ toJSON(needs) }}
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
|
-
# `rubocop --auto-gen-config`
|
3
|
-
#
|
2
|
+
# `rubocop --auto-gen-config --no-auto-gen-timestamp`
|
3
|
+
# using RuboCop version 1.75.8.
|
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
|
@@ -12,15 +12,9 @@
|
|
12
12
|
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
|
13
13
|
Naming/FileName:
|
14
14
|
Exclude:
|
15
|
+
- 'Rakefile.rb'
|
15
16
|
- 'lib/beaker-hiera.rb'
|
16
17
|
|
17
|
-
# Offense count: 1
|
18
|
-
# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
|
19
|
-
# Include: **/*_spec*rb*, **/spec/**/*
|
20
|
-
RSpec/FilePath:
|
21
|
-
Exclude:
|
22
|
-
- 'spec/beaker-hiera/helpers_spec.rb'
|
23
|
-
|
24
18
|
# Offense count: 6
|
25
19
|
# Configuration parameters: .
|
26
20
|
# SupportedStyles: have_received, receive
|
@@ -38,6 +32,14 @@ RSpec/NamedSubject:
|
|
38
32
|
Exclude:
|
39
33
|
- 'spec/beaker-hiera/helpers_spec.rb'
|
40
34
|
|
35
|
+
# Offense count: 1
|
36
|
+
# Configuration parameters: Include, CustomTransform, IgnoreMethods, IgnoreMetadata.
|
37
|
+
# Include: **/*_spec.rb
|
38
|
+
RSpec/SpecFilePathFormat:
|
39
|
+
Exclude:
|
40
|
+
- '**/spec/routing/**/*'
|
41
|
+
- 'spec/beaker-hiera/helpers_spec.rb'
|
42
|
+
|
41
43
|
# Offense count: 2
|
42
44
|
RSpec/StubbedMock:
|
43
45
|
Exclude:
|
@@ -50,18 +52,17 @@ RSpec/SubjectStub:
|
|
50
52
|
|
51
53
|
# Offense count: 1
|
52
54
|
# This cop supports unsafe autocorrection (--autocorrect-all).
|
53
|
-
# Configuration parameters: .
|
54
|
-
# SupportedStyles: constant, string
|
55
55
|
RSpec/VerifiedDoubleReference:
|
56
|
-
|
56
|
+
Exclude:
|
57
|
+
- 'spec/beaker-hiera/helpers_spec.rb'
|
57
58
|
|
58
|
-
# Offense count:
|
59
|
+
# Offense count: 9
|
59
60
|
# This cop supports unsafe autocorrection (--autocorrect-all).
|
60
61
|
# Configuration parameters: EnforcedStyle.
|
61
62
|
# SupportedStyles: always, always_true, never
|
62
63
|
Style/FrozenStringLiteralComment:
|
63
64
|
Exclude:
|
64
|
-
- '
|
65
|
+
- '**/*.arb'
|
65
66
|
- 'Gemfile'
|
66
67
|
- 'Rakefile'
|
67
68
|
- 'beaker-hiera.gemspec'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,43 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [2.0.0](https://github.com/voxpupuli/beaker-hiera/tree/2.0.0) (2025-08-07)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/1.1.1...2.0.0)
|
6
|
+
|
7
|
+
**Breaking changes:**
|
8
|
+
|
9
|
+
- Require Ruby 3.2 or newer [\#44](https://github.com/voxpupuli/beaker-hiera/pull/44) ([bastelfreak](https://github.com/bastelfreak))
|
10
|
+
|
11
|
+
**Implemented enhancements:**
|
12
|
+
|
13
|
+
- CI: Generate matrix dynamically / drop simplecov [\#43](https://github.com/voxpupuli/beaker-hiera/pull/43) ([bastelfreak](https://github.com/bastelfreak))
|
14
|
+
- beaker: Allow 7.x [\#42](https://github.com/voxpupuli/beaker-hiera/pull/42) ([bastelfreak](https://github.com/bastelfreak))
|
15
|
+
|
16
|
+
## [1.1.1](https://github.com/voxpupuli/beaker-hiera/tree/1.1.1) (2024-05-28)
|
17
|
+
|
18
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/1.1.0...1.1.1)
|
19
|
+
|
20
|
+
There were some problems with the CI pipeline, so the 1.1.0 release was only published to GitHub packages, not to rubygems.org. This is fixed with the 1.1.1 release.
|
21
|
+
|
22
|
+
**Fixed bugs:**
|
23
|
+
|
24
|
+
- Fix typo in CI config [\#36](https://github.com/voxpupuli/beaker-hiera/pull/36) ([bastelfreak](https://github.com/bastelfreak))
|
25
|
+
|
26
|
+
## [1.1.0](https://github.com/voxpupuli/beaker-hiera/tree/1.1.0) (2024-05-28)
|
27
|
+
|
28
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/1.0.0...1.1.0)
|
29
|
+
|
30
|
+
**Implemented enhancements:**
|
31
|
+
|
32
|
+
- beaker: Allow 6.x [\#34](https://github.com/voxpupuli/beaker-hiera/pull/34) ([bastelfreak](https://github.com/bastelfreak))
|
33
|
+
- Add Ruby 3.3 to CI matrix [\#33](https://github.com/voxpupuli/beaker-hiera/pull/33) ([bastelfreak](https://github.com/bastelfreak))
|
34
|
+
|
35
|
+
**Merged pull requests:**
|
36
|
+
|
37
|
+
- voxpupuli-rubocop: Require 2.7.0 [\#32](https://github.com/voxpupuli/beaker-hiera/pull/32) ([bastelfreak](https://github.com/bastelfreak))
|
38
|
+
- CI: Build gems with strict and verbose mode [\#31](https://github.com/voxpupuli/beaker-hiera/pull/31) ([bastelfreak](https://github.com/bastelfreak))
|
39
|
+
- README.md: Add badges, transfer notice and release information [\#30](https://github.com/voxpupuli/beaker-hiera/pull/30) ([bastelfreak](https://github.com/bastelfreak))
|
40
|
+
|
3
41
|
## [1.0.0](https://github.com/voxpupuli/beaker-hiera/tree/1.0.0) (2023-11-03)
|
4
42
|
|
5
43
|
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.6.0...1.0.0)
|
data/Gemfile
CHANGED
@@ -2,7 +2,7 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
group :release do
|
6
|
-
gem 'faraday-retry', require: false
|
7
|
-
gem 'github_changelog_generator', require: false
|
5
|
+
group :release, optional: true do
|
6
|
+
gem 'faraday-retry', '~> 2.1', require: false
|
7
|
+
gem 'github_changelog_generator', '~> 1.16.4', require: false
|
8
8
|
end
|
data/README.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# beaker-hiera
|
2
2
|
|
3
|
+
[](https://github.com/voxpupuli/beaker-hiera/blob/master/LICENSE)
|
4
|
+
[](https://codecov.io/gh/voxpupuli/beaker-hiera)
|
5
|
+
[](https://github.com/voxpupuli/beaker-hiera/actions/workflows/release.yml)
|
6
|
+
[](https://rubygems.org/gems/beaker-hiera)
|
7
|
+
[](https://rubygems.org/gems/beaker-hiera)
|
8
|
+
[](#transfer-notice)
|
9
|
+
|
3
10
|
Beaker Hiera DSL Extension Library! This allows to easily use Hiera data in acceptance tests.
|
4
11
|
|
5
12
|
## Usage
|
@@ -32,3 +39,25 @@ hierarchy = [
|
|
32
39
|
write_hiera_config_on(host, hierarchy)
|
33
40
|
copy_hiera_data_to(host, 'spec/acceptance/hieradata')
|
34
41
|
```
|
42
|
+
|
43
|
+
## Transfer Notice
|
44
|
+
|
45
|
+
This plugin was originally authored by [Puppet Inc](http://puppet.com).
|
46
|
+
The maintainer preferred that Puppet Community take ownership of the module for future improvement and maintenance.
|
47
|
+
Existing pull requests and issues were transferred over, please fork and continue to contribute here.
|
48
|
+
|
49
|
+
Previously: https://github.com/puppetlabs/beaker-hiera
|
50
|
+
|
51
|
+
## License
|
52
|
+
|
53
|
+
This gem is licensed under the Apache-2 license.
|
54
|
+
|
55
|
+
## Release information
|
56
|
+
|
57
|
+
To make a new release, please do:
|
58
|
+
* update the version in `lib/beaker-hiera/version.rb`
|
59
|
+
* Install gems with `bundle install --with release --path .vendor`
|
60
|
+
* generate the changelog with `bundle exec rake changelog`
|
61
|
+
* Check if the new version matches the closed issues/PRs in the changelog
|
62
|
+
* Create a PR with it
|
63
|
+
* After it got merged, push a tag. GitHub actions will do the actual release to rubygems and GitHub Packages
|
data/Rakefile
CHANGED
@@ -31,14 +31,7 @@ else
|
|
31
31
|
end
|
32
32
|
|
33
33
|
begin
|
34
|
-
require 'rubocop/
|
34
|
+
require 'voxpupuli/rubocop/rake'
|
35
35
|
rescue LoadError
|
36
|
-
#
|
37
|
-
else
|
38
|
-
RuboCop::RakeTask.new(:rubocop) do |task|
|
39
|
-
# These make the rubocop experience maybe slightly less terrible
|
40
|
-
task.options = ['--display-cop-names', '--display-style-guide', '--extra-details']
|
41
|
-
# Use Rubocop's Github Actions formatter if possible
|
42
|
-
task.formatters << 'github' if ENV['GITHUB_ACTIONS']
|
43
|
-
end
|
36
|
+
# the voxpupuli-rubocop gem is optional
|
44
37
|
end
|
data/beaker-hiera.gemspec
CHANGED
@@ -15,15 +15,14 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
16
16
|
s.require_paths = ['lib']
|
17
17
|
|
18
|
-
s.required_ruby_version = '>= 2
|
18
|
+
s.required_ruby_version = '>= 3.2', '< 4'
|
19
19
|
|
20
20
|
# Testing dependencies
|
21
21
|
s.add_development_dependency 'pry', '~> 0.10'
|
22
22
|
s.add_development_dependency 'rake', '~> 13.0'
|
23
23
|
s.add_development_dependency 'rspec', '~> 3.0'
|
24
|
-
s.add_development_dependency '
|
25
|
-
s.add_development_dependency 'voxpupuli-rubocop', '~> 1.2'
|
24
|
+
s.add_development_dependency 'voxpupuli-rubocop', '~> 4.1.0'
|
26
25
|
|
27
26
|
# Run time dependencies
|
28
|
-
s.
|
27
|
+
s.add_dependency 'beaker', '>= 4', '< 8'
|
29
28
|
end
|
data/lib/beaker-hiera/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-hiera
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
8
8
|
- Puppetlabs
|
9
|
-
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: pry
|
@@ -53,34 +52,20 @@ dependencies:
|
|
53
52
|
- - "~>"
|
54
53
|
- !ruby/object:Gem::Version
|
55
54
|
version: '3.0'
|
56
|
-
- !ruby/object:Gem::Dependency
|
57
|
-
name: simplecov
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
60
|
-
- - "~>"
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: 0.22.0
|
63
|
-
type: :development
|
64
|
-
prerelease: false
|
65
|
-
version_requirements: !ruby/object:Gem::Requirement
|
66
|
-
requirements:
|
67
|
-
- - "~>"
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: 0.22.0
|
70
55
|
- !ruby/object:Gem::Dependency
|
71
56
|
name: voxpupuli-rubocop
|
72
57
|
requirement: !ruby/object:Gem::Requirement
|
73
58
|
requirements:
|
74
59
|
- - "~>"
|
75
60
|
- !ruby/object:Gem::Version
|
76
|
-
version:
|
61
|
+
version: 4.1.0
|
77
62
|
type: :development
|
78
63
|
prerelease: false
|
79
64
|
version_requirements: !ruby/object:Gem::Requirement
|
80
65
|
requirements:
|
81
66
|
- - "~>"
|
82
67
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
68
|
+
version: 4.1.0
|
84
69
|
- !ruby/object:Gem::Dependency
|
85
70
|
name: beaker
|
86
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -90,7 +75,7 @@ dependencies:
|
|
90
75
|
version: '4'
|
91
76
|
- - "<"
|
92
77
|
- !ruby/object:Gem::Version
|
93
|
-
version: '
|
78
|
+
version: '8'
|
94
79
|
type: :runtime
|
95
80
|
prerelease: false
|
96
81
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -100,7 +85,7 @@ dependencies:
|
|
100
85
|
version: '4'
|
101
86
|
- - "<"
|
102
87
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
88
|
+
version: '8'
|
104
89
|
description: For use for the Beaker acceptance testing tool
|
105
90
|
email:
|
106
91
|
- voxpupuli@groups.io
|
@@ -116,7 +101,6 @@ files:
|
|
116
101
|
- ".rspec"
|
117
102
|
- ".rubocop.yml"
|
118
103
|
- ".rubocop_todo.yml"
|
119
|
-
- ".simplecov"
|
120
104
|
- CHANGELOG.md
|
121
105
|
- Gemfile
|
122
106
|
- LICENSE
|
@@ -133,7 +117,6 @@ homepage: https://github.com/voxpupuli/beaker-hiera
|
|
133
117
|
licenses:
|
134
118
|
- Apache-2.0
|
135
119
|
metadata: {}
|
136
|
-
post_install_message:
|
137
120
|
rdoc_options: []
|
138
121
|
require_paths:
|
139
122
|
- lib
|
@@ -141,7 +124,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
141
124
|
requirements:
|
142
125
|
- - ">="
|
143
126
|
- !ruby/object:Gem::Version
|
144
|
-
version: '2
|
127
|
+
version: '3.2'
|
145
128
|
- - "<"
|
146
129
|
- !ruby/object:Gem::Version
|
147
130
|
version: '4'
|
@@ -151,8 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
151
134
|
- !ruby/object:Gem::Version
|
152
135
|
version: '0'
|
153
136
|
requirements: []
|
154
|
-
rubygems_version: 3.
|
155
|
-
signing_key:
|
137
|
+
rubygems_version: 3.6.9
|
156
138
|
specification_version: 4
|
157
139
|
summary: Hiera DSL Helpers!
|
158
140
|
test_files: []
|