actionmailer 3.2.1 → 3.2.2.rc1
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.md +1 -1
- data/lib/action_mailer/collector.rb +2 -2
- data/lib/action_mailer/version.rb +2 -2
- metadata +23 -19
data/CHANGELOG.md
CHANGED
@@ -22,9 +22,9 @@ module ActionMailer #:nodoc:
|
|
22
22
|
|
23
23
|
def custom(mime, options={})
|
24
24
|
options.reverse_merge!(:content_type => mime.to_s)
|
25
|
-
@context.
|
25
|
+
@context.formats = [mime.to_sym]
|
26
26
|
options[:body] = block_given? ? yield : @default_render.call
|
27
27
|
@responses << options
|
28
28
|
end
|
29
29
|
end
|
30
|
-
end
|
30
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionmailer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 15424071
|
5
|
+
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 2
|
9
|
+
- 2
|
10
|
+
- rc
|
9
11
|
- 1
|
10
|
-
version: 3.2.
|
12
|
+
version: 3.2.2.rc1
|
11
13
|
platform: ruby
|
12
14
|
authors:
|
13
15
|
- David Heinemeier Hansson
|
@@ -15,8 +17,7 @@ autorequire:
|
|
15
17
|
bindir: bin
|
16
18
|
cert_chain: []
|
17
19
|
|
18
|
-
date: 2012-
|
19
|
-
default_executable:
|
20
|
+
date: 2012-02-22 00:00:00 Z
|
20
21
|
dependencies:
|
21
22
|
- !ruby/object:Gem::Dependency
|
22
23
|
name: actionpack
|
@@ -26,12 +27,14 @@ dependencies:
|
|
26
27
|
requirements:
|
27
28
|
- - "="
|
28
29
|
- !ruby/object:Gem::Version
|
29
|
-
hash:
|
30
|
+
hash: 15424071
|
30
31
|
segments:
|
31
32
|
- 3
|
32
33
|
- 2
|
34
|
+
- 2
|
35
|
+
- rc
|
33
36
|
- 1
|
34
|
-
version: 3.2.
|
37
|
+
version: 3.2.2.rc1
|
35
38
|
type: :runtime
|
36
39
|
version_requirements: *id001
|
37
40
|
- !ruby/object:Gem::Dependency
|
@@ -62,20 +65,19 @@ files:
|
|
62
65
|
- CHANGELOG.md
|
63
66
|
- README.rdoc
|
64
67
|
- MIT-LICENSE
|
65
|
-
- lib/action_mailer.rb
|
68
|
+
- lib/action_mailer/base.rb
|
66
69
|
- lib/action_mailer/collector.rb
|
70
|
+
- lib/action_mailer/delivery_methods.rb
|
71
|
+
- lib/action_mailer/log_subscriber.rb
|
72
|
+
- lib/action_mailer/mail_helper.rb
|
67
73
|
- lib/action_mailer/railtie.rb
|
68
74
|
- lib/action_mailer/test_case.rb
|
69
75
|
- lib/action_mailer/test_helper.rb
|
70
|
-
- lib/action_mailer/mail_helper.rb
|
71
|
-
- lib/action_mailer/base.rb
|
72
|
-
- lib/action_mailer/delivery_methods.rb
|
73
76
|
- lib/action_mailer/version.rb
|
74
|
-
- lib/action_mailer
|
77
|
+
- lib/action_mailer.rb
|
75
78
|
- lib/rails/generators/mailer/mailer_generator.rb
|
76
|
-
- lib/rails/generators/mailer/USAGE
|
77
79
|
- lib/rails/generators/mailer/templates/mailer.rb
|
78
|
-
|
80
|
+
- lib/rails/generators/mailer/USAGE
|
79
81
|
homepage: http://www.rubyonrails.org
|
80
82
|
licenses: []
|
81
83
|
|
@@ -98,16 +100,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
98
100
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
101
|
none: false
|
100
102
|
requirements:
|
101
|
-
- - "
|
103
|
+
- - ">"
|
102
104
|
- !ruby/object:Gem::Version
|
103
|
-
hash:
|
105
|
+
hash: 25
|
104
106
|
segments:
|
105
|
-
-
|
106
|
-
|
107
|
+
- 1
|
108
|
+
- 3
|
109
|
+
- 1
|
110
|
+
version: 1.3.1
|
107
111
|
requirements:
|
108
112
|
- none
|
109
113
|
rubyforge_project:
|
110
|
-
rubygems_version: 1.
|
114
|
+
rubygems_version: 1.8.16
|
111
115
|
signing_key:
|
112
116
|
specification_version: 3
|
113
117
|
summary: Email composition, delivery, and receiving framework (part of Rails).
|