chef-handler-slnky 0.1.1 → 0.1.2

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: c4b660bb668e8a2f95822f65f59259cc90546b49
4
- data.tar.gz: 6e89ce9df43e5a28a6e8be8305df15c8ed092b1d
3
+ metadata.gz: 0f84a23c80e0f8df32b75086e92d83502a5e25db
4
+ data.tar.gz: 50e67b1edda751bd9cb7be31da4e5f28288146ba
5
5
  SHA512:
6
- metadata.gz: 17e9a618065680b36f4d7c1d0c324a61847a80324e3343e0d7ac695e19cc44194f4c71e66f1efb1f9b2676b46e81dfcbab1ce04b4081eb41098c9987669b6e81
7
- data.tar.gz: e3ad44a70688dc31a15e891494021889381da6f4cc9ca745f7194ceec8c3745754144b0d9b99303cf0a46d4832f8da3299fb708af56d55a660eed17c114c9578
6
+ metadata.gz: d8c8e877a4ad738f696ef8c8713cd1e17be6213091769d5e7a7aaffe238b1dcb351a29d872ccd17c2b65dc33dcc4e17c8730cbb676fee4eec05487287352dd56
7
+ data.tar.gz: 0953c5a2381fd9cf52c07287f02cf05a082afcceb757406db7413cf172c65a2ce0a94fd6b96ce053e789c407512bb3dcf41f0a7f1b768ee58a1d9c5c2ae66905
data/README.md CHANGED
@@ -29,8 +29,8 @@ Then add to the configuration (`/etc/chef/solo.rb` for chef-solo or
29
29
  `/etc/chef/client.rb` for chef-client):
30
30
 
31
31
  require "chef/handler/slnky"
32
- report_handlers << Chef::Handler::Slnky.new
33
- exception_handlers << Chef::Handler::Slnky.new
32
+ report_handlers << Chef::Handler::SlnkyHandler.new
33
+ exception_handlers << Chef::Handler::SlnkyHandler.new
34
34
 
35
35
  ### Method 2
36
36
 
@@ -43,7 +43,7 @@ Create a recipe with the following:
43
43
  node.set['slnky']['url']
44
44
 
45
45
  # Then activate the handler with the `chef_handler` LWRP
46
- chef_handler "Chef::Handler::Slnky" do
46
+ chef_handler "Chef::Handler::SlnkyHandler" do
47
47
  source "chef/handler/slnky"
48
48
  action :enable
49
49
  end
@@ -4,7 +4,7 @@ require 'slnky'
4
4
 
5
5
  class Chef
6
6
  class Handler
7
- class Slnky < Chef::Handler
7
+ class SlnkyHandler < Chef::Handler
8
8
 
9
9
  def report
10
10
  event = "chef.run.#{run_status.success? ? 'success' : 'failure'}"
@@ -1,7 +1,7 @@
1
1
  class Chef
2
2
  class Handler
3
3
  class Slnky
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-handler-slnky
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shawn Catanzarite