action_messager 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 CHANGED
@@ -28,10 +28,19 @@ Then, wherever you'd like to send the notification:
28
28
 
29
29
  That's it!
30
30
 
31
+ == Configuration
32
+
33
+ You'll need to configure ActionMessager with your jabber credentials.
34
+
35
+ ActionMessager::Base.jabber_settings = {
36
+ :username => 'somebody@somejabberserver.com',
37
+ :password => 'swordfish!'
38
+ }
39
+
31
40
  == Credits
32
41
 
33
42
  ActionMessager was created, and is maintained by {James Golick}[http://jamesgolick.com].
34
43
 
35
44
  == License
36
45
 
37
- ActionMessager is Copyright (c) 2008 James Golick, GiraffeSoft, Inc. It is released under the {MIT License}[http://en.wikipedia.org/wiki/MIT_License]
46
+ ActionMessager is Copyright (c) 2008 James Golick, GiraffeSoft Inc. It is released under the {MIT License}[http://en.wikipedia.org/wiki/MIT_License]
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require File.dirname(__FILE__)+'/lib/action_messager'
@@ -2,7 +2,7 @@ module ActionMessager
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
 
@@ -18,7 +18,7 @@ spec = Gem::Specification.new do |s|
18
18
  s.add_dependency 'xmpp4r-simple', '>= 0.8.7'
19
19
  s.add_dependency 'json_pure', '>= 0.8.7'
20
20
 
21
- s.files = %w(LICENSE README Rakefile) +
21
+ s.files = %w(LICENSE README Rakefile init.rb) +
22
22
  Dir.glob("{lib,test,tasks}/**/*")
23
23
 
24
24
  s.require_path = "lib"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: action_messager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Golick
@@ -51,6 +51,7 @@ files:
51
51
  - LICENSE
52
52
  - README
53
53
  - Rakefile
54
+ - init.rb
54
55
  - lib/action_messager
55
56
  - lib/action_messager/base.rb
56
57
  - lib/action_messager/version.rb