beaker-hiera 0.4.0 → 0.5.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/dependabot.yml +17 -0
- data/.github/workflows/release.yml +1 -1
- data/.github/workflows/test.yml +41 -12
- data/.rubocop.yml +5 -0
- data/.rubocop_todo.yml +73 -0
- data/CHANGELOG.md +74 -0
- data/Gemfile +4 -0
- data/Rakefile +28 -0
- data/beaker-hiera.gemspec +6 -3
- data/lib/beaker-hiera/helpers.rb +2 -2
- data/lib/beaker-hiera/version.rb +1 -1
- metadata +73 -8
- data/HISTORY.md +0 -39
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6fa301c34061f47569899cb912a65ef2445800aa858aeb73bd409a2c458b9032
|
|
4
|
+
data.tar.gz: 3b9fe6eefd16dcee3a9ddfc40c157047b832e870728ef8c14996e37566102cd3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cbb692a5db729f93a2564a46cdaa756cb703698ef864eec4e0e596101092b02b70def1b09b228894e30c6ed329c22220132249a80b59b21d1e6e57bc1f9c35e
|
|
7
|
+
data.tar.gz: dd46816d6f16cb699db0413d17d514494ef0c9cbfea3757f8af6dd69fb8ee86a17b9e29297a5d8ddd219911997e9e4c5d75c5bdf20fe5fce50ec1c85f69b5667
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
# raise PRs for gem updates
|
|
4
|
+
- package-ecosystem: bundler
|
|
5
|
+
directory: "/"
|
|
6
|
+
schedule:
|
|
7
|
+
interval: daily
|
|
8
|
+
time: "13:00"
|
|
9
|
+
open-pull-requests-limit: 10
|
|
10
|
+
|
|
11
|
+
# Maintain dependencies for GitHub Actions
|
|
12
|
+
- package-ecosystem: github-actions
|
|
13
|
+
directory: "/"
|
|
14
|
+
schedule:
|
|
15
|
+
interval: daily
|
|
16
|
+
time: "13:00"
|
|
17
|
+
open-pull-requests-limit: 10
|
data/.github/workflows/test.yml
CHANGED
|
@@ -1,28 +1,57 @@
|
|
|
1
1
|
name: Test
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
pull_request: {}
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- master
|
|
8
|
+
|
|
9
|
+
env:
|
|
10
|
+
BUNDLE_WITHOUT: release
|
|
6
11
|
|
|
7
12
|
jobs:
|
|
8
|
-
|
|
13
|
+
rubocop:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v3
|
|
17
|
+
- name: Install Ruby ${{ matrix.ruby }}
|
|
18
|
+
uses: ruby/setup-ruby@v1
|
|
19
|
+
with:
|
|
20
|
+
ruby-version: "2.7"
|
|
21
|
+
bundler-cache: true
|
|
22
|
+
- name: Run Rubocop
|
|
23
|
+
run: bundle exec rake rubocop
|
|
24
|
+
spec:
|
|
9
25
|
runs-on: ubuntu-latest
|
|
10
26
|
strategy:
|
|
11
27
|
fail-fast: false
|
|
12
28
|
matrix:
|
|
13
|
-
|
|
14
|
-
- "2.
|
|
15
|
-
|
|
16
|
-
- "
|
|
17
|
-
- "
|
|
18
|
-
- "3.
|
|
19
|
-
|
|
29
|
+
include:
|
|
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 }}
|
|
37
|
+
name: RSpec - Ruby ${{ matrix.ruby }}
|
|
20
38
|
steps:
|
|
21
|
-
- uses: actions/checkout@
|
|
39
|
+
- uses: actions/checkout@v3
|
|
22
40
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
23
41
|
uses: ruby/setup-ruby@v1
|
|
24
42
|
with:
|
|
25
43
|
ruby-version: ${{ matrix.ruby }}
|
|
26
44
|
bundler-cache: true
|
|
27
|
-
- name:
|
|
45
|
+
- name: spec tests
|
|
28
46
|
run: bundle exec rake test
|
|
47
|
+
- name: Build gem
|
|
48
|
+
run: gem build *.gemspec
|
|
49
|
+
|
|
50
|
+
tests:
|
|
51
|
+
needs:
|
|
52
|
+
- spec
|
|
53
|
+
- rubocop
|
|
54
|
+
runs-on: ubuntu-latest
|
|
55
|
+
name: Test suite
|
|
56
|
+
steps:
|
|
57
|
+
- run: echo Test suite completed
|
data/.rubocop.yml
ADDED
data/.rubocop_todo.yml
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# This configuration was generated by
|
|
2
|
+
# `rubocop --auto-gen-config`
|
|
3
|
+
# on 2023-03-27 16:34:12 UTC using RuboCop version 1.48.1.
|
|
4
|
+
# The point is for the user to remove these configuration records
|
|
5
|
+
# one by one as the offenses are removed from the code base.
|
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
|
8
|
+
|
|
9
|
+
# Offense count: 1
|
|
10
|
+
# Configuration parameters: ExpectMatchingDefinition, CheckDefinitionPathHierarchy, CheckDefinitionPathHierarchyRoots, Regex, IgnoreExecutableScripts, AllowedAcronyms.
|
|
11
|
+
# CheckDefinitionPathHierarchyRoots: lib, spec, test, src
|
|
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
|
+
Naming/FileName:
|
|
14
|
+
Exclude:
|
|
15
|
+
- 'lib/beaker-hiera.rb'
|
|
16
|
+
|
|
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
|
+
# Offense count: 6
|
|
25
|
+
# Configuration parameters: .
|
|
26
|
+
# SupportedStyles: have_received, receive
|
|
27
|
+
RSpec/MessageSpies:
|
|
28
|
+
EnforcedStyle: receive
|
|
29
|
+
|
|
30
|
+
# Offense count: 2
|
|
31
|
+
RSpec/MultipleExpectations:
|
|
32
|
+
Max: 2
|
|
33
|
+
|
|
34
|
+
# Offense count: 11
|
|
35
|
+
# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
|
|
36
|
+
# SupportedStyles: always, named_only
|
|
37
|
+
RSpec/NamedSubject:
|
|
38
|
+
Exclude:
|
|
39
|
+
- 'spec/beaker-hiera/helpers_spec.rb'
|
|
40
|
+
|
|
41
|
+
# Offense count: 2
|
|
42
|
+
RSpec/StubbedMock:
|
|
43
|
+
Exclude:
|
|
44
|
+
- 'spec/beaker-hiera/helpers_spec.rb'
|
|
45
|
+
|
|
46
|
+
# Offense count: 6
|
|
47
|
+
RSpec/SubjectStub:
|
|
48
|
+
Exclude:
|
|
49
|
+
- 'spec/beaker-hiera/helpers_spec.rb'
|
|
50
|
+
|
|
51
|
+
# Offense count: 1
|
|
52
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
53
|
+
# Configuration parameters: .
|
|
54
|
+
# SupportedStyles: constant, string
|
|
55
|
+
RSpec/VerifiedDoubleReference:
|
|
56
|
+
EnforcedStyle: string
|
|
57
|
+
|
|
58
|
+
# Offense count: 10
|
|
59
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
60
|
+
# Configuration parameters: EnforcedStyle.
|
|
61
|
+
# SupportedStyles: always, always_true, never
|
|
62
|
+
Style/FrozenStringLiteralComment:
|
|
63
|
+
Exclude:
|
|
64
|
+
- '.simplecov'
|
|
65
|
+
- 'Gemfile'
|
|
66
|
+
- 'Rakefile'
|
|
67
|
+
- 'beaker-hiera.gemspec'
|
|
68
|
+
- 'bin/beaker-hiera'
|
|
69
|
+
- 'lib/beaker-hiera.rb'
|
|
70
|
+
- 'lib/beaker-hiera/helpers.rb'
|
|
71
|
+
- 'lib/beaker-hiera/version.rb'
|
|
72
|
+
- 'spec/beaker-hiera/helpers_spec.rb'
|
|
73
|
+
- 'spec/spec_helper.rb'
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.5.0](https://github.com/voxpupuli/beaker-hiera/tree/0.5.0) (2023-03-28)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.4.0...0.5.0)
|
|
6
|
+
|
|
7
|
+
**Breaking changes:**
|
|
8
|
+
|
|
9
|
+
- update to beaker 5; Drop Ruby 2.4/2.5/2.6 support [\#19](https://github.com/voxpupuli/beaker-hiera/pull/19) ([rwaffen](https://github.com/rwaffen))
|
|
10
|
+
|
|
11
|
+
**Closed issues:**
|
|
12
|
+
|
|
13
|
+
- update to beaker 5 [\#18](https://github.com/voxpupuli/beaker-hiera/issues/18)
|
|
14
|
+
|
|
15
|
+
**Merged pull requests:**
|
|
16
|
+
|
|
17
|
+
- Bump actions/checkout from 2 to 3 [\#23](https://github.com/voxpupuli/beaker-hiera/pull/23) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
18
|
+
- Implement rubocop & fix violations [\#22](https://github.com/voxpupuli/beaker-hiera/pull/22) ([bastelfreak](https://github.com/bastelfreak))
|
|
19
|
+
- dependabot: check for github actions and gems [\#21](https://github.com/voxpupuli/beaker-hiera/pull/21) ([bastelfreak](https://github.com/bastelfreak))
|
|
20
|
+
|
|
21
|
+
## [0.4.0](https://github.com/voxpupuli/beaker-hiera/tree/0.4.0) (2021-05-19)
|
|
22
|
+
|
|
23
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.3.0...0.4.0)
|
|
24
|
+
|
|
25
|
+
**Implemented enhancements:**
|
|
26
|
+
|
|
27
|
+
- Support Ruby 3 [\#16](https://github.com/voxpupuli/beaker-hiera/pull/16) ([ekohl](https://github.com/ekohl))
|
|
28
|
+
|
|
29
|
+
**Fixed bugs:**
|
|
30
|
+
|
|
31
|
+
- Handle an array of hosts in copy\_hiera\_data\_to [\#15](https://github.com/voxpupuli/beaker-hiera/pull/15) ([ekohl](https://github.com/ekohl))
|
|
32
|
+
|
|
33
|
+
## [0.3.0](https://github.com/voxpupuli/beaker-hiera/tree/0.3.0) (2021-05-18)
|
|
34
|
+
|
|
35
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.2.0...0.3.0)
|
|
36
|
+
|
|
37
|
+
**Merged pull requests:**
|
|
38
|
+
|
|
39
|
+
- Release 0.3.0 [\#14](https://github.com/voxpupuli/beaker-hiera/pull/14) ([ekohl](https://github.com/ekohl))
|
|
40
|
+
- Update Github actions [\#13](https://github.com/voxpupuli/beaker-hiera/pull/13) ([ekohl](https://github.com/ekohl))
|
|
41
|
+
- Update the authors, email and homepage to VP [\#12](https://github.com/voxpupuli/beaker-hiera/pull/12) ([ekohl](https://github.com/ekohl))
|
|
42
|
+
- Require Ruby ~\> 2.4 [\#11](https://github.com/voxpupuli/beaker-hiera/pull/11) ([ekohl](https://github.com/ekohl))
|
|
43
|
+
- Use ruby/setup-ruby action [\#10](https://github.com/voxpupuli/beaker-hiera/pull/10) ([ekohl](https://github.com/ekohl))
|
|
44
|
+
- Correct documentation strings [\#9](https://github.com/voxpupuli/beaker-hiera/pull/9) ([ekohl](https://github.com/ekohl))
|
|
45
|
+
- Clean up specs [\#8](https://github.com/voxpupuli/beaker-hiera/pull/8) ([ekohl](https://github.com/ekohl))
|
|
46
|
+
- Indicate the project is not EOL and add example [\#7](https://github.com/voxpupuli/beaker-hiera/pull/7) ([ekohl](https://github.com/ekohl))
|
|
47
|
+
- Always prefer codedir for hieradata [\#6](https://github.com/voxpupuli/beaker-hiera/pull/6) ([ekohl](https://github.com/ekohl))
|
|
48
|
+
- Do not shadow a variable & inline hash definition [\#5](https://github.com/voxpupuli/beaker-hiera/pull/5) ([ekohl](https://github.com/ekohl))
|
|
49
|
+
- Add Github actions for CI + clean up gem deps [\#4](https://github.com/voxpupuli/beaker-hiera/pull/4) ([ekohl](https://github.com/ekohl))
|
|
50
|
+
|
|
51
|
+
## [0.2.0](https://github.com/voxpupuli/beaker-hiera/tree/0.2.0) (2020-11-10)
|
|
52
|
+
|
|
53
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.1.1...0.2.0)
|
|
54
|
+
|
|
55
|
+
**Merged pull requests:**
|
|
56
|
+
|
|
57
|
+
- Release 0.2.0 before moving the repo to Vox Pupuli [\#3](https://github.com/voxpupuli/beaker-hiera/pull/3) ([lucywyman](https://github.com/lucywyman))
|
|
58
|
+
- \(BKR-1500\) Mothball beaker-hiera [\#2](https://github.com/voxpupuli/beaker-hiera/pull/2) ([Dakta](https://github.com/Dakta))
|
|
59
|
+
|
|
60
|
+
## [0.1.1](https://github.com/voxpupuli/beaker-hiera/tree/0.1.1) (2015-10-14)
|
|
61
|
+
|
|
62
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/0.1.0...0.1.1)
|
|
63
|
+
|
|
64
|
+
**Merged pull requests:**
|
|
65
|
+
|
|
66
|
+
- \(BKR-562\) removed leftover spec lines [\#1](https://github.com/voxpupuli/beaker-hiera/pull/1) ([kevpl](https://github.com/kevpl))
|
|
67
|
+
|
|
68
|
+
## [0.1.0](https://github.com/voxpupuli/beaker-hiera/tree/0.1.0) (2015-09-08)
|
|
69
|
+
|
|
70
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hiera/compare/84dbbc6be29c41e74d862665fe9aa9dd7bbacb18...0.1.0)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -14,3 +14,31 @@ RSpec::Core::RakeTask.new(:coverage) do |t|
|
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
task default: :test
|
|
17
|
+
|
|
18
|
+
begin
|
|
19
|
+
require 'rubygems'
|
|
20
|
+
require 'github_changelog_generator/task'
|
|
21
|
+
rescue LoadError
|
|
22
|
+
# github_changelog_generator is an optional release
|
|
23
|
+
else
|
|
24
|
+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
|
25
|
+
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog]
|
|
26
|
+
config.user = 'voxpupuli'
|
|
27
|
+
config.project = 'beaker-hiera'
|
|
28
|
+
gem_version = Gem::Specification.load("#{config.project}.gemspec").version
|
|
29
|
+
config.future_release = gem_version
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
begin
|
|
34
|
+
require 'rubocop/rake_task'
|
|
35
|
+
rescue LoadError
|
|
36
|
+
# RuboCop is an optional group
|
|
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
|
|
44
|
+
end
|
data/beaker-hiera.gemspec
CHANGED
|
@@ -12,16 +12,19 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
s.license = 'Apache2'
|
|
13
13
|
|
|
14
14
|
s.files = `git ls-files`.split("\n")
|
|
15
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
16
15
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
17
16
|
s.require_paths = ['lib']
|
|
18
17
|
|
|
19
|
-
s.required_ruby_version = '>= 2.
|
|
18
|
+
s.required_ruby_version = '>= 2.7', '< 4'
|
|
20
19
|
|
|
21
20
|
# Testing dependencies
|
|
22
21
|
s.add_development_dependency 'pry', '~> 0.10'
|
|
23
22
|
s.add_development_dependency 'rake', '~> 13.0'
|
|
24
23
|
s.add_development_dependency 'rspec', '~> 3.0'
|
|
24
|
+
s.add_development_dependency 'rubocop', '~> 1.48.1'
|
|
25
|
+
s.add_development_dependency 'rubocop-performance', '~> 1.10'
|
|
26
|
+
s.add_development_dependency 'rubocop-rake', '~> 0.2'
|
|
27
|
+
s.add_development_dependency 'rubocop-rspec', '>= 1.44'
|
|
25
28
|
s.add_development_dependency 'simplecov'
|
|
26
29
|
|
|
27
30
|
# Documentation dependencies
|
|
@@ -30,5 +33,5 @@ Gem::Specification.new do |s|
|
|
|
30
33
|
s.add_development_dependency 'yard'
|
|
31
34
|
|
|
32
35
|
# Run time dependencies
|
|
33
|
-
s.add_runtime_dependency 'beaker', '
|
|
36
|
+
s.add_runtime_dependency 'beaker', '>= 4', '< 6'
|
|
34
37
|
end
|
data/lib/beaker-hiera/helpers.rb
CHANGED
|
@@ -16,10 +16,10 @@ module Beaker
|
|
|
16
16
|
hiera_config = {
|
|
17
17
|
backends: 'yaml',
|
|
18
18
|
yaml: {
|
|
19
|
-
datadir: hiera_datadir(hst)
|
|
19
|
+
datadir: hiera_datadir(hst),
|
|
20
20
|
},
|
|
21
21
|
hierarchy: hierarchy,
|
|
22
|
-
logger: 'console'
|
|
22
|
+
logger: 'console',
|
|
23
23
|
}
|
|
24
24
|
create_remote_file hst, hst.puppet['hiera_config'], hiera_config.to_yaml
|
|
25
25
|
end
|
data/lib/beaker-hiera/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-hiera
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2023-03-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: pry
|
|
@@ -53,6 +53,62 @@ dependencies:
|
|
|
53
53
|
- - "~>"
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '3.0'
|
|
56
|
+
- !ruby/object:Gem::Dependency
|
|
57
|
+
name: rubocop
|
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - "~>"
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 1.48.1
|
|
63
|
+
type: :development
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - "~>"
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: 1.48.1
|
|
70
|
+
- !ruby/object:Gem::Dependency
|
|
71
|
+
name: rubocop-performance
|
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - "~>"
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '1.10'
|
|
77
|
+
type: :development
|
|
78
|
+
prerelease: false
|
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - "~>"
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '1.10'
|
|
84
|
+
- !ruby/object:Gem::Dependency
|
|
85
|
+
name: rubocop-rake
|
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
|
87
|
+
requirements:
|
|
88
|
+
- - "~>"
|
|
89
|
+
- !ruby/object:Gem::Version
|
|
90
|
+
version: '0.2'
|
|
91
|
+
type: :development
|
|
92
|
+
prerelease: false
|
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - "~>"
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: '0.2'
|
|
98
|
+
- !ruby/object:Gem::Dependency
|
|
99
|
+
name: rubocop-rspec
|
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
|
101
|
+
requirements:
|
|
102
|
+
- - ">="
|
|
103
|
+
- !ruby/object:Gem::Version
|
|
104
|
+
version: '1.44'
|
|
105
|
+
type: :development
|
|
106
|
+
prerelease: false
|
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
108
|
+
requirements:
|
|
109
|
+
- - ">="
|
|
110
|
+
- !ruby/object:Gem::Version
|
|
111
|
+
version: '1.44'
|
|
56
112
|
- !ruby/object:Gem::Dependency
|
|
57
113
|
name: simplecov
|
|
58
114
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -113,16 +169,22 @@ dependencies:
|
|
|
113
169
|
name: beaker
|
|
114
170
|
requirement: !ruby/object:Gem::Requirement
|
|
115
171
|
requirements:
|
|
116
|
-
- - "
|
|
172
|
+
- - ">="
|
|
173
|
+
- !ruby/object:Gem::Version
|
|
174
|
+
version: '4'
|
|
175
|
+
- - "<"
|
|
117
176
|
- !ruby/object:Gem::Version
|
|
118
|
-
version: '
|
|
177
|
+
version: '6'
|
|
119
178
|
type: :runtime
|
|
120
179
|
prerelease: false
|
|
121
180
|
version_requirements: !ruby/object:Gem::Requirement
|
|
122
181
|
requirements:
|
|
123
|
-
- - "
|
|
182
|
+
- - ">="
|
|
183
|
+
- !ruby/object:Gem::Version
|
|
184
|
+
version: '4'
|
|
185
|
+
- - "<"
|
|
124
186
|
- !ruby/object:Gem::Version
|
|
125
|
-
version: '
|
|
187
|
+
version: '6'
|
|
126
188
|
description: For use for the Beaker acceptance testing tool
|
|
127
189
|
email:
|
|
128
190
|
- voxpupuli@groups.io
|
|
@@ -131,13 +193,16 @@ executables:
|
|
|
131
193
|
extensions: []
|
|
132
194
|
extra_rdoc_files: []
|
|
133
195
|
files:
|
|
196
|
+
- ".github/dependabot.yml"
|
|
134
197
|
- ".github/workflows/release.yml"
|
|
135
198
|
- ".github/workflows/test.yml"
|
|
136
199
|
- ".gitignore"
|
|
137
200
|
- ".rspec"
|
|
201
|
+
- ".rubocop.yml"
|
|
202
|
+
- ".rubocop_todo.yml"
|
|
138
203
|
- ".simplecov"
|
|
204
|
+
- CHANGELOG.md
|
|
139
205
|
- Gemfile
|
|
140
|
-
- HISTORY.md
|
|
141
206
|
- LICENSE
|
|
142
207
|
- README.md
|
|
143
208
|
- Rakefile
|
|
@@ -160,7 +225,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
160
225
|
requirements:
|
|
161
226
|
- - ">="
|
|
162
227
|
- !ruby/object:Gem::Version
|
|
163
|
-
version: '2.
|
|
228
|
+
version: '2.7'
|
|
164
229
|
- - "<"
|
|
165
230
|
- !ruby/object:Gem::Version
|
|
166
231
|
version: '4'
|
data/HISTORY.md
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# default - History
|
|
2
|
-
## Tags
|
|
3
|
-
* [0.3.0 - 18 May, 2021](#0.2.1)
|
|
4
|
-
* [0.2.0 - 10 Nov, 2020](#0.2.0)
|
|
5
|
-
* [0.1.1 - 14 Oct, 2.05 (a23d45bc)](#0.1.1)
|
|
6
|
-
* [0.1.0 - 8 Sep, 2.05 (7d1ef9b6)](#0.1.0)
|
|
7
|
-
|
|
8
|
-
## Details
|
|
9
|
-
|
|
10
|
-
### <a name = "0.4.0">0.4.0 - 19 May, 2021
|
|
11
|
-
|
|
12
|
-
* Support Ruby 3
|
|
13
|
-
* Handle an array of hosts in copy_hiera_data_to
|
|
14
|
-
|
|
15
|
-
### <a name = "0.3.0">0.3.0 - 18 May, 2021
|
|
16
|
-
|
|
17
|
-
* Major update to work with Beaker 4
|
|
18
|
-
|
|
19
|
-
### <a name = "0.2.0">0.2.0 - 10 Nov, 2020
|
|
20
|
-
|
|
21
|
-
* Release before moving to Vox Pupuli
|
|
22
|
-
|
|
23
|
-
### <a name = "0.1.1">0.1.1 - 14 Oct, 2.05 (a23d45bc)
|
|
24
|
-
|
|
25
|
-
* (GEM) update beaker-hiera version to 0.1.1 (a23d45bc)
|
|
26
|
-
|
|
27
|
-
* Merge pull request #1 from puppetlabs/bkr562_spec_audit (2693ec4f)
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
```
|
|
31
|
-
Merge pull request #1 from puppetlabs/bkr562_spec_audit
|
|
32
|
-
|
|
33
|
-
(BKR-562) removed leftover spec lines
|
|
34
|
-
```
|
|
35
|
-
* (BKR-562) removed leftover spec lines (c348c5e9)
|
|
36
|
-
|
|
37
|
-
### <a name = "0.1.0">0.1.0 - 8 Sep, 2.05 (7d1ef9b6)
|
|
38
|
-
|
|
39
|
-
* Initial release.
|