chefspec 4.4.0 → 4.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +10 -5
- data/README.md +2 -2
- data/chefspec.gemspec +1 -1
- data/examples/server/spec/node_spec.rb +1 -1
- data/lib/chefspec/api/directory.rb +10 -10
- data/lib/chefspec/api/group.rb +5 -5
- data/lib/chefspec/api/link.rb +10 -10
- data/lib/chefspec/api/mdadm.rb +5 -5
- data/lib/chefspec/api/remote_directory.rb +10 -10
- data/lib/chefspec/api/route.rb +5 -5
- data/lib/chefspec/api/user.rb +5 -5
- data/lib/chefspec/version.rb +1 -1
- data/spec/unit/solo_runner_spec.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4abcb8430f01e2e4a0d3a1be5f8266929d2a0dbc
|
4
|
+
data.tar.gz: 07da81047be5641e57bb1cfd4c331b1b4082ea09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf4f698fca28f6ef69b7d7a176733cbfb0b2608c3bfb8fb8c090187391c167a87bd72564809ecd3f31f4b6e7770431aeba816450efa5c638277df31a646a5f2f
|
7
|
+
data.tar.gz: d7804c8c4f6f77fb783b161907524d203cdc9505bc089b9e2a46857413d1cc6d1265baee2e6a64e946d89b0eadc1a6f7205b07463deae1e1e0691b74423b5c53
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
CHANGELOG for ChefSpec
|
2
2
|
======================
|
3
3
|
|
4
|
+
## 4.5.0 (December 4, 2015)
|
5
|
+
|
6
|
+
Improvements
|
7
|
+
- Update Fauxhai dependency to 3.0 to bring in newly generated mocked Ohai data
|
8
|
+
|
4
9
|
## 4.4.0 (September 18, 2015)
|
5
10
|
|
6
11
|
Bugfixes
|
@@ -20,14 +25,14 @@ Bugfixes:
|
|
20
25
|
- Only exit if the status is a failure [GH-565]
|
21
26
|
- Fix load order on Windows when using the `rights` attributes
|
22
27
|
- Improve testing matrix and remove deprecated Chef versions
|
23
|
-
-
|
28
|
+
- Suppress chef_gem compile_time warnings
|
24
29
|
- Fix exceptions on converge for Chef 12.1.0 masking
|
25
|
-
- Update Librarian `Cheffile` site URL to
|
30
|
+
- Update Librarian `Cheffile` site URL to supermarket.chef.io
|
26
31
|
- Filter Windows and Unix paths for test coverage report with Berkshelf
|
27
32
|
|
28
33
|
Improvements:
|
29
34
|
- Added possibility to specify file_cache_path globally
|
30
|
-
- Added new capabilities for reboot
|
35
|
+
- Added new capabilities for reboot resource
|
31
36
|
- Use `Chef::Resource#declared_type` first if available (Chef >= 12),
|
32
37
|
otherwise fall back to `Chef::Resource#resource_name` (Chef <= 11)
|
33
38
|
- Extend render_file to yield the content as a block
|
@@ -67,7 +72,7 @@ Improvements:
|
|
67
72
|
- Updated documentation
|
68
73
|
|
69
74
|
Breaking changes:
|
70
|
-
- Due to the new `ServerRunner`, the `ChefSpec::Server` singleton object has been deprecated. As much as I would like to provide a backwards-compatible interface, there is no way to do so (as the code now supports
|
75
|
+
- Due to the new `ServerRunner`, the `ChefSpec::Server` singleton object has been deprecated. As much as I would like to provide a backwards-compatible interface, there is no way to do so (as the code now supports multiple Chef Server instances). Sorry :(.
|
71
76
|
- Remove old deprecations - this is not really a breaking change, but the v2.0.0 deprecations have been removed in favor of new ones
|
72
77
|
|
73
78
|
## 4.0.2 (August 13, 2014)
|
@@ -154,7 +159,7 @@ Bugfixes:
|
|
154
159
|
- Fix coverage calculation when there are no resources in the collection
|
155
160
|
- Fix misplaced quote in matcher output
|
156
161
|
- Include all files in generated gem
|
157
|
-
- Ensure
|
162
|
+
- Ensure compatibility with Chef HEAD
|
158
163
|
|
159
164
|
Improvements:
|
160
165
|
- Test Ruby 2.1 on Travis
|
data/README.md
CHANGED
@@ -28,10 +28,10 @@ Important Notes
|
|
28
28
|
- **ChefSpec 3.0+ requires Ruby 1.9 or higher!**
|
29
29
|
- **This documentation corresponds to the master branch, which may be unreleased. Please check the README of the latest git tag or the gem's source for your version's documentation!**
|
30
30
|
- **Each resource matcher is self-documented using [Yard](http://rubydoc.info/github/sethvargo/chefspec) and has a corresponding aruba test from the [examples directory](https://github.com/sethvargo/chefspec/tree/master/examples).**
|
31
|
-
- **ChefSpec aims to maintain
|
31
|
+
- **ChefSpec aims to maintain compatibility with the two most recent minor versions of Chef.** If you are running an older version of Chef it may work, or you will need to run an older version of ChefSpec.
|
32
32
|
|
33
33
|
|
34
|
-
Notes on
|
34
|
+
Notes on Compatibility with Chef Versions
|
35
35
|
-----------------------------------------
|
36
36
|
As a general rule, if it is tested in the Travis CI matrix, it is a supported version. The section below details any specific versions that are _not_ supported and why:
|
37
37
|
|
data/chefspec.gemspec
CHANGED
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|
27
27
|
s.required_ruby_version = '>= 1.9'
|
28
28
|
|
29
29
|
s.add_dependency 'chef', '>= 11.14'
|
30
|
-
s.add_dependency 'fauxhai', '~>
|
30
|
+
s.add_dependency 'fauxhai', '~> 3.0', '>= 3.0.1'
|
31
31
|
s.add_dependency 'rspec', '~> 3.0'
|
32
32
|
|
33
33
|
# Development Dependencies
|
@@ -27,7 +27,7 @@ describe 'server::node' do
|
|
27
27
|
|
28
28
|
node = chef_run.get_node('chefspec')
|
29
29
|
expect(node['kernel']['name']).to eq('Linux')
|
30
|
-
expect(node['kernel']['release']).to eq('3.2.0-
|
30
|
+
expect(node['kernel']['release']).to eq('3.2.0-92-generic')
|
31
31
|
expect(node['kernel']['machine']).to eq('x86_64')
|
32
32
|
end
|
33
33
|
end
|
@@ -15,19 +15,19 @@ module ChefSpec::API
|
|
15
15
|
# The Examples section demonstrates the different ways to test a
|
16
16
|
# +directory+ resource with ChefSpec.
|
17
17
|
#
|
18
|
-
# @example Assert that a +directory+ was
|
18
|
+
# @example Assert that a +directory+ was created
|
19
19
|
# expect(chef_run).to create_directory('/tmp')
|
20
20
|
#
|
21
|
-
# @example Assert that a +directory+ was
|
21
|
+
# @example Assert that a +directory+ was created with predicate matchers
|
22
22
|
# expect(chef_run).to create_directory('/tmp').with_user('svargo')
|
23
23
|
#
|
24
|
-
# @example Assert that a +directory+ was
|
24
|
+
# @example Assert that a +directory+ was created with attributes
|
25
25
|
# expect(chef_run).to create_directory('/tmp').with(user: 'svargo')
|
26
26
|
#
|
27
|
-
# @example Assert that a +directory+ was
|
27
|
+
# @example Assert that a +directory+ was created using a regex
|
28
28
|
# expect(chef_run).to create_directory('/tmp').with(user: /sva(.+)/)
|
29
29
|
#
|
30
|
-
# @example Assert that a +directory+ was _not_
|
30
|
+
# @example Assert that a +directory+ was _not_ created
|
31
31
|
# expect(chef_run).to_not create_directory('/tmp')
|
32
32
|
#
|
33
33
|
#
|
@@ -52,19 +52,19 @@ module ChefSpec::API
|
|
52
52
|
# The Examples section demonstrates the different ways to test a
|
53
53
|
# +directory+ resource with ChefSpec.
|
54
54
|
#
|
55
|
-
# @example Assert that a +directory+ was
|
55
|
+
# @example Assert that a +directory+ was deleted
|
56
56
|
# expect(chef_run).to delete_directory('/tmp')
|
57
57
|
#
|
58
|
-
# @example Assert that a +directory+ was
|
58
|
+
# @example Assert that a +directory+ was deleted with predicate matchers
|
59
59
|
# expect(chef_run).to delete_directory('/tmp').with_user('svargo')
|
60
60
|
#
|
61
|
-
# @example Assert that a +directory+ was
|
61
|
+
# @example Assert that a +directory+ was deleted with attributes
|
62
62
|
# expect(chef_run).to delete_directory('/tmp').with(user: 'svargo')
|
63
63
|
#
|
64
|
-
# @example Assert that a +directory+ was
|
64
|
+
# @example Assert that a +directory+ was deleted using a regex
|
65
65
|
# expect(chef_run).to delete_directory('/tmp').with(user: /sva(.+)/)
|
66
66
|
#
|
67
|
-
# @example Assert that a +directory+ was _not_
|
67
|
+
# @example Assert that a +directory+ was _not_ deleted
|
68
68
|
# expect(chef_run).to_not delete_directory('/tmp')
|
69
69
|
#
|
70
70
|
#
|
data/lib/chefspec/api/group.rb
CHANGED
@@ -15,19 +15,19 @@ module ChefSpec::API
|
|
15
15
|
# The Examples section demonstrates the different ways to test a
|
16
16
|
# +group+ resource with ChefSpec.
|
17
17
|
#
|
18
|
-
# @example Assert that a +group+ was
|
18
|
+
# @example Assert that a +group+ was created
|
19
19
|
# expect(chef_run).to create_group('apache2')
|
20
20
|
#
|
21
|
-
# @example Assert that a +group+ was
|
21
|
+
# @example Assert that a +group+ was created with predicate matchers
|
22
22
|
# expect(chef_run).to create_group('apache2').with_gid(1234)
|
23
23
|
#
|
24
|
-
# @example Assert that a +group+ was
|
24
|
+
# @example Assert that a +group+ was created with attributes
|
25
25
|
# expect(chef_run).to create_group('apache2').with(gid: 1234)
|
26
26
|
#
|
27
|
-
# @example Assert that a +group+ was
|
27
|
+
# @example Assert that a +group+ was created using a regex
|
28
28
|
# expect(chef_run).to create_group('apache2').with(gid: /\d+/)
|
29
29
|
#
|
30
|
-
# @example Assert that a +group+ was _not_
|
30
|
+
# @example Assert that a +group+ was _not_ created
|
31
31
|
# expect(chef_run).to_not create_group('apache2')
|
32
32
|
#
|
33
33
|
#
|
data/lib/chefspec/api/link.rb
CHANGED
@@ -15,19 +15,19 @@ module ChefSpec::API
|
|
15
15
|
# The Examples section demonstrates the different ways to test a
|
16
16
|
# +link+ resource with ChefSpec.
|
17
17
|
#
|
18
|
-
# @example Assert that a +link+ was
|
18
|
+
# @example Assert that a +link+ was created
|
19
19
|
# expect(chef_run).to create_link('/tmp')
|
20
20
|
#
|
21
|
-
# @example Assert that a +link+ was
|
21
|
+
# @example Assert that a +link+ was created with predicate matchers
|
22
22
|
# expect(chef_run).to create_link('/tmp').with_link_type(:hard)
|
23
23
|
#
|
24
|
-
# @example Assert that a +link+ was
|
24
|
+
# @example Assert that a +link+ was created with attributes
|
25
25
|
# expect(chef_run).to create_link('/tmp').with(link_type: :hard)
|
26
26
|
#
|
27
|
-
# @example Assert that a +link+ was
|
27
|
+
# @example Assert that a +link+ was created using a regex
|
28
28
|
# expect(chef_run).to create_link('/tmp').with(link_type: Symbol)
|
29
29
|
#
|
30
|
-
# @example Assert that a +link+ was _not_
|
30
|
+
# @example Assert that a +link+ was _not_ created
|
31
31
|
# expect(chef_run).to_not create_link('/tmp')
|
32
32
|
#
|
33
33
|
#
|
@@ -52,19 +52,19 @@ module ChefSpec::API
|
|
52
52
|
# The Examples section demonstrates the different ways to test a
|
53
53
|
# +link+ resource with ChefSpec.
|
54
54
|
#
|
55
|
-
# @example Assert that a +link+ was
|
55
|
+
# @example Assert that a +link+ was deleted
|
56
56
|
# expect(chef_run).to delete_link('/tmp')
|
57
57
|
#
|
58
|
-
# @example Assert that a +link+ was
|
58
|
+
# @example Assert that a +link+ was deleted with predicate matchers
|
59
59
|
# expect(chef_run).to delete_link('/tmp').with_link_type(:hard)
|
60
60
|
#
|
61
|
-
# @example Assert that a +link+ was
|
61
|
+
# @example Assert that a +link+ was deleted with attributes
|
62
62
|
# expect(chef_run).to delete_link('/tmp').with(link_type: :hard)
|
63
63
|
#
|
64
|
-
# @example Assert that a +link+ was
|
64
|
+
# @example Assert that a +link+ was deleted using a regex
|
65
65
|
# expect(chef_run).to delete_link('/tmp').with(link_type: Symbol)
|
66
66
|
#
|
67
|
-
# @example Assert that a +link+ was _not_
|
67
|
+
# @example Assert that a +link+ was _not_ deleted
|
68
68
|
# expect(chef_run).to_not delete_link('/tmp')
|
69
69
|
#
|
70
70
|
#
|
data/lib/chefspec/api/mdadm.rb
CHANGED
@@ -52,19 +52,19 @@ module ChefSpec::API
|
|
52
52
|
# The Examples section demonstrates the different ways to test a
|
53
53
|
# +mdadm+ resource with ChefSpec.
|
54
54
|
#
|
55
|
-
# @example Assert that a +mdadm+ was
|
55
|
+
# @example Assert that a +mdadm+ was created
|
56
56
|
# expect(chef_run).to create_mdadm('/dev/md0')
|
57
57
|
#
|
58
|
-
# @example Assert that a +mdadm+ was
|
58
|
+
# @example Assert that a +mdadm+ was created with predicate matchers
|
59
59
|
# expect(chef_run).to create_mdadm('/dev/md0').with_devices(['/dev/sda'])
|
60
60
|
#
|
61
|
-
# @example Assert that a +mdadm+ was
|
61
|
+
# @example Assert that a +mdadm+ was created with attributes
|
62
62
|
# expect(chef_run).to create_mdadm('/dev/md0').with(devices: ['/dev/sda'])
|
63
63
|
#
|
64
|
-
# @example Assert that a +mdadm+ was
|
64
|
+
# @example Assert that a +mdadm+ was created using a regex
|
65
65
|
# expect(chef_run).to create_mdadm('/dev/md0').with(devices: '/dev/sda')
|
66
66
|
#
|
67
|
-
# @example Assert that a +mdadm+ was _not_
|
67
|
+
# @example Assert that a +mdadm+ was _not_ created
|
68
68
|
# expect(chef_run).to_not create_mdadm('/dev/md0')
|
69
69
|
#
|
70
70
|
#
|
@@ -15,19 +15,19 @@ module ChefSpec::API
|
|
15
15
|
# The Examples section demonstrates the different ways to test a
|
16
16
|
# +remote_directory+ resource with ChefSpec.
|
17
17
|
#
|
18
|
-
# @example Assert that a +remote_directory+ was
|
18
|
+
# @example Assert that a +remote_directory+ was created
|
19
19
|
# expect(chef_run).to create_remote_directory('/tmp')
|
20
20
|
#
|
21
|
-
# @example Assert that a +remote_directory+ was
|
21
|
+
# @example Assert that a +remote_directory+ was created with predicate matchers
|
22
22
|
# expect(chef_run).to create_remote_directory('/tmp').with_overwrite(true)
|
23
23
|
#
|
24
|
-
# @example Assert that a +remote_directory+ was
|
24
|
+
# @example Assert that a +remote_directory+ was created with attributes
|
25
25
|
# expect(chef_run).to create_remote_directory('/tmp').with(overwrite: true)
|
26
26
|
#
|
27
|
-
# @example Assert that a +remote_directory+ was
|
27
|
+
# @example Assert that a +remote_directory+ was created using a regex
|
28
28
|
# expect(chef_run).to create_remote_directory('/tmp').with(overwrite: /true/)
|
29
29
|
#
|
30
|
-
# @example Assert that a +remote_directory+ was _not_
|
30
|
+
# @example Assert that a +remote_directory+ was _not_ created
|
31
31
|
# expect(chef_run).to_not create_remote_directory('/tmp')
|
32
32
|
#
|
33
33
|
#
|
@@ -92,19 +92,19 @@ module ChefSpec::API
|
|
92
92
|
# The Examples section demonstrates the different ways to test a
|
93
93
|
# +remote_directory+ resource with ChefSpec.
|
94
94
|
#
|
95
|
-
# @example Assert that a +remote_directory+ was
|
95
|
+
# @example Assert that a +remote_directory+ was deleted
|
96
96
|
# expect(chef_run).to delete_remote_directory('/tmp')
|
97
97
|
#
|
98
|
-
# @example Assert that a +remote_directory+ was
|
98
|
+
# @example Assert that a +remote_directory+ was deleted with predicate matchers
|
99
99
|
# expect(chef_run).to delete_remote_directory('/tmp').with_overwrite(true)
|
100
100
|
#
|
101
|
-
# @example Assert that a +remote_directory+ was
|
101
|
+
# @example Assert that a +remote_directory+ was deleted with attributes
|
102
102
|
# expect(chef_run).to delete_remote_directory('/tmp').with(overwrite: true)
|
103
103
|
#
|
104
|
-
# @example Assert that a +remote_directory+ was
|
104
|
+
# @example Assert that a +remote_directory+ was deleted using a regex
|
105
105
|
# expect(chef_run).to delete_remote_directory('/tmp').with(overwrite: /true/)
|
106
106
|
#
|
107
|
-
# @example Assert that a +remote_directory+ was _not_
|
107
|
+
# @example Assert that a +remote_directory+ was _not_ deleted
|
108
108
|
# expect(chef_run).to_not delete_remote_directory('/tmp')
|
109
109
|
#
|
110
110
|
#
|
data/lib/chefspec/api/route.rb
CHANGED
@@ -52,19 +52,19 @@ module ChefSpec::API
|
|
52
52
|
# The Examples section demonstrates the different ways to test a
|
53
53
|
# +route+ resource with ChefSpec.
|
54
54
|
#
|
55
|
-
# @example Assert that a +route+ was
|
55
|
+
# @example Assert that a +route+ was deleted
|
56
56
|
# expect(chef_run).to delete_route('10.0.0.10/32')
|
57
57
|
#
|
58
|
-
# @example Assert that a +route+ was
|
58
|
+
# @example Assert that a +route+ was deleted with predicate matchers
|
59
59
|
# expect(chef_run).to delete_route('10.0.0.10/32').with_device('eth0')
|
60
60
|
#
|
61
|
-
# @example Assert that a +route+ was
|
61
|
+
# @example Assert that a +route+ was deleted with attributes
|
62
62
|
# expect(chef_run).to delete_route('10.0.0.10/32').with(device: 'eth0')
|
63
63
|
#
|
64
|
-
# @example Assert that a +route+ was
|
64
|
+
# @example Assert that a +route+ was deleted using a regex
|
65
65
|
# expect(chef_run).to delete_route('10.0.0.10/32').with(device: /eth(\d+)/)
|
66
66
|
#
|
67
|
-
# @example Assert that a +route+ was _not_
|
67
|
+
# @example Assert that a +route+ was _not_ deleted
|
68
68
|
# expect(chef_run).to_not delete_route('10.0.0.10/32')
|
69
69
|
#
|
70
70
|
#
|
data/lib/chefspec/api/user.rb
CHANGED
@@ -15,19 +15,19 @@ module ChefSpec::API
|
|
15
15
|
# The Examples section demonstrates the different ways to test a
|
16
16
|
# +user+ resource with ChefSpec.
|
17
17
|
#
|
18
|
-
# @example Assert that a +user+ was
|
18
|
+
# @example Assert that a +user+ was created
|
19
19
|
# expect(chef_run).to create_user('apache2')
|
20
20
|
#
|
21
|
-
# @example Assert that a +user+ was
|
21
|
+
# @example Assert that a +user+ was created with predicate matchers
|
22
22
|
# expect(chef_run).to create_user('apache2').with_uid(1234)
|
23
23
|
#
|
24
|
-
# @example Assert that a +user+ was
|
24
|
+
# @example Assert that a +user+ was created with attributes
|
25
25
|
# expect(chef_run).to create_user('apache2').with(uid: 1234)
|
26
26
|
#
|
27
|
-
# @example Assert that a +user+ was
|
27
|
+
# @example Assert that a +user+ was created using a regex
|
28
28
|
# expect(chef_run).to create_user('apache2').with(uid: /\d+/)
|
29
29
|
#
|
30
|
-
# @example Assert that a +user+ was _not_
|
30
|
+
# @example Assert that a +user+ was _not_ created
|
31
31
|
# expect(chef_run).to_not create_user('apache2')
|
32
32
|
#
|
33
33
|
#
|
data/lib/chefspec/version.rb
CHANGED
@@ -97,7 +97,7 @@ describe ChefSpec::SoloRunner do
|
|
97
97
|
it 'sets the attributes from fauxhai' do
|
98
98
|
expect(hash['os']).to eq('linux')
|
99
99
|
expect(hash['languages']['ruby']['ruby_bin']).to eq('/usr/local/bin/ruby')
|
100
|
-
expect(hash['os_version']).to eq('3.2.0-
|
100
|
+
expect(hash['os_version']).to eq('3.2.0-92-generic')
|
101
101
|
expect(hash['fqdn']).to eq('fauxhai.local')
|
102
102
|
expect(hash['domain']).to eq('local')
|
103
103
|
expect(hash['ipaddress']).to eq('10.0.0.2')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chefspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Crump
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-12-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: chef
|
@@ -31,14 +31,20 @@ dependencies:
|
|
31
31
|
requirements:
|
32
32
|
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: '
|
34
|
+
version: '3.0'
|
35
|
+
- - ">="
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 3.0.1
|
35
38
|
type: :runtime
|
36
39
|
prerelease: false
|
37
40
|
version_requirements: !ruby/object:Gem::Requirement
|
38
41
|
requirements:
|
39
42
|
- - "~>"
|
40
43
|
- !ruby/object:Gem::Version
|
41
|
-
version: '
|
44
|
+
version: '3.0'
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.0.1
|
42
48
|
- !ruby/object:Gem::Dependency
|
43
49
|
name: rspec
|
44
50
|
requirement: !ruby/object:Gem::Requirement
|
@@ -794,7 +800,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
794
800
|
version: '0'
|
795
801
|
requirements: []
|
796
802
|
rubyforge_project:
|
797
|
-
rubygems_version: 2.
|
803
|
+
rubygems_version: 2.2.3
|
798
804
|
signing_key:
|
799
805
|
specification_version: 4
|
800
806
|
summary: Write RSpec examples and generate coverage reports for Chef recipes!
|