puppetlabs_spec_helper 2.14.0 → 2.14.1
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/CHANGELOG.md +13 -2
- data/lib/puppetlabs_spec_helper/rake_tasks.rb +1 -3
- data/lib/puppetlabs_spec_helper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb89bc7cd1c8a7ea79dd83f18fc2d15ad24f035c
|
|
4
|
+
data.tar.gz: 67d56faf027cbbec8e0ffa0a32b4f2c0dd9134e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7604f2bc60bd6e96722e89229e69b74e1cef4c45a67c377730b5e5eb2a23b525f5486772f7fa5dbcdc5904971caab232d845d506323deb435510fbf1411c7dd
|
|
7
|
+
data.tar.gz: 00a4bcf65955310bbe0e9b5f3e71da39ee0a63f104ad764c3df7519edf42c13fc8dc5c6a8dfd176c602abf911c8a73b650118ffe0239f04e9567cf18fc0ba032
|
data/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,14 @@
|
|
|
3
3
|
All significant changes to this repo will be summarized in this file.
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
## [v2.14.
|
|
6
|
+
## [v2.14.1](https://github.com/puppetlabs/puppetlabs_spec_helper/tree/v2.14.1) (2019-03-26)
|
|
7
|
+
[Full Changelog](https://github.com/puppetlabs/puppetlabs_spec_helper/compare/v2.14.0...v2.14.1)
|
|
8
|
+
|
|
9
|
+
**Fixed bugs:**
|
|
10
|
+
|
|
11
|
+
- Revert "\(feat\) dont load the beaker if litmus is there" [\#286](https://github.com/puppetlabs/puppetlabs_spec_helper/pull/286) ([pmcmaw](https://github.com/pmcmaw))
|
|
12
|
+
|
|
13
|
+
## [v2.14.0](https://github.com/puppetlabs/puppetlabs_spec_helper/tree/v2.14.0) (2019-03-25)
|
|
7
14
|
[Full Changelog](https://github.com/puppetlabs/puppetlabs_spec_helper/compare/v2.13.1...v2.14.0)
|
|
8
15
|
|
|
9
16
|
**Implemented enhancements:**
|
|
@@ -12,10 +19,14 @@ All significant changes to this repo will be summarized in this file.
|
|
|
12
19
|
- \(maint\) load rake tasks from optional libraries [\#279](https://github.com/puppetlabs/puppetlabs_spec_helper/pull/279) ([DavidS](https://github.com/DavidS))
|
|
13
20
|
- Document how to set default values for fixture loading [\#277](https://github.com/puppetlabs/puppetlabs_spec_helper/pull/277) ([Felixoid](https://github.com/Felixoid))
|
|
14
21
|
|
|
15
|
-
**
|
|
22
|
+
**Fixed bugs:**
|
|
16
23
|
|
|
17
24
|
- Remove `--color` from everywhere, use RSpec default detection instead [\#280](https://github.com/puppetlabs/puppetlabs_spec_helper/pull/280) ([DavidS](https://github.com/DavidS))
|
|
18
25
|
|
|
26
|
+
**Merged pull requests:**
|
|
27
|
+
|
|
28
|
+
- \(MODULES-8771\) - Release Prep 2.14.0 [\#282](https://github.com/puppetlabs/puppetlabs_spec_helper/pull/282) ([pmcmaw](https://github.com/pmcmaw))
|
|
29
|
+
|
|
19
30
|
## [v2.13.1](https://github.com/puppetlabs/puppetlabs_spec_helper/tree/v2.13.1) (2019-01-15)
|
|
20
31
|
[Full Changelog](https://github.com/puppetlabs/puppetlabs_spec_helper/compare/v2.13.0...v2.13.1)
|
|
21
32
|
|
|
@@ -4,13 +4,11 @@ require 'rspec/core/rake_task'
|
|
|
4
4
|
require 'tmpdir'
|
|
5
5
|
require 'pathname'
|
|
6
6
|
require 'puppetlabs_spec_helper/version'
|
|
7
|
+
require 'puppetlabs_spec_helper/tasks/beaker'
|
|
7
8
|
require 'puppetlabs_spec_helper/tasks/fixtures'
|
|
8
9
|
require 'puppetlabs_spec_helper/tasks/check_symlinks'
|
|
9
10
|
require 'English'
|
|
10
11
|
|
|
11
|
-
# dont load beaker if litmus is present
|
|
12
|
-
require 'puppetlabs_spec_helper/tasks/beaker' unless Bundler.rubygems.find_name('puppet_litmus').any?
|
|
13
|
-
|
|
14
12
|
# optional gems
|
|
15
13
|
begin
|
|
16
14
|
require 'metadata-json-lint/rake_task'
|
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: 2.14.
|
|
4
|
+
version: 2.14.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppet, Inc.
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-03-
|
|
12
|
+
date: 2019-03-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: mocha
|