beaker-puppet 1.19.2 → 1.20.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: 4cc6f0f36f82484e0a3ee844e0bc0c49e92cdc10fd79d1abb9fd57f595f47fe0
4
- data.tar.gz: 71b71ee4b94f13f1d42abb41712a0f3ef7a0fa2acd259beb67c847649a16b509
3
+ metadata.gz: 737b37a67f54e2d13971fdf418e83dbd137a25a3c438d2686b0b8b6d53c30d32
4
+ data.tar.gz: ef74b57af652ae95c6dd51f5d4edb418cf18d4120ffe9d07156ca70de3bfd0d2
5
5
  SHA512:
6
- metadata.gz: 5980d84a0db730cb94fbb3f2921792227806785bd9335310feeadc4be1c4bda2209c00c433824dd6e4e4b0e23bb9a2830b8df793ed04dc8ddc190cbd18d78f92
7
- data.tar.gz: 1f5e8bedf15b63a475ea3470fb12aa7952ef197effed6375b292cfa073f5daea8a1213f872fbd61f7963e7a52afa6a7b60899487b16bd7a94066ab1c20d08ced
6
+ metadata.gz: 8cf482925c059096d7065862cac1dc6915b4e12371cd03f6be7e896e287933358a412e038b879bf19cca9705a16e85d4c789a75de098f4bce7d8fb78a003ff04
7
+ data.tar.gz: af50c97c0c401b087362530da9b03b1d5dc686d5c3430beea1965cbbcbf864cfc1264abca9149562803d45959ecc6753127862e0cb0dcbc6e7e658e31eb4e205
@@ -0,0 +1,8 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ time: "13:00"
8
+ open-pull-requests-limit: 10
@@ -0,0 +1,10 @@
1
+ before_install:
2
+ - gem update
3
+ - gem --version
4
+ language: ruby
5
+ script: "bundle exec rake test:spec"
6
+ notifications:
7
+ email: false
8
+ rvm:
9
+ - 2.6
10
+ - 2.4
data/CODEOWNERS CHANGED
@@ -1,3 +0,0 @@
1
- #This Repository is maintained by both the beaker and Night's Watch teams, depending on the location of the changes
2
- * @puppetlabs/beaker
3
- * @puppetlabs/night-s-watch
@@ -177,8 +177,8 @@ module Beaker
177
177
  # emit the misc/versions.txt file which contains component versions for
178
178
  # puppet, facter, hiera, pxp-agent, packaging and vendored Ruby
179
179
  [
180
- '%ProgramFiles%/Puppet Labs/puppet/misc/versions.txt',
181
- '%ProgramFiles(x86)%/Puppet Labs/puppet/misc/versions.txt'
180
+ '"${env:ProgramFiles}/Puppet Labs/puppet/misc/versions.txt"',
181
+ '"${env:ProgramFiles(x86)}/Puppet Labs/puppet/misc/versions.txt"'
182
182
  ].each do |path|
183
183
  if file_exists_on(host, path)
184
184
  logger.info(file_contents_on(host, path)) && break
@@ -1,3 +1,3 @@
1
1
  module BeakerPuppet
2
- VERSION = '1.19.2'
2
+ VERSION = '1.20.0'
3
3
  end
@@ -41,7 +41,7 @@ describe ClassMixedWithDSLInstallUtils do
41
41
  end
42
42
 
43
43
  def expect_version_log_called(times = hosts.length)
44
- path = %{%ProgramFiles%/Puppet Labs/puppet/misc/versions.txt}
44
+ path = %{"${env:ProgramFiles}/Puppet Labs/puppet/misc/versions.txt"}
45
45
 
46
46
  expect( subject ).to receive( :file_exists_on )
47
47
  .with(anything, path)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-puppet
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.2
4
+ version: 1.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-21 00:00:00.000000000 Z
11
+ date: 2020-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -206,8 +206,10 @@ executables:
206
206
  extensions: []
207
207
  extra_rdoc_files: []
208
208
  files:
209
+ - ".github/dependabot.yml"
209
210
  - ".gitignore"
210
211
  - ".simplecov"
212
+ - ".travis.yml"
211
213
  - CODEOWNERS
212
214
  - Gemfile
213
215
  - HISTORY.md
@@ -307,7 +309,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
307
309
  - !ruby/object:Gem::Version
308
310
  version: '0'
309
311
  requirements: []
310
- rubygems_version: 3.0.6
312
+ rubygems_version: 3.0.8
311
313
  signing_key:
312
314
  specification_version: 4
313
315
  summary: Beaker's Puppet DSL Extension Helpers!