messagepub 0.0.2 → 0.0.3
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/Rakefile +1 -1
- data/lib/messagepub/client.rb +8 -0
- data/lib/messagepub.rb +1 -1
- metadata +30 -9
data/Rakefile
CHANGED
@@ -9,7 +9,7 @@ $hoe = Hoe.new('messagepub', Messagepub::VERSION) do |p|
|
|
9
9
|
p.post_install_message = 'PostInstall.txt'
|
10
10
|
p.rubyforge_name = p.name # TODO this is default value
|
11
11
|
p.extra_deps = [
|
12
|
-
['httparty','>= 0.3
|
12
|
+
['httparty','>= 0.4.3'],
|
13
13
|
]
|
14
14
|
p.extra_dev_deps = [
|
15
15
|
['newgem', ">= #{::Newgem::VERSION}"]
|
data/lib/messagepub/client.rb
CHANGED
@@ -73,6 +73,14 @@ module MessagePub
|
|
73
73
|
new_note
|
74
74
|
end
|
75
75
|
|
76
|
+
# Cancel the notification for the unique id specified.
|
77
|
+
# Returns true if the notification was cancelled, false otherwise.
|
78
|
+
# <tt>cancelled = client.cancel_notification(4)</tt>
|
79
|
+
def cancel(id)
|
80
|
+
response = self.class.delete("/notifications/" + id.to_s + ".xml")
|
81
|
+
response.is_a?(Hash) && response.empty?
|
82
|
+
end
|
83
|
+
|
76
84
|
# Creates a new notification.
|
77
85
|
#
|
78
86
|
# <tt>note = MessagePub::Notification.new</tt>
|
data/lib/messagepub.rb
CHANGED
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.3
|
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-07-13 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 0.3
|
23
|
+
version: 0.4.3
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: newgem
|
@@ -42,7 +42,29 @@ dependencies:
|
|
42
42
|
- !ruby/object:Gem::Version
|
43
43
|
version: 1.8.0
|
44
44
|
version:
|
45
|
-
description:
|
45
|
+
description: |-
|
46
|
+
* MessagePub is a dead-simple messaging API that you can start using for your applications in less than 5 minutes.
|
47
|
+
|
48
|
+
|
49
|
+
* Register for an API Key at http://messagepub.com
|
50
|
+
|
51
|
+
|
52
|
+
* Support for the following platforms: Twitter, Google Chat, AIM, Email, Phone, and SMS.
|
53
|
+
|
54
|
+
|
55
|
+
* Reach out to one person in multiple ways.
|
56
|
+
|
57
|
+
|
58
|
+
* Helper libraries in multiple languages.
|
59
|
+
|
60
|
+
|
61
|
+
* Schedule a message to be delivered in the future.
|
62
|
+
|
63
|
+
|
64
|
+
* Set up an escalation schedule.
|
65
|
+
|
66
|
+
|
67
|
+
* For more documentation on MessagePub, go to http://messagepub.com/documentation
|
46
68
|
email:
|
47
69
|
- luc.castera@gmail.com
|
48
70
|
executables: []
|
@@ -65,16 +87,15 @@ files:
|
|
65
87
|
- lib/messagepub/recipient.rb
|
66
88
|
- lib/messagepub/notification.rb
|
67
89
|
- lib/messagepub/client.rb
|
68
|
-
- script/
|
69
90
|
- script/console
|
70
91
|
- script/destroy
|
71
92
|
- script/generate
|
72
|
-
- tasks/
|
73
|
-
- test/
|
74
93
|
- test/test_helper.rb
|
75
94
|
- test/test_messagepub.rb
|
76
95
|
has_rdoc: true
|
77
96
|
homepage: "Website: http://messagepub.com"
|
97
|
+
licenses: []
|
98
|
+
|
78
99
|
post_install_message: PostInstall.txt
|
79
100
|
rdoc_options:
|
80
101
|
- --main
|
@@ -96,9 +117,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
117
|
requirements: []
|
97
118
|
|
98
119
|
rubyforge_project: messagepub
|
99
|
-
rubygems_version: 1.3.
|
120
|
+
rubygems_version: 1.3.2
|
100
121
|
signing_key:
|
101
|
-
specification_version:
|
122
|
+
specification_version: 3
|
102
123
|
summary: "* MessagePub is a dead-simple messaging API that you can start using for your applications in less than 5 minutes"
|
103
124
|
test_files:
|
104
125
|
- test/test_messagepub.rb
|