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 CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.0.2 2009-04-14
2
+
3
+ * 1 major enhancement:
4
+ * Added support for notification subjects (for email only)
5
+
1
6
  == 0.0.1 2009-03-06
2
7
 
3
8
  * 1 major enhancement:
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 = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
20
+ p.remote_rdoc_dir = ''
21
21
  p.rsync_args = '-av --delete --ignore-errors'
22
22
  end
23
23
 
data/lib/messagepub.rb CHANGED
@@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module Messagepub
5
- VERSION = '0.0.1'
5
+ VERSION = '0.0.2'
6
6
  end
7
7
 
8
8
  require 'rubygems'
@@ -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.1
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-03-09 00:00:00 -04:00
12
+ date: 2009-04-14 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency