beaker-puppet 4.1.1 → 4.3.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 +3 -3
- data/.github/workflows/test.yml +8 -9
- data/.rubocop_todo.yml +317 -83
- data/CHANGELOG.md +24 -3
- data/Gemfile +3 -0
- data/beaker-puppet.gemspec +2 -2
- data/lib/beaker-puppet/helpers/puppet_helpers.rb +1 -2
- data/lib/beaker-puppet/helpers/tk_helpers.rb +1 -2
- data/lib/beaker-puppet/inifile.rb +635 -0
- data/lib/beaker-puppet/install_utils/foss_utils.rb +1 -1
- data/lib/beaker-puppet/version.rb +1 -1
- data/lib/beaker-puppet.rb +1 -0
- data/spec/beaker-puppet/helpers/facter_helpers_spec.rb +1 -1
- data/spec/beaker-puppet/install_utils/foss_utils_spec.rb +1 -1
- metadata +10 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9608db44e1a8db0fc23e8dcf785698ec20778feb753fac4883b5f6a328cd603a
|
|
4
|
+
data.tar.gz: 49c0dd234ffe37059885be80c902dd1f3ca0846bc4c1e0401000455762eec16e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec68fb077fd1a4bb8c69fcbd1eae7017746b5c5d3a3f2e82a8a70296d5f82254c52498298eb5bf8e077f2d87442226bb178255a0918e6082be2832a41e7cd8a3
|
|
7
|
+
data.tar.gz: bd0abc1d9cd7e570a124d37c8e42b1c9322df328eb7acc5d14c7ce1ddf127831b322842cbb162dfe8f865f8d36f8fe28eaa911e71c28b941fa5d4862d1c68120
|
|
@@ -10,11 +10,11 @@ jobs:
|
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
if: github.repository_owner == 'puppetlabs'
|
|
12
12
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
14
|
-
- name: Install Ruby 3.
|
|
13
|
+
- uses: actions/checkout@v6
|
|
14
|
+
- name: Install Ruby 3.1
|
|
15
15
|
uses: ruby/setup-ruby@v1
|
|
16
16
|
with:
|
|
17
|
-
ruby-version: '3.
|
|
17
|
+
ruby-version: '3.1'
|
|
18
18
|
env:
|
|
19
19
|
BUNDLE_WITHOUT: release
|
|
20
20
|
- name: Build gem
|
data/.github/workflows/test.yml
CHANGED
|
@@ -13,11 +13,11 @@ jobs:
|
|
|
13
13
|
rubocop:
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@v6
|
|
17
17
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
18
18
|
uses: ruby/setup-ruby@v1
|
|
19
19
|
with:
|
|
20
|
-
ruby-version:
|
|
20
|
+
ruby-version: '3.3'
|
|
21
21
|
bundler-cache: true
|
|
22
22
|
- name: Run Rubocop
|
|
23
23
|
run: bundle exec rake rubocop
|
|
@@ -29,16 +29,15 @@ jobs:
|
|
|
29
29
|
fail-fast: false
|
|
30
30
|
matrix:
|
|
31
31
|
include:
|
|
32
|
-
- ruby:
|
|
33
|
-
- ruby:
|
|
34
|
-
|
|
35
|
-
- ruby:
|
|
32
|
+
- ruby: '3.1'
|
|
33
|
+
- ruby: '3.2'
|
|
34
|
+
- ruby: '3.3'
|
|
35
|
+
- ruby: '3.4'
|
|
36
|
+
- ruby: '4.0'
|
|
36
37
|
|
|
37
|
-
env:
|
|
38
|
-
COVERAGE: ${{ matrix.coverage }}
|
|
39
38
|
name: RSpec - Ruby ${{ matrix.ruby }}
|
|
40
39
|
steps:
|
|
41
|
-
- uses: actions/checkout@
|
|
40
|
+
- uses: actions/checkout@v6
|
|
42
41
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
43
42
|
uses: ruby/setup-ruby@v1
|
|
44
43
|
with:
|