actionmailer 3.0.10 → 3.0.11

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 +8 -1
  2. data/lib/action_mailer/version.rb +1 -1
  3. metadata +24 -24
data/CHANGELOG CHANGED
@@ -1,11 +1,18 @@
1
- *Rails 3.0.10 (unreleased)*
1
+ *Rails 3.0.10 (August 16, 2011)*
2
+
3
+ *No changes.
4
+
2
5
 
3
6
  *Rails 3.0.9 (June 16, 2011)*
4
7
 
8
+ *No changes.
9
+
10
+
5
11
  *Rails 3.0.8 (June 7, 2011)*
6
12
 
7
13
  * Mail dependency increased to 2.2.19
8
14
 
15
+
9
16
  *Rails 3.0.7 (April 18, 2011)*
10
17
 
11
18
  * remove AM delegating register_observer and register_interceptor to Mail [Josh Kalderimis]
@@ -2,7 +2,7 @@ module ActionMailer
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 10
5
+ TINY = 11
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 10
10
- version: 3.0.10
9
+ - 11
10
+ version: 3.0.11
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Heinemeier Hansson
@@ -15,28 +15,29 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-16 00:00:00 Z
18
+ date: 2011-11-18 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: actionpack
22
+ type: :runtime
22
23
  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: 19
29
+ hash: 17
29
30
  segments:
30
31
  - 3
31
32
  - 0
32
- - 10
33
- version: 3.0.10
34
- type: :runtime
35
- version_requirements: *id001
33
+ - 11
34
+ version: 3.0.11
35
+ requirement: *id001
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: mail
38
+ type: :runtime
38
39
  prerelease: false
39
- requirement: &id002 !ruby/object:Gem::Requirement
40
+ version_requirements: &id002 !ruby/object:Gem::Requirement
40
41
  none: false
41
42
  requirements:
42
43
  - - ~>
@@ -47,8 +48,7 @@ dependencies:
47
48
  - 2
48
49
  - 19
49
50
  version: 2.2.19
50
- type: :runtime
51
- version_requirements: *id002
51
+ requirement: *id002
52
52
  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
53
  email: david@loudthinking.com
54
54
  executables: []
@@ -61,23 +61,23 @@ files:
61
61
  - CHANGELOG
62
62
  - README.rdoc
63
63
  - MIT-LICENSE
64
- - lib/action_mailer/adv_attr_accessor.rb
65
- - lib/action_mailer/base.rb
66
- - lib/action_mailer/collector.rb
67
64
  - lib/action_mailer/delivery_methods.rb
68
65
  - lib/action_mailer/deprecated_api.rb
69
- - lib/action_mailer/log_subscriber.rb
70
- - lib/action_mailer/mail_helper.rb
71
- - lib/action_mailer/old_api.rb
72
- - lib/action_mailer/railtie.rb
73
66
  - lib/action_mailer/test_case.rb
74
- - lib/action_mailer/test_helper.rb
75
67
  - lib/action_mailer/tmail_compat.rb
68
+ - lib/action_mailer/log_subscriber.rb
76
69
  - lib/action_mailer/version.rb
77
- - lib/action_mailer.rb
78
- - lib/rails/generators/mailer/mailer_generator.rb
70
+ - lib/action_mailer/railtie.rb
71
+ - lib/action_mailer/test_helper.rb
72
+ - lib/action_mailer/collector.rb
73
+ - lib/action_mailer/old_api.rb
74
+ - lib/action_mailer/base.rb
75
+ - lib/action_mailer/mail_helper.rb
76
+ - lib/action_mailer/adv_attr_accessor.rb
79
77
  - lib/rails/generators/mailer/templates/mailer.rb
80
78
  - lib/rails/generators/mailer/USAGE
79
+ - lib/rails/generators/mailer/mailer_generator.rb
80
+ - lib/action_mailer.rb
81
81
  homepage: http://www.rubyonrails.org
82
82
  licenses: []
83
83
 
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  requirements:
110
110
  - none
111
111
  rubyforge_project: actionmailer
112
- rubygems_version: 1.8.8
112
+ rubygems_version: 1.8.6
113
113
  signing_key:
114
114
  specification_version: 3
115
115
  summary: Email composition, delivery, and receiving framework (part of Rails).