messagepub 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/History.txt +5 -0
- data/Rakefile +1 -1
- data/lib/messagepub.rb +1 -1
- data/lib/messagepub/client.rb +2 -0
- data/lib/messagepub/notification.rb +5 -0
- metadata +2 -2
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -17,7 +17,7 @@ $hoe = Hoe.new('messagepub', Messagepub::VERSION) do |p|
|
|
17
17
|
|
18
18
|
p.clean_globs |= %w[**/.DS_Store tmp *.log]
|
19
19
|
path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
|
20
|
-
p.remote_rdoc_dir =
|
20
|
+
p.remote_rdoc_dir = ''
|
21
21
|
p.rsync_args = '-av --delete --ignore-errors'
|
22
22
|
end
|
23
23
|
|
data/lib/messagepub.rb
CHANGED
data/lib/messagepub/client.rb
CHANGED
@@ -36,6 +36,7 @@ module MessagePub
|
|
36
36
|
notifications_array = []
|
37
37
|
response['notifications'].each do |note|
|
38
38
|
new_note = Notification.new(:body => note["body"],
|
39
|
+
:subject => note["subject"],
|
39
40
|
:send_at => note["send_at"],
|
40
41
|
:id => note["id"],
|
41
42
|
:escalation => note["escalation"])
|
@@ -58,6 +59,7 @@ module MessagePub
|
|
58
59
|
response = self.class.get("/notifications/" + id.to_s + ".xml")
|
59
60
|
note = response["notification"]
|
60
61
|
new_note = Notification.new( :body => note["body"],
|
62
|
+
:subject => note["subject"],
|
61
63
|
:id => note["id"],
|
62
64
|
:send_at => note["send_at"],
|
63
65
|
:escalation => note["escalation"])
|
@@ -7,6 +7,9 @@ module MessagePub
|
|
7
7
|
# The body of the message to send.
|
8
8
|
attr_accessor :body
|
9
9
|
|
10
|
+
# The subject of the message to send (for emails only)
|
11
|
+
attr_accessor :subject
|
12
|
+
|
10
13
|
# The amount of time (in minutes) to wait before sending to the next recipient in the list.
|
11
14
|
attr_accessor :escalation
|
12
15
|
|
@@ -26,6 +29,7 @@ module MessagePub
|
|
26
29
|
|
27
30
|
def initialize(options={})
|
28
31
|
@body = options[:body]
|
32
|
+
@subject = options[:subject]
|
29
33
|
@escalation = options[:escalation]
|
30
34
|
@postback_url = options[:postback_url]
|
31
35
|
@send_at = options[:send_at]
|
@@ -41,6 +45,7 @@ module MessagePub
|
|
41
45
|
def to_xml
|
42
46
|
value = '<notification>'
|
43
47
|
value += '<body>' + self.body + '</body>'
|
48
|
+
value += '<subject>' + self.subject + '</subject>' unless self.subject.blank?
|
44
49
|
value += '<escalation>' + self.escalation.to_s + '</escalation>' if self.escalation
|
45
50
|
value += '<postback_url>' + self.postback_url + '</postback_url>' if self.postback_url
|
46
51
|
value += '<send_at>' + self.send_at + '</send_at>' if self.send_at
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: messagepub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luc Castera
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-04-14 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|