puppetlabs_spec_helper 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,13 @@
1
+ 2014-08-25 - Release 0.8.1
2
+ Summary:
3
+ This release corrects compatibility with the recently-released puppet-lint
4
+ 1.0.0
5
+
6
+ Bugfixes:
7
+ - Turn on relative autoloader lint checking for backwards-compatibility
8
+ - Turn off param class inheritance check (deprecated style)
9
+ - Fix ignore paths to ignore pkg/*
10
+
1
11
  2014-07-29 - Release 0.8.0
2
12
  Summary:
3
13
  This release uses the new puppet-syntax gem to perform manifest validation
@@ -195,9 +195,12 @@ end
195
195
 
196
196
  desc "Check puppet manifests with puppet-lint"
197
197
  task :lint do
198
- require 'puppet-lint/tasks/puppet-lint'
198
+ require 'puppet-lint'
199
+ PuppetLint.configuration.relative = true
200
+ PuppetLint.configuration.disable_class_inherits_from_params_class
199
201
  PuppetLint.configuration.ignore_paths ||= []
200
202
  PuppetLint.configuration.ignore_paths << "spec/fixtures/**/*.pp"
203
+ PuppetLint.configuration.ignore_paths << "pkg/**/*.pp"
201
204
  end
202
205
 
203
206
  require 'puppet-syntax/tasks/puppet-syntax'
@@ -1,5 +1,5 @@
1
1
  module PuppetlabsSpecHelper
2
2
  module Version
3
- STRING = '0.8.0'
3
+ STRING = '0.8.1'
4
4
  end
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: 0.8.0
4
+ version: 0.8.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-07-30 00:00:00.000000000 Z
12
+ date: 2014-08-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake