postmark-rails 0.1.1 → 0.1.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/Rakefile +7 -0
- data/VERSION +1 -1
- data/postmark-rails.gemspec +9 -3
- metadata +4 -4
data/Rakefile
CHANGED
@@ -12,6 +12,13 @@ begin
|
|
12
12
|
gem.authors = ["Petyo Ivanov"]
|
13
13
|
gem.add_development_dependency "rspec"
|
14
14
|
gem.add_dependency 'postmark'
|
15
|
+
|
16
|
+
gem.post_install_message = %q[
|
17
|
+
==================
|
18
|
+
Thanks for installing the postmark-rails gem. If you don't have an account, please sign up at http://postmarkapp.com/.
|
19
|
+
Review the README.rdoc for implementation details and examples.
|
20
|
+
==================
|
21
|
+
]
|
15
22
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
23
|
end
|
17
24
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/postmark-rails.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
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.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-17}
|
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 = [
|
@@ -34,9 +34,15 @@ Gem::Specification.new do |s|
|
|
34
34
|
"spec/spec_helper.rb"
|
35
35
|
]
|
36
36
|
s.homepage = %q{http://postmarkapp.com}
|
37
|
+
s.post_install_message = %q{
|
38
|
+
==================
|
39
|
+
Thanks for installing the postmark-rails gem. If you don't have an account, please sign up at http://postmarkapp.com/.
|
40
|
+
Review the README.rdoc for implementation details and examples.
|
41
|
+
==================
|
42
|
+
}
|
37
43
|
s.rdoc_options = ["--charset=UTF-8"]
|
38
44
|
s.require_paths = ["lib"]
|
39
|
-
s.rubygems_version = %q{1.3.
|
45
|
+
s.rubygems_version = %q{1.3.5}
|
40
46
|
s.summary = %q{Postmark adapter for ActionMailer}
|
41
47
|
s.test_files = [
|
42
48
|
"spec/fixtures/models/test_mailer.rb",
|
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.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-17 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -61,7 +61,7 @@ has_rdoc: true
|
|
61
61
|
homepage: http://postmarkapp.com
|
62
62
|
licenses: []
|
63
63
|
|
64
|
-
post_install_message:
|
64
|
+
post_install_message: "\n ==================\n Thanks for installing the postmark-rails 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 "
|
65
65
|
rdoc_options:
|
66
66
|
- --charset=UTF-8
|
67
67
|
require_paths:
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements: []
|
82
82
|
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 1.3.
|
84
|
+
rubygems_version: 1.3.5
|
85
85
|
signing_key:
|
86
86
|
specification_version: 3
|
87
87
|
summary: Postmark adapter for ActionMailer
|