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 +1 -2
- data/chef-jabber-snitch.gemspec +1 -1
- data/lib/chef-jabber-snitch.rb +1 -1
- metadata +3 -3
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,
|
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
|
data/chef-jabber-snitch.gemspec
CHANGED
data/lib/chef-jabber-snitch.rb
CHANGED
@@ -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'
|
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:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Alice Kaerast
|