actionmailer 3.0.3 → 3.0.4.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.

@@ -234,8 +234,8 @@ module ActionMailer #:nodoc:
234
234
  # default :sender => 'system@example.com'
235
235
  # end
236
236
  #
237
- # You can pass in any header value that a <tt>Mail::Message</tt>, out of the box, <tt>ActionMailer::Base</tt>
238
- # sets the following:
237
+ # You can pass in any header value that a <tt>Mail::Message</tt> accepts. Out of the box,
238
+ # <tt>ActionMailer::Base</tt> sets the following:
239
239
  #
240
240
  # * <tt>:mime_version => "1.0"</tt>
241
241
  # * <tt>:charset => "UTF-8",</tt>
@@ -273,7 +273,7 @@ module ActionMailer #:nodoc:
273
273
  # = Configuration options
274
274
  #
275
275
  # These options are specified on the class level, like
276
- # <tt>ActionMailer::Base.template_root = "/my/templates"</tt>
276
+ # <tt>ActionMailer::Base.raise_delivery_errors = true</tt>
277
277
  #
278
278
  # * <tt>default</tt> - You can pass this in at a class level as well as within the class itself as
279
279
  # per the above section.
@@ -290,7 +290,9 @@ module ActionMailer #:nodoc:
290
290
  # * <tt>:password</tt> - If your mail server requires authentication, set the password in this setting.
291
291
  # * <tt>:authentication</tt> - If your mail server requires authentication, you need to specify the
292
292
  # authentication type here.
293
- # This is a symbol and one of <tt>:plain</tt>, <tt>:login</tt>, <tt>:cram_md5</tt>.
293
+ # This is a symbol and one of <tt>:plain</tt> (will send the password in the clear), <tt>:login</tt> (will
294
+ # send password BASE64 encoded) or <tt>:cram_md5</tt> (combines a Challenge/Response mechanism to exchange
295
+ # information and a cryptographic Message Digest 5 algorithm to hash important information)
294
296
  # * <tt>:enable_starttls_auto</tt> - When set to true, detects if STARTTLS is enabled in your SMTP server
295
297
  # and starts to use it.
296
298
  #
@@ -2,8 +2,9 @@ module ActionMailer
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 3
5
+ TINY = 4
6
+ PRE = "rc1"
6
7
 
7
- STRING = [MAJOR, MINOR, TINY].join('.')
8
+ STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
8
9
  end
9
10
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
5
- prerelease: false
4
+ hash: 977940590
5
+ prerelease: true
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 3
10
- version: 3.0.3
9
+ - 4
10
+ - rc1
11
+ version: 3.0.4.rc1
11
12
  platform: ruby
12
13
  authors:
13
14
  - David Heinemeier Hansson
@@ -15,7 +16,7 @@ autorequire:
15
16
  bindir: bin
16
17
  cert_chain: []
17
18
 
18
- date: 2010-11-16 00:00:00 -06:00
19
+ date: 2011-01-31 00:00:00 +13:00
19
20
  default_executable:
20
21
  dependencies:
21
22
  - !ruby/object:Gem::Dependency
@@ -26,12 +27,13 @@ dependencies:
26
27
  requirements:
27
28
  - - "="
28
29
  - !ruby/object:Gem::Version
29
- hash: 1
30
+ hash: 977940590
30
31
  segments:
31
32
  - 3
32
33
  - 0
33
- - 3
34
- version: 3.0.3
34
+ - 4
35
+ - rc1
36
+ version: 3.0.4.rc1
35
37
  type: :runtime
36
38
  version_requirements: *id001
37
39
  - !ruby/object:Gem::Dependency
@@ -42,12 +44,12 @@ dependencies:
42
44
  requirements:
43
45
  - - ~>
44
46
  - !ruby/object:Gem::Version
45
- hash: 21
47
+ hash: 25
46
48
  segments:
47
49
  - 2
48
50
  - 2
49
- - 9
50
- version: 2.2.9
51
+ - 15
52
+ version: 2.2.15
51
53
  type: :runtime
52
54
  version_requirements: *id002
53
55
  description: Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.
@@ -102,12 +104,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
102
104
  required_rubygems_version: !ruby/object:Gem::Requirement
103
105
  none: false
104
106
  requirements:
105
- - - ">="
107
+ - - ">"
106
108
  - !ruby/object:Gem::Version
107
- hash: 3
109
+ hash: 25
108
110
  segments:
109
- - 0
110
- version: "0"
111
+ - 1
112
+ - 3
113
+ - 1
114
+ version: 1.3.1
111
115
  requirements:
112
116
  - none
113
117
  rubyforge_project: actionmailer