actionmailer 3.2.2 → 3.2.3.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.

Files changed (3) hide show
  1. data/CHANGELOG.md +11 -0
  2. data/lib/action_mailer/version.rb +2 -2
  3. metadata +32 -24
@@ -1,3 +1,13 @@
1
+ ## Rails 3.2.3 (unreleased) ##
2
+
3
+ * Upgrade mail version to 2.4.3 *ML*
4
+
5
+
6
+ ## Rails 3.2.2 (March 1, 2012) ##
7
+
8
+ * No changes.
9
+
10
+
1
11
  ## Rails 3.2.1 (January 26, 2012) ##
2
12
 
3
13
  * No changes.
@@ -88,6 +98,7 @@
88
98
  * Mail does not have "quoted_body", "quoted_subject" etc. All of these are accessed via body.encoded, subject.encoded etc
89
99
 
90
100
  * Every object in a Mail object returns an object, never a string. So Mail.body returns a Mail::Body class object, need to call #encoded or #decoded to get the string you want.
101
+
91
102
  * Mail::Message#set_content_type does not exist, it is simply Mail::Message#content_type
92
103
 
93
104
  * Every mail message gets a unique message_id unless you specify one, had to change all the tests that check for equality with expected.encoded == actual.encoded to first replace their message_ids with control values
@@ -2,8 +2,8 @@ module ActionMailer
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
- TINY = 2
6
- PRE = nil
5
+ TINY = 3
6
+ PRE = "rc1"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  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: 11
5
- prerelease:
4
+ hash: 15424079
5
+ prerelease: true
6
6
  segments:
7
7
  - 3
8
8
  - 2
9
- - 2
10
- version: 3.2.2
9
+ - 3
10
+ - rc
11
+ - 1
12
+ version: 3.2.3.rc1
11
13
  platform: ruby
12
14
  authors:
13
15
  - David Heinemeier Hansson
@@ -15,40 +17,43 @@ autorequire:
15
17
  bindir: bin
16
18
  cert_chain: []
17
19
 
18
- date: 2012-03-01 00:00:00 Z
20
+ date: 2012-03-27 00:00:00 -03:00
21
+ default_executable:
19
22
  dependencies:
20
23
  - !ruby/object:Gem::Dependency
21
- name: actionpack
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
+ version_requirements: &id001 !ruby/object:Gem::Requirement
24
25
  none: false
25
26
  requirements:
26
27
  - - "="
27
28
  - !ruby/object:Gem::Version
28
- hash: 11
29
+ hash: 15424079
29
30
  segments:
30
31
  - 3
31
32
  - 2
32
- - 2
33
- version: 3.2.2
33
+ - 3
34
+ - rc
35
+ - 1
36
+ version: 3.2.3.rc1
37
+ requirement: *id001
34
38
  type: :runtime
35
- version_requirements: *id001
36
- - !ruby/object:Gem::Dependency
37
- name: mail
39
+ name: actionpack
38
40
  prerelease: false
39
- requirement: &id002 !ruby/object:Gem::Requirement
41
+ - !ruby/object:Gem::Dependency
42
+ version_requirements: &id002 !ruby/object:Gem::Requirement
40
43
  none: false
41
44
  requirements:
42
45
  - - ~>
43
46
  - !ruby/object:Gem::Version
44
- hash: 31
47
+ hash: 23
45
48
  segments:
46
49
  - 2
47
50
  - 4
48
- - 0
49
- version: 2.4.0
51
+ - 4
52
+ version: 2.4.4
53
+ requirement: *id002
50
54
  type: :runtime
51
- version_requirements: *id002
55
+ name: mail
56
+ prerelease: false
52
57
  description: Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.
53
58
  email: david@loudthinking.com
54
59
  executables: []
@@ -74,6 +79,7 @@ files:
74
79
  - lib/rails/generators/mailer/mailer_generator.rb
75
80
  - lib/rails/generators/mailer/templates/mailer.rb
76
81
  - lib/rails/generators/mailer/USAGE
82
+ has_rdoc: true
77
83
  homepage: http://www.rubyonrails.org
78
84
  licenses: []
79
85
 
@@ -96,16 +102,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
96
102
  required_rubygems_version: !ruby/object:Gem::Requirement
97
103
  none: false
98
104
  requirements:
99
- - - ">="
105
+ - - ">"
100
106
  - !ruby/object:Gem::Version
101
- hash: 3
107
+ hash: 25
102
108
  segments:
103
- - 0
104
- version: "0"
109
+ - 1
110
+ - 3
111
+ - 1
112
+ version: 1.3.1
105
113
  requirements:
106
114
  - none
107
115
  rubyforge_project:
108
- rubygems_version: 1.8.16
116
+ rubygems_version: 1.3.7
109
117
  signing_key:
110
118
  specification_version: 3
111
119
  summary: Email composition, delivery, and receiving framework (part of Rails).