rspec-puppet 2.6.14 → 2.6.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/lib/rspec-puppet/adapters.rb +3 -0
- metadata +32 -36
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: '088bd4fad95b9e94e69fe9f830ca94f3a6dbec39'
|
4
|
+
data.tar.gz: 01a0b23cb2688dca2e476ee1bd649e1a5e704423
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 29984636946f45bca01b6d4e3226ae8e5bc1d072ffc67a93cc179fec4d55e0386cc207626978f35317adf1696a612059921038235ce40cc617e9a227314e36be
|
7
|
+
data.tar.gz: '018cc4710b3a32ffd647d3434c16c693f1fe3b9e552aee9b113740d1c5755b42496375d9dad72c41332e9e0d5c21f652a332c77009d4136fe1987158c4306290'
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. This
|
3
3
|
project adheres to [Semantic Versioning](http://semver.org/).
|
4
4
|
|
5
|
+
## [2.6.15]
|
6
|
+
|
7
|
+
### Fixed
|
8
|
+
|
9
|
+
* Added a Puppet 6.x adapter so that rspec-puppet does not try to set removed
|
10
|
+
Puppet settings (specifically `trusted_server_facts`) when running tests
|
11
|
+
against the upcoming Puppet 6.0.0 release.
|
12
|
+
|
5
13
|
## [2.6.14]
|
6
14
|
|
7
15
|
### Fixed
|
@@ -192,6 +192,8 @@ module RSpec::Puppet
|
|
192
192
|
end
|
193
193
|
end
|
194
194
|
|
195
|
+
class Adapter6X < Adapter40; end
|
196
|
+
|
195
197
|
class Adapter30 < Base
|
196
198
|
def settings_map
|
197
199
|
super.concat([
|
@@ -248,6 +250,7 @@ module RSpec::Puppet
|
|
248
250
|
|
249
251
|
def self.get
|
250
252
|
[
|
253
|
+
['6.0', Adapter6X],
|
251
254
|
['4.1', Adapter4X],
|
252
255
|
['4.0', Adapter40],
|
253
256
|
['3.5', Adapter35],
|
metadata
CHANGED
@@ -1,30 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-puppet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
5
|
-
prerelease:
|
4
|
+
version: 2.6.15
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Tim Sharpe
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2018-
|
11
|
+
date: 2018-08-13 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rspec
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '0'
|
30
27
|
description: RSpec tests for your Puppet manifests
|
@@ -36,65 +33,64 @@ extra_rdoc_files: []
|
|
36
33
|
files:
|
37
34
|
- CHANGELOG.md
|
38
35
|
- README.md
|
36
|
+
- bin/rspec-puppet-init
|
39
37
|
- lib/rspec-puppet.rb
|
40
|
-
- lib/rspec-puppet/
|
41
|
-
- lib/rspec-puppet/
|
42
|
-
- lib/rspec-puppet/matchers/compile.rb
|
43
|
-
- lib/rspec-puppet/matchers/count_generic.rb
|
44
|
-
- lib/rspec-puppet/matchers/type_matchers.rb
|
45
|
-
- lib/rspec-puppet/matchers/parameter_matcher.rb
|
46
|
-
- lib/rspec-puppet/matchers/include_class.rb
|
47
|
-
- lib/rspec-puppet/matchers/dynamic_matchers.rb
|
48
|
-
- lib/rspec-puppet/matchers/run.rb
|
38
|
+
- lib/rspec-puppet/adapters.rb
|
39
|
+
- lib/rspec-puppet/cache.rb
|
49
40
|
- lib/rspec-puppet/consts.rb
|
50
41
|
- lib/rspec-puppet/coverage.rb
|
51
|
-
- lib/rspec-puppet/example.rb
|
52
|
-
- lib/rspec-puppet/adapters.rb
|
53
|
-
- lib/rspec-puppet/tasks/release_test.rb
|
54
|
-
- lib/rspec-puppet/rake_task.rb
|
55
|
-
- lib/rspec-puppet/monkey_patches.rb
|
56
42
|
- lib/rspec-puppet/errors.rb
|
57
|
-
- lib/rspec-puppet/
|
58
|
-
- lib/rspec-puppet/spec_helper.rb
|
59
|
-
- lib/rspec-puppet/cache.rb
|
60
|
-
- lib/rspec-puppet/support.rb
|
43
|
+
- lib/rspec-puppet/example.rb
|
61
44
|
- lib/rspec-puppet/example/application_example_group.rb
|
62
45
|
- lib/rspec-puppet/example/class_example_group.rb
|
46
|
+
- lib/rspec-puppet/example/define_example_group.rb
|
47
|
+
- lib/rspec-puppet/example/function_example_group.rb
|
63
48
|
- lib/rspec-puppet/example/host_example_group.rb
|
64
|
-
- lib/rspec-puppet/example/type_example_group.rb
|
65
49
|
- lib/rspec-puppet/example/provider_example_group.rb
|
66
50
|
- lib/rspec-puppet/example/type_alias_example_group.rb
|
67
|
-
- lib/rspec-puppet/example/
|
68
|
-
- lib/rspec-puppet/example/define_example_group.rb
|
51
|
+
- lib/rspec-puppet/example/type_example_group.rb
|
69
52
|
- lib/rspec-puppet/matchers.rb
|
70
|
-
- lib/rspec-puppet/
|
53
|
+
- lib/rspec-puppet/matchers/allow_value.rb
|
54
|
+
- lib/rspec-puppet/matchers/compile.rb
|
55
|
+
- lib/rspec-puppet/matchers/count_generic.rb
|
56
|
+
- lib/rspec-puppet/matchers/create_generic.rb
|
57
|
+
- lib/rspec-puppet/matchers/dynamic_matchers.rb
|
58
|
+
- lib/rspec-puppet/matchers/include_class.rb
|
59
|
+
- lib/rspec-puppet/matchers/parameter_matcher.rb
|
60
|
+
- lib/rspec-puppet/matchers/run.rb
|
61
|
+
- lib/rspec-puppet/matchers/type_matchers.rb
|
62
|
+
- lib/rspec-puppet/monkey_patches.rb
|
71
63
|
- lib/rspec-puppet/monkey_patches/win32/registry.rb
|
72
64
|
- lib/rspec-puppet/monkey_patches/win32/taskscheduler.rb
|
73
65
|
- lib/rspec-puppet/monkey_patches/windows/taskschedulerconstants.rb
|
74
|
-
-
|
66
|
+
- lib/rspec-puppet/rake_task.rb
|
67
|
+
- lib/rspec-puppet/raw_string.rb
|
68
|
+
- lib/rspec-puppet/setup.rb
|
69
|
+
- lib/rspec-puppet/spec_helper.rb
|
70
|
+
- lib/rspec-puppet/support.rb
|
71
|
+
- lib/rspec-puppet/tasks/release_test.rb
|
75
72
|
homepage: https://github.com/rodjek/rspec-puppet/
|
76
73
|
licenses:
|
77
74
|
- MIT
|
75
|
+
metadata: {}
|
78
76
|
post_install_message:
|
79
77
|
rdoc_options: []
|
80
78
|
require_paths:
|
81
79
|
- lib
|
82
80
|
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
-
none: false
|
84
81
|
requirements:
|
85
|
-
- -
|
82
|
+
- - ">="
|
86
83
|
- !ruby/object:Gem::Version
|
87
84
|
version: '0'
|
88
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
86
|
requirements:
|
91
|
-
- -
|
87
|
+
- - ">="
|
92
88
|
- !ruby/object:Gem::Version
|
93
89
|
version: '0'
|
94
90
|
requirements: []
|
95
91
|
rubyforge_project:
|
96
|
-
rubygems_version:
|
92
|
+
rubygems_version: 2.6.14.1
|
97
93
|
signing_key:
|
98
|
-
specification_version:
|
94
|
+
specification_version: 4
|
99
95
|
summary: RSpec tests for your Puppet manifests
|
100
96
|
test_files: []
|