chef-handler-serverspec 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. checksums.yaml +4 -4
  2. metadata +42 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5dbf0297b44f71aeaf43906781c346867f85f5cf
4
- data.tar.gz: d948939e46fe07c03879cc788fba9dbb60ad15ee
3
+ metadata.gz: 0d7b54785a9cc07f83c1fc8301c13451de9776b8
4
+ data.tar.gz: 08250e0f49e23137e1f45a39f5fc43b9d2022ee1
5
5
  SHA512:
6
- metadata.gz: b0024d5704917d453cd863354b1086c804d604601943127b56876b33ee9db831337976610f928690266cf2392c5714b198efbf08b70a7045162bb18d1a077475
7
- data.tar.gz: efe2f01604341eb00377a3d55733635f74115434eeb3646ffd96065a448e003bc3aaef0fa88d4294f35587498a7c51e27fb391d6408aa505b0b9778e75c1ed12
6
+ metadata.gz: a3e5a3e380011dac930092c30f4bd067f15cbf9d72f332dfdfecb7fbcebd05a0bb212ad3c2daa82ee75249c83a6cf190b621821845639779a5d83966a36c74ac
7
+ data.tar.gz: a9bfba2a1aaeadd2c24f3e143f5d2e35cd841797d164ec5986f01ea830e45d1c30f8ece8f83e4e5bff28375dd7064c0751d621d3d35531b4b98ccd953bd5e6a8
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-handler-serverspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Coelho
@@ -10,7 +10,46 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2016-06-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Chef report handler
13
+ description: |
14
+ # chef-handler-serverspec
15
+
16
+ Sometimes you inherit a chef infrastructure without any test.
17
+
18
+ How to improve with less amount of effort?
19
+
20
+ Just add this handler, run chef-client and collect the tests
21
+
22
+ # Configuration
23
+
24
+ ## client.rb
25
+
26
+ ```ruby
27
+ require 'chef/handler/serverspec'
28
+ report_handlers << Chef::Handler::Serverspec.new
29
+ ```
30
+
31
+ ## chef_handler cookbook
32
+
33
+ ```ruby
34
+ chef_gem 'chef-handler-serverspec' do
35
+ compile_time false
36
+ action :install
37
+ end
38
+
39
+ chef_handler 'Chef::Handler::Serverspec' do
40
+ source 'chef/handler/serverspec'
41
+ action :enable
42
+ supports report: true
43
+ end
44
+ ```
45
+
46
+ # Thanks
47
+
48
+ Thank you [tily](https://github.com/tily/chef-serverspec-handler) for the original idea.
49
+
50
+ # Author Information
51
+
52
+ [jacoelho](https://www.jacoelho.com)
14
53
  email: jose.alberto.coelho@gmail.com
15
54
  executables: []
16
55
  extensions: []
@@ -30,7 +69,7 @@ files:
30
69
  - lib/chef/handler/resources/template.rb
31
70
  - lib/chef/handler/resources/user.rb
32
71
  - lib/chef/handler/serverspec.rb
33
- homepage: http://github.com/jacoelho
72
+ homepage: https://github.com/jacoelho/serverspec-chef-handler
34
73
  licenses:
35
74
  - MIT
36
75
  metadata: {}