padrino-mailer 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +2 -2
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/padrino-mailer.gemspec +4 -8
- data/test/helper.rb +0 -5
- metadata +3 -5
- data/test/active_support_helpers.rb +0 -7
data/README.rdoc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
= padrino-mailer
|
2
2
|
|
3
3
|
This component uses an enhanced version of the excellent <tt>pony</tt> library (vendored) for a powerful but simple
|
4
|
-
mailer system within Sinatra. There is full support for using an html content type as well as for file attachments.
|
4
|
+
mailer system within Padrino (and Sinatra). There is full support for using an html content type as well as for file attachments.
|
5
5
|
The MailerPlugin has many similarities to ActionMailer but is much lighterweight and (arguably) easier to use.
|
6
6
|
|
7
7
|
== Installation
|
@@ -11,7 +11,7 @@ To install the 'full-stack' padrino framework, simply grab the latest version fr
|
|
11
11
|
$ sudo gem install padrino --source http://gemcutter.org
|
12
12
|
|
13
13
|
This will install the necessary padrino gems to get you started.
|
14
|
-
Now you are ready to use this gem to enhance your
|
14
|
+
Now you are ready to use this gem to enhance your existing Sinatra projects or build new Padrino applications.
|
15
15
|
|
16
16
|
You can also install only the padrino-mailer gem for more fine-grained use:
|
17
17
|
|
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ begin
|
|
8
8
|
gem.summary = "Mailer system for padrino"
|
9
9
|
gem.description = "Mailer system for padrino allowing easy delivery of application emails"
|
10
10
|
gem.email = "nesquena@gmail.com"
|
11
|
-
gem.homepage = "http://github.com/padrino/padrino-mailer"
|
11
|
+
gem.homepage = "http://github.com/padrino/padrino-framework/tree/master/padrino-mailer"
|
12
12
|
gem.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
|
13
13
|
gem.add_runtime_dependency "sinatra", ">= 0.9.2"
|
14
14
|
gem.add_runtime_dependency "padrino-core", ">= 0.1.1"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/padrino-mailer.gemspec
CHANGED
@@ -5,24 +5,21 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{padrino-mailer}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.4"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
|
12
|
-
s.date = %q{2009-11-
|
12
|
+
s.date = %q{2009-11-23}
|
13
13
|
s.description = %q{Mailer system for padrino allowing easy delivery of application emails}
|
14
14
|
s.email = %q{nesquena@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
|
-
"
|
17
|
-
"README.rdoc"
|
16
|
+
"README.rdoc"
|
18
17
|
]
|
19
18
|
s.files = [
|
20
19
|
".document",
|
21
20
|
".gitignore",
|
22
21
|
"LICENSE",
|
23
22
|
"README.rdoc",
|
24
|
-
"README.rdoc",
|
25
|
-
"Rakefile",
|
26
23
|
"Rakefile",
|
27
24
|
"VERSION",
|
28
25
|
"lib/padrino-mailer.rb",
|
@@ -30,7 +27,6 @@ Gem::Specification.new do |s|
|
|
30
27
|
"lib/padrino-mailer/delivery.rb",
|
31
28
|
"lib/padrino-mailer/mail_object.rb",
|
32
29
|
"padrino-mailer.gemspec",
|
33
|
-
"test/active_support_helpers.rb",
|
34
30
|
"test/fixtures/mailer_app/app.rb",
|
35
31
|
"test/fixtures/mailer_app/views/demo_mailer/sample_mail.erb",
|
36
32
|
"test/fixtures/mailer_app/views/sample_mailer/anniversary_message.erb",
|
@@ -40,7 +36,7 @@ Gem::Specification.new do |s|
|
|
40
36
|
"test/test_mailer_base.rb",
|
41
37
|
"test/test_padrino_mailer.rb"
|
42
38
|
]
|
43
|
-
s.homepage = %q{http://github.com/padrino/padrino-mailer}
|
39
|
+
s.homepage = %q{http://github.com/padrino/padrino-framework/tree/master/padrino-mailer}
|
44
40
|
s.rdoc_options = ["--charset=UTF-8"]
|
45
41
|
s.require_paths = ["lib"]
|
46
42
|
s.rubygems_version = %q{1.3.5}
|
data/test/helper.rb
CHANGED
@@ -7,14 +7,9 @@ require 'webrat'
|
|
7
7
|
|
8
8
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
9
9
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
10
|
-
require 'active_support_helpers'
|
11
|
-
require 'padrino-helpers'
|
12
10
|
require 'padrino-mailer'
|
13
11
|
|
14
12
|
class Test::Unit::TestCase
|
15
|
-
include Padrino::Helpers::OutputHelpers
|
16
|
-
include Padrino::Helpers::TagHelpers
|
17
|
-
include Padrino::Helpers::AssetTagHelpers
|
18
13
|
include Rack::Test::Methods
|
19
14
|
include Webrat::Methods
|
20
15
|
include Webrat::Matchers
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: padrino-mailer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Padrino Team
|
@@ -12,7 +12,7 @@ autorequire:
|
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
14
|
|
15
|
-
date: 2009-11-
|
15
|
+
date: 2009-11-23 00:00:00 -08:00
|
16
16
|
default_executable:
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
@@ -102,7 +102,6 @@ executables: []
|
|
102
102
|
extensions: []
|
103
103
|
|
104
104
|
extra_rdoc_files:
|
105
|
-
- LICENSE
|
106
105
|
- README.rdoc
|
107
106
|
files:
|
108
107
|
- .document
|
@@ -116,7 +115,6 @@ files:
|
|
116
115
|
- lib/padrino-mailer/delivery.rb
|
117
116
|
- lib/padrino-mailer/mail_object.rb
|
118
117
|
- padrino-mailer.gemspec
|
119
|
-
- test/active_support_helpers.rb
|
120
118
|
- test/fixtures/mailer_app/app.rb
|
121
119
|
- test/fixtures/mailer_app/views/demo_mailer/sample_mail.erb
|
122
120
|
- test/fixtures/mailer_app/views/sample_mailer/anniversary_message.erb
|
@@ -126,7 +124,7 @@ files:
|
|
126
124
|
- test/test_mailer_base.rb
|
127
125
|
- test/test_padrino_mailer.rb
|
128
126
|
has_rdoc: true
|
129
|
-
homepage: http://github.com/padrino/padrino-mailer
|
127
|
+
homepage: http://github.com/padrino/padrino-framework/tree/master/padrino-mailer
|
130
128
|
licenses: []
|
131
129
|
|
132
130
|
post_install_message:
|