actionmailer 3.0.1 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of actionmailer might be problematic. Click here for more details.
- data/CHANGELOG +7 -1
- data/lib/action_mailer.rb +1 -0
- data/lib/action_mailer/version.rb +1 -1
- data/lib/rails/generators/mailer/templates/mailer.rb +1 -1
- metadata +17 -8
data/CHANGELOG
CHANGED
data/lib/action_mailer.rb
CHANGED
@@ -26,6 +26,7 @@ $:.unshift(actionpack_path) if File.directory?(actionpack_path) && !$:.include?(
|
|
26
26
|
|
27
27
|
require 'abstract_controller'
|
28
28
|
require 'action_view'
|
29
|
+
require 'action_mailer/version'
|
29
30
|
|
30
31
|
# Common Active Support usage in Action Mailer
|
31
32
|
require 'active_support/core_ext/class'
|
@@ -5,7 +5,7 @@ class <%= class_name %> < ActionMailer::Base
|
|
5
5
|
# Subject can be set in your I18n file at config/locales/en.yml
|
6
6
|
# with the following lookup:
|
7
7
|
#
|
8
|
-
# en.<%=
|
8
|
+
# en.<%= file_path.gsub("/",".") %>.<%= action %>.subject
|
9
9
|
#
|
10
10
|
def <%= action %>
|
11
11
|
@greeting = "Hi"
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionmailer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 3
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 3
|
7
8
|
- 0
|
8
|
-
-
|
9
|
-
version: 3.0.
|
9
|
+
- 2
|
10
|
+
version: 3.0.2
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- David Heinemeier Hansson
|
@@ -14,35 +15,39 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-
|
18
|
+
date: 2010-11-15 00:00:00 -06:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
21
22
|
name: actionpack
|
22
23
|
prerelease: false
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
24
26
|
requirements:
|
25
27
|
- - "="
|
26
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
27
30
|
segments:
|
28
31
|
- 3
|
29
32
|
- 0
|
30
|
-
-
|
31
|
-
version: 3.0.
|
33
|
+
- 2
|
34
|
+
version: 3.0.2
|
32
35
|
type: :runtime
|
33
36
|
version_requirements: *id001
|
34
37
|
- !ruby/object:Gem::Dependency
|
35
38
|
name: mail
|
36
39
|
prerelease: false
|
37
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
38
42
|
requirements:
|
39
43
|
- - ~>
|
40
44
|
- !ruby/object:Gem::Version
|
45
|
+
hash: 21
|
41
46
|
segments:
|
42
47
|
- 2
|
43
48
|
- 2
|
44
|
-
-
|
45
|
-
version: 2.2.
|
49
|
+
- 9
|
50
|
+
version: 2.2.9
|
46
51
|
type: :runtime
|
47
52
|
version_requirements: *id002
|
48
53
|
description: Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.
|
@@ -84,25 +89,29 @@ rdoc_options: []
|
|
84
89
|
require_paths:
|
85
90
|
- lib
|
86
91
|
required_ruby_version: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
87
93
|
requirements:
|
88
94
|
- - ">="
|
89
95
|
- !ruby/object:Gem::Version
|
96
|
+
hash: 57
|
90
97
|
segments:
|
91
98
|
- 1
|
92
99
|
- 8
|
93
100
|
- 7
|
94
101
|
version: 1.8.7
|
95
102
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
|
+
none: false
|
96
104
|
requirements:
|
97
105
|
- - ">="
|
98
106
|
- !ruby/object:Gem::Version
|
107
|
+
hash: 3
|
99
108
|
segments:
|
100
109
|
- 0
|
101
110
|
version: "0"
|
102
111
|
requirements:
|
103
112
|
- none
|
104
113
|
rubyforge_project: actionmailer
|
105
|
-
rubygems_version: 1.3.
|
114
|
+
rubygems_version: 1.3.7
|
106
115
|
signing_key:
|
107
116
|
specification_version: 3
|
108
117
|
summary: Email composition, delivery, and receiving framework (part of Rails).
|