chef-jabber-snitch 0.0.1 → 0.0.2

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.
data/README.org CHANGED
@@ -17,9 +17,8 @@ Append the following to your Chef client configs, usually at =/etc/chef/client.r
17
17
  : jabber_to = "nick@gmail.com"
18
18
  : github_user = "foobar"
19
19
  : github_token = "asKkwqofovX3shBmtMf8EWhDzSr7ouUb"
20
- : enable_ssl = true
21
20
  :
22
- : jabber_handler = JabberSnitch.new(jabber_user, jabber_password, jabber_server, jabber_to, github_user, github_token)
21
+ : jabber_handler = JabberSnitch.new(jabber_user, jabber_password, jabber_to, github_user, github_token, jabber_server)
23
22
  : exception_handlers << jabber_handler
24
23
 
25
24
  * License
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "chef-jabber-snitch"
3
- s.version = "0.0.1"
3
+ s.version = "0.0.2"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.authors = ["Alice Kaerast"]
6
6
  s.email = ["alice.kaerast@webanywhere.co.uk"]
@@ -9,7 +9,7 @@ include Jabber
9
9
 
10
10
  class JabberSnitch < Chef::Handler
11
11
 
12
- def initialize(jabber_user, jabber_password, jabber_server = 'talk.google.com', jabber_to, github_user, github_token)
12
+ def initialize(jabber_user, jabber_password, jabber_to, github_user, github_token, jabber_server = 'talk.google.com')
13
13
  @jabber_user = jabber_user
14
14
  @jabber_password = jabber_password
15
15
  @jabber_server = jabber_server
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-jabber-snitch
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alice Kaerast