postmark 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +2 -1
- data/Rakefile +6 -0
- data/VERSION +1 -1
- data/postmark.gemspec +8 -2
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -23,8 +23,9 @@ Then
|
|
23
23
|
Postmark.api_key = "your-api-key"
|
24
24
|
|
25
25
|
message = TMail::Mail.new
|
26
|
+
# make sure you have a sender signature with that email
|
26
27
|
message.from = "leonard@bigbangtheory.com"
|
27
|
-
message.to = "Sheldon Cooper
|
28
|
+
message.to = "Sheldon Cooper <sheldon@bigbangtheory.com>"
|
28
29
|
message.subject = "Hi Sheldon!"
|
29
30
|
message.content_type = "text/html"
|
30
31
|
message.body = "Hello my friend!"
|
data/Rakefile
CHANGED
@@ -14,6 +14,12 @@ begin
|
|
14
14
|
gem.add_development_dependency "cucumber"
|
15
15
|
gem.add_dependency "tmail"
|
16
16
|
gem.files << "lib/postmark/tmail_mail_extension.rb"
|
17
|
+
gem.post_install_message = %q[
|
18
|
+
==================
|
19
|
+
Thanks for installing the postmark gem. If you don't have an account, please sign up at http://postmarkapp.com/.
|
20
|
+
Review the README.rdoc for implementation details and examples.
|
21
|
+
==================
|
22
|
+
]
|
17
23
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
18
24
|
end
|
19
25
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.2
|
data/postmark.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{postmark}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Petyo Ivanov"]
|
12
|
-
s.date = %q{2009-11-
|
12
|
+
s.date = %q{2009-11-19}
|
13
13
|
s.description = %q{Ruby gem for sending emails through http://postmarkapp.com HTTP API. It relieas on TMail::Mail for message construction.}
|
14
14
|
s.email = %q{underlog@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -36,6 +36,12 @@ Gem::Specification.new do |s|
|
|
36
36
|
"spec/spec_helper.rb"
|
37
37
|
]
|
38
38
|
s.homepage = %q{http://postmarkapp.com}
|
39
|
+
s.post_install_message = %q{
|
40
|
+
==================
|
41
|
+
Thanks for installing the postmark gem. If you don't have an account, please sign up at http://postmarkapp.com/.
|
42
|
+
Review the README.rdoc for implementation details and examples.
|
43
|
+
==================
|
44
|
+
}
|
39
45
|
s.rdoc_options = ["--charset=UTF-8"]
|
40
46
|
s.require_paths = ["lib"]
|
41
47
|
s.rubygems_version = %q{1.3.5}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: postmark
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Petyo Ivanov
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-11-
|
12
|
+
date: 2009-11-19 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -72,7 +72,7 @@ has_rdoc: true
|
|
72
72
|
homepage: http://postmarkapp.com
|
73
73
|
licenses: []
|
74
74
|
|
75
|
-
post_install_message:
|
75
|
+
post_install_message: "\n ==================\n Thanks for installing the postmark gem. If you don't have an account, please sign up at http://postmarkapp.com/.\n Review the README.rdoc for implementation details and examples.\n ==================\n "
|
76
76
|
rdoc_options:
|
77
77
|
- --charset=UTF-8
|
78
78
|
require_paths:
|