ar_mailer 1.3.2 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/History.txt +5 -0
- data/lib/action_mailer/ar_mailer.rb +15 -1
- data/lib/action_mailer/ar_sendmail.rb +1 -1
- metadata +3 -3
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/History.txt
CHANGED
@@ -32,7 +32,7 @@ require 'action_mailer'
|
|
32
32
|
# @@ -1,4 +1,4 @@
|
33
33
|
# -class Emailer < ActionMailer::Base
|
34
34
|
# +class Emailer < ActionMailer::ARMailer
|
35
|
-
#
|
35
|
+
#
|
36
36
|
# def comment_notification(comment)
|
37
37
|
# from comment.author.email
|
38
38
|
#
|
@@ -88,6 +88,20 @@ class ActionMailer::ARMailer < ActionMailer::Base
|
|
88
88
|
@email_class = klass
|
89
89
|
end
|
90
90
|
|
91
|
+
##
|
92
|
+
# Hack around class_inheritable_accessor being lame
|
93
|
+
|
94
|
+
def self.view_paths # :nodoc:
|
95
|
+
superclass.view_paths
|
96
|
+
end
|
97
|
+
|
98
|
+
##
|
99
|
+
# Hack around class_inheritable_accessor being lame
|
100
|
+
|
101
|
+
def self.view_paths=(path) # :nodoc:
|
102
|
+
superclass.view_paths = path
|
103
|
+
end
|
104
|
+
|
91
105
|
##
|
92
106
|
# Adds +mail+ to the Email table. Only the first From address for +mail+ is
|
93
107
|
# used.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ar_mailer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Hodel
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
30
30
|
x52qPcexcYZR7w==
|
31
31
|
-----END CERTIFICATE-----
|
32
32
|
|
33
|
-
date: 2009-
|
33
|
+
date: 2009-06-01 00:00:00 -07:00
|
34
34
|
default_executable:
|
35
35
|
dependencies:
|
36
36
|
- !ruby/object:Gem::Dependency
|
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
108
|
requirements: []
|
109
109
|
|
110
110
|
rubyforge_project: seattlerb
|
111
|
-
rubygems_version: 1.3.
|
111
|
+
rubygems_version: 1.3.4.2217
|
112
112
|
signing_key:
|
113
113
|
specification_version: 3
|
114
114
|
summary: ar_mailer is a two-phase delivery agent for ActionMailer
|
metadata.gz.sig
CHANGED
Binary file
|