actionmailer 3.0.0.rc2 → 3.0.0

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.

Files changed (3) hide show
  1. data/CHANGELOG +1 -20
  2. data/lib/action_mailer/version.rb +1 -2
  3. metadata +10 -14
data/CHANGELOG CHANGED
@@ -1,14 +1,4 @@
1
- *Rails 3.0.0 [release candidate 2] (August 23rd, 2010)*
2
-
3
- * No material changes (see http://github.com/rails/rails/compare/v3.0.0_RC...v3.0.0_RC2 for gory details)
4
-
5
-
6
- *Rails 3.0.0 [release candidate] (July 26th, 2010)*
7
-
8
- * No material changes
9
-
10
-
11
- *Rails 3.0.0 [beta 4] (June 8th, 2010)*
1
+ *Rails 3.0.0 (August 29, 2010)*
12
2
 
13
3
  * subject is automatically looked up on I18n using mailer_name and action_name as scope as in t(".subject") [JK]
14
4
 
@@ -16,16 +6,10 @@
16
6
 
17
7
  * Added ability to pass Proc objects to the defaults hash [ML]
18
8
 
19
-
20
- *Rails 3.0.0 [beta 3] (April 13th, 2010)*
21
-
22
9
  * Removed all quoting.rb type files from ActionMailer and put Mail 2.2.0 in instead [ML]
23
10
 
24
11
  * Lot of updates to various test cases that now work better with the new Mail and so have different expectations
25
12
 
26
-
27
- *Rails 3.0.0 [beta 2] (April 1st, 2010)*
28
-
29
13
  * Added interceptors and observers from Mail [ML]
30
14
 
31
15
  ActionMailer::Base.register_interceptor calls Mail.register_interceptor
@@ -43,9 +27,6 @@
43
27
 
44
28
  * Whole new API added with tests. See base.rb for full details. Old API is deprecated.
45
29
 
46
-
47
- *Rails 3.0.0 [beta 1] (February 4, 2010)*
48
-
49
30
  * The Mail::Message class has helped methods for all the field types that return 'common' defaults for the common use case, so to get the subject, mail.subject will give you a string, mail.date will give you a DateTime object, mail.from will give you an array of address specs (mikel@test.lindsaar.net) etc. If you want to access the field object itself, call mail[:field_name] which will return the field object you want, which you can then chain, like mail[:from].formatted
50
31
 
51
32
  * Mail#content_type now returns the content_type field as a string. If you want the mime type of a mail, then you call Mail#mime_type (eg, text/plain), if you want the parameters of the content type field, you call Mail#content_type_parameters which gives you a hash, eg {'format' => 'flowed', 'charset' => 'utf-8'}
@@ -3,8 +3,7 @@ module ActionMailer
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
5
  TINY = 0
6
- BUILD = "rc2"
7
6
 
8
- STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
7
+ STRING = [MAJOR, MINOR, TINY].join('.')
9
8
  end
10
9
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 977940607
5
- prerelease: true
4
+ hash: 7
5
+ prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
9
  - 0
10
- - rc2
11
- version: 3.0.0.rc2
10
+ version: 3.0.0
12
11
  platform: ruby
13
12
  authors:
14
13
  - David Heinemeier Hansson
@@ -16,7 +15,7 @@ autorequire:
16
15
  bindir: bin
17
16
  cert_chain: []
18
17
 
19
- date: 2010-08-23 00:00:00 -05:00
18
+ date: 2010-08-29 00:00:00 -05:00
20
19
  default_executable:
21
20
  dependencies:
22
21
  - !ruby/object:Gem::Dependency
@@ -27,13 +26,12 @@ dependencies:
27
26
  requirements:
28
27
  - - "="
29
28
  - !ruby/object:Gem::Version
30
- hash: 977940607
29
+ hash: 7
31
30
  segments:
32
31
  - 3
33
32
  - 0
34
33
  - 0
35
- - rc2
36
- version: 3.0.0.rc2
34
+ version: 3.0.0
37
35
  type: :runtime
38
36
  version_requirements: *id001
39
37
  - !ruby/object:Gem::Dependency
@@ -104,14 +102,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
104
102
  required_rubygems_version: !ruby/object:Gem::Requirement
105
103
  none: false
106
104
  requirements:
107
- - - ">"
105
+ - - ">="
108
106
  - !ruby/object:Gem::Version
109
- hash: 25
107
+ hash: 3
110
108
  segments:
111
- - 1
112
- - 3
113
- - 1
114
- version: 1.3.1
109
+ - 0
110
+ version: "0"
115
111
  requirements:
116
112
  - none
117
113
  rubyforge_project: actionmailer