mattpuchlerz-rjab 0.2.0 → 0.2.1
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.markdown +9 -8
- data/VERSION +1 -1
- data/lib/jabbify/comet.rb +0 -1
- data/rjab.gemspec +2 -2
- metadata +2 -2
data/README.markdown
CHANGED
@@ -27,7 +27,7 @@ If you only make one message delivery in your app, you might find it easiest to
|
|
27
27
|
:to => 'Jane Doe',
|
28
28
|
)
|
29
29
|
|
30
|
-
More commonly, you will instantiate an instance of `Jabbify::Comet` with a few customized attributes. Then you can just call `#deliver` whenever you're ready, passing in a couple more attributes which will *only be used during the delivery*:
|
30
|
+
More commonly, you will instantiate an instance of `Jabbify::Comet` with a few customized attributes. Keep in mind that there a few [default attributes][rjab_default_attributes] set for you. Then you can just call `#deliver` whenever you're ready, passing in a couple more attributes which will *only be used during the delivery*:
|
31
31
|
|
32
32
|
custom_attributes = {
|
33
33
|
:api_key => 'YourApiKeyGoesHere',
|
@@ -45,7 +45,7 @@ More commonly, you will instantiate an instance of `Jabbify::Comet` with a few c
|
|
45
45
|
Default Attributes on the `Jabbify::Comet` Class
|
46
46
|
------------------------------------------------
|
47
47
|
|
48
|
-
<table>
|
48
|
+
<table id="rjab_default_attributes">
|
49
49
|
<thead>
|
50
50
|
<tr>
|
51
51
|
<th>Attribute</th>
|
@@ -62,17 +62,17 @@ Default Attributes on the `Jabbify::Comet` Class
|
|
62
62
|
<tr>
|
63
63
|
<td><code>:api_key</code></td>
|
64
64
|
<td><code>nil</code></td>
|
65
|
-
<td>The API key provided to you when you sign up with Jabbify.</td>
|
65
|
+
<td><em>Required.</em> The API key provided to you when you sign up with Jabbify.</td>
|
66
66
|
</tr>
|
67
67
|
<tr>
|
68
|
-
<td><code>:message</code></td>
|
68
|
+
<td><code>:message</code></td>
|
69
69
|
<td><code>nil</code></td>
|
70
|
-
<td>The message to deliver to the Comet server.</td>
|
70
|
+
<td><em>Required.</em> The message to deliver to the Comet server.</td>
|
71
71
|
</tr>
|
72
72
|
<tr>
|
73
73
|
<td><code>:name</code></td>
|
74
74
|
<td><code>'Server'</code></td>
|
75
|
-
<td>The sender of the message.</td>
|
75
|
+
<td><em>Required.</em> The sender of the message.</td>
|
76
76
|
</tr>
|
77
77
|
<tr>
|
78
78
|
<td><code>:to</code></td>
|
@@ -89,5 +89,6 @@ Default Attributes on the `Jabbify::Comet` Class
|
|
89
89
|
|
90
90
|
|
91
91
|
|
92
|
-
[jabbify]:
|
93
|
-
[jabbify_comet]:
|
92
|
+
[jabbify]: http://jabbify.com
|
93
|
+
[jabbify_comet]: https://jabbify.com/home/comet_service
|
94
|
+
[rjab_default_attributes]: #rjab_default_attributes
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
data/lib/jabbify/comet.rb
CHANGED
data/rjab.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{rjab}
|
5
|
-
s.version = "0.2.
|
5
|
+
s.version = "0.2.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Matt Puchlerz"]
|
9
|
-
s.date = %q{2009-05-
|
9
|
+
s.date = %q{2009-05-24}
|
10
10
|
s.description = %q{A Ruby library for interacting with Jabbify. Simplifies the process of delivering messages to Jabbify's Comet server.}
|
11
11
|
s.email = %q{matt@puchlerz.com}
|
12
12
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mattpuchlerz-rjab
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Puchlerz
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-05-
|
12
|
+
date: 2009-05-24 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|