puppetlabs_spec_helper 6.0.1 → 6.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9697b23b7652cc4dd9158675666a7f64ea3a902a4ec8367977712b9549e94951
4
- data.tar.gz: e1913dfc25f36d2067d4f9003810e5d0602a105b2442aaca1bba8a09dff484bb
3
+ metadata.gz: 51f58ff9c9735e41876b890dce7baaee9f5bd6789dd343976cef895f10871c13
4
+ data.tar.gz: 026c481d1ed51f4df3a0940d8144c8ba81ec94a9c88e11b9c4884397e23057f6
5
5
  SHA512:
6
- metadata.gz: e3ee3dbfac1577f1933f00e9b2cb6ac5fb2b4162054b9e9dcedd5921c7cbdcd279dce6294db6ec9cf29919c572ab0087ff62b3175ad1b3ddb24c8d261553587b
7
- data.tar.gz: a0c034d5006429965a0a86a96de2011f708f9ce32893d2518dc6e062c73644560d6651f071c58a7c3d20c91e8013af46c45f14ea1cec7d61ff77beb52f05a0d3
6
+ metadata.gz: 7ad8e6b070da2e8a84504039d52b952ecd2f81dcfc0146e91944732229efbab2d436b720895e207dc3fdc0e67b4b4d7ba0e0d7bcac799a4b90de793dfd362e30
7
+ data.tar.gz: 93e4bfd27ba5289d2edc1c3902c3f7026f8111c64335835b38bacde6b08d24e2463f28123b683ce7364f25c4113a67c6ef14babe744aacde38461a406483f68b
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Puppet Labs Spec Helper
2
2
  =======================
3
3
 
4
+ [![Code Owners](https://img.shields.io/badge/owners-DevX--team-blue)](https://github.com/puppetlabs/puppetlabs_spec_helper/blob/main/CODEOWNERS)
5
+ ![ci](https://github.com/puppetlabs/puppetlabs_spec_helper/actions/workflows/ci.yml/badge.svg)
6
+ ![GitHub release (latest by date)](https://img.shields.io/github/v/release/puppetlabs/puppetlabs_spec_helper)
7
+
4
8
  The Short Version
5
9
  -----------------
6
10
 
@@ -230,8 +234,8 @@ Add `firewall` and `stdlib` as required module fixtures:
230
234
  ```yaml
231
235
  fixtures:
232
236
  repositories:
233
- firewall: "git://github.com/puppetlabs/puppetlabs-firewall"
234
- stdlib: "git://github.com/puppetlabs/puppetlabs-stdlib"
237
+ firewall: "https://github.com/puppetlabs/puppetlabs-firewall.git"
238
+ stdlib: "https://github.com/puppetlabs/puppetlabs-stdlib.git"
235
239
  ```
236
240
 
237
241
  Put a supplementary repository at a different location
@@ -239,8 +243,8 @@ Put a supplementary repository at a different location
239
243
  ```yaml
240
244
  fixtures:
241
245
  repositories:
242
- firewall: "git://github.com/puppetlabs/puppetlabs-firewall"
243
- stdlib: "git://github.com/puppetlabs/puppetlabs-stdlib"
246
+ firewall: "https://github.com/puppetlabs/puppetlabs-firewall.git"
247
+ stdlib: "https://github.com/puppetlabs/puppetlabs-stdlib.git"
244
248
  control_repo:
245
249
  repo: "https://github.com/puppetlabs/control-repo"
246
250
  target: "spec/fixtures/control_repos"
@@ -251,9 +255,9 @@ Specify that the git tag `2.4.2` of `stdlib` should be checked out:
251
255
  ```yaml
252
256
  fixtures:
253
257
  repositories:
254
- firewall: "git://github.com/puppetlabs/puppetlabs-firewall"
258
+ firewall: "https://github.com/puppetlabs/puppetlabs-firewall.git"
255
259
  stdlib:
256
- repo: "git://github.com/puppetlabs/puppetlabs-stdlib"
260
+ repo: "https://github.com/puppetlabs/puppetlabs-stdlib.git"
257
261
  ref: "2.6.0"
258
262
  ```
259
263
 
@@ -263,7 +267,7 @@ Only install the `yumrepo_core` module when testing against Puppet 7 or greater:
263
267
  fixtures:
264
268
  repositories:
265
269
  yumrepo_core:
266
- repo: "git://github.com/puppetlabs/puppetlabs-yumrepo_core"
270
+ repo: "https://github.com/puppetlabs/puppetlabs-yumrepo_core.git"
267
271
  puppet_version: ">= 6.0.0"
268
272
  ```
269
273
 
@@ -273,7 +277,7 @@ Move manifests and siblings to root directory when they are inside a `code` dire
273
277
  fixtures:
274
278
  repositories:
275
279
  stdlib:
276
- repo: "git://github.com/puppetlabs/puppetlabs-extradirectory"
280
+ repo: "https://github.com/puppetlabs/puppetlabs-extradirectory.git"
277
281
  subdir: "code"
278
282
  ```
279
283
 
@@ -299,7 +303,7 @@ fixtures:
299
303
  flags: "--module_repository https://my_repo.com"
300
304
  repositories:
301
305
  firewall:
302
- repo: "git://github.com/puppetlabs/puppetlabs-firewall"
306
+ repo: "https://github.com/puppetlabs/puppetlabs-firewall.git"
303
307
  ref: "2.6.0"
304
308
  flags: "--verbose"
305
309
  ```
@@ -317,7 +321,7 @@ fixtures:
317
321
  ref: "2.6.0"
318
322
  repositories:
319
323
  firewall:
320
- repo: "git://github.com/puppetlabs/puppetlabs-firewall"
324
+ repo: "https://github.com/puppetlabs/puppetlabs-firewall.git"
321
325
  ref: "2.6.0"
322
326
  ```
323
327
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PuppetlabsSpecHelper
4
- VERSION = '6.0.1'
4
+ VERSION = '6.0.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puppetlabs_spec_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.1
4
+ version: 6.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet, Inc.
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-04-25 00:00:00.000000000 Z
12
+ date: 2023-09-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mocha
@@ -49,16 +49,16 @@ dependencies:
49
49
  name: puppet-lint
50
50
  requirement: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 3.0.0
54
+ version: '4.0'
55
55
  type: :runtime
56
56
  prerelease: false
57
57
  version_requirements: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ">="
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 3.0.0
61
+ version: '4.0'
62
62
  - !ruby/object:Gem::Dependency
63
63
  name: puppet-syntax
64
64
  requirement: !ruby/object:Gem::Requirement