postmark-rails 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +9 -4
- data/VERSION +1 -1
- data/postmark-rails.gemspec +5 -4
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -14,20 +14,25 @@ Then
|
|
14
14
|
|
15
15
|
== Example
|
16
16
|
|
17
|
-
|
17
|
+
config/environment.rb
|
18
18
|
|
19
19
|
Rails::Initializer.run do |config|
|
20
20
|
|
21
21
|
config.gem 'postmark-rails'
|
22
22
|
require 'postmark-rails'
|
23
|
-
config.action_mailer.delivery_method = :postmark
|
24
23
|
config.action_mailer.postmark_api_key = "your-api-key"
|
25
24
|
# ...
|
26
25
|
end
|
27
26
|
|
27
|
+
The, make postmark the delivery method for the production environment:
|
28
|
+
|
29
|
+
config/environments/production.rb
|
30
|
+
|
31
|
+
config.action_mailer.delivery_method = :postmark
|
32
|
+
|
28
33
|
== Limitations
|
29
|
-
|
30
|
-
|
34
|
+
|
35
|
+
Currently postmark API does not support multiple recipients, or attachments. For more information, check the docs at http://developer.postmarkapp.com.
|
31
36
|
|
32
37
|
== Requirements
|
33
38
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
data/postmark-rails.gemspec
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{postmark-rails}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.3"
|
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{
|
12
|
+
s.date = %q{2010-01-25}
|
13
13
|
s.description = %q{Use this plugin in your rails applications to send emails through the Postmark API}
|
14
14
|
s.email = %q{underlog@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -66,3 +66,4 @@ Gem::Specification.new do |s|
|
|
66
66
|
s.add_dependency(%q<postmark>, [">= 0"])
|
67
67
|
end
|
68
68
|
end
|
69
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: postmark-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
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:
|
12
|
+
date: 2010-01-25 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|