puppetlabs_spec_helper 2.13.0 → 2.13.1

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
  SHA1:
3
- metadata.gz: ad8505aa8fe7098a8d93aad0c4afda481d0e3512
4
- data.tar.gz: 1190981ff63c6ceabc641ea537264ffde1a8097c
3
+ metadata.gz: 67e8e6e26b94e0e75ff8666f4717b44b5fc86a3b
4
+ data.tar.gz: 746dbb92c29158633c4de0f425670560d8f1f2e7
5
5
  SHA512:
6
- metadata.gz: 836edb5dabb80f1f5b3f98581ed07123fe5f77996ba84a4199bd7d2b59109b42e59b8ec94115d05ea0e9c27d3d39b24c70163faf809ac4d22d0f56f01bf357b1
7
- data.tar.gz: 2801e062d093770f274a69c44e3c7414f562ec7144c228a88eaf9c74d6b87aaad55a9cae33a2dadcebb2d8db6c6ebd68101227a12d6a40cf6dc5c9789bc78d25
6
+ metadata.gz: b9aa9308506dede8697180e61dd7e00d240247a9ff3b6a6345a9033cac781ea994f13a72453a54911091bfc4955158ce65949840bfcd71836be3422aba2cde1e
7
+ data.tar.gz: 51e2a367e8ccf3658eb72866b4377892ab58a5b342fbd6dba266692b59e4295db7f51821a555e61207d1eb04a272a333cbe8b6cc75caf7139f485437208451a0
@@ -3,6 +3,13 @@
3
3
  All significant changes to this repo will be summarized in this file.
4
4
 
5
5
 
6
+ ## [v2.13.1](https://github.com/puppetlabs/puppetlabs_spec_helper/tree/v2.13.1) (2019-01-15)
7
+ [Full Changelog](https://github.com/puppetlabs/puppetlabs_spec_helper/compare/v2.13.0...v2.13.1)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - Revert "\(MODULES-8242\) - Fix CI\_SPEC\_OPTIONS failing" [\#275](https://github.com/puppetlabs/puppetlabs_spec_helper/pull/275) ([rodjek](https://github.com/rodjek))
12
+
6
13
  ## [v2.13.0](https://github.com/puppetlabs/puppetlabs_spec_helper/tree/v2.13.0) (2019-01-11)
7
14
  [Full Changelog](https://github.com/puppetlabs/puppetlabs_spec_helper/compare/v2.12.0...v2.13.0)
8
15
 
@@ -18,6 +25,7 @@ All significant changes to this repo will be summarized in this file.
18
25
 
19
26
  **Merged pull requests:**
20
27
 
28
+ - \(MODULES-8448\) - Release Prep 2.13.0 [\#273](https://github.com/puppetlabs/puppetlabs_spec_helper/pull/273) ([pmcmaw](https://github.com/pmcmaw))
21
29
  - \(maint\) - Resolving bundler ruby version failure, updating tests to include puppet 6 [\#271](https://github.com/puppetlabs/puppetlabs_spec_helper/pull/271) ([pmcmaw](https://github.com/pmcmaw))
22
30
  - \(MAINT\) Add Plans Path Exclusion [\#270](https://github.com/puppetlabs/puppetlabs_spec_helper/pull/270) ([RandomNoun7](https://github.com/RandomNoun7))
23
31
 
@@ -95,8 +95,8 @@ task :parallel_spec_standalone do |_t, args|
95
95
  else
96
96
  begin
97
97
  args = ['-t', 'rspec']
98
- args += ENV['CI_SPEC_OPTIONS'].strip.split(' ') unless ENV['CI_SPEC_OPTIONS'].nil? || ENV['CI_SPEC_OPTIONS'].strip.empty?
99
- args += Rake::FileList[pattern].to_a
98
+ args.push('--').concat(ENV['CI_SPEC_OPTIONS'].strip.split(' ')).push('--') unless ENV['CI_SPEC_OPTIONS'].nil? || ENV['CI_SPEC_OPTIONS'].strip.empty?
99
+ args.concat(Rake::FileList[pattern].to_a)
100
100
 
101
101
  ParallelTests::CLI.new.run(args)
102
102
  end
@@ -1,5 +1,5 @@
1
1
  module PuppetlabsSpecHelper
2
- VERSION = '2.13.0'.freeze
2
+ VERSION = '2.13.1'.freeze
3
3
 
4
4
  # compat for pre-1.2.0 users; deprecated
5
5
  module Version
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.13.0
4
+ version: 2.13.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-01-11 00:00:00.000000000 Z
12
+ date: 2019-01-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mocha
@@ -249,7 +249,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
249
249
  version: '0'
250
250
  requirements: []
251
251
  rubyforge_project:
252
- rubygems_version: 2.6.14.1
252
+ rubygems_version: 2.6.14
253
253
  signing_key:
254
254
  specification_version: 4
255
255
  summary: Standard tasks and configuration for module spec tests.