actionmailer 3.2.1 → 3.2.2.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  ## Rails 3.2.1 (January 26, 2012) ##
2
2
 
3
- * No changes.
3
+ * No changes.
4
4
 
5
5
 
6
6
  ## Rails 3.2.0 (January 20, 2012) ##
@@ -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.freeze_formats([mime.to_sym])
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
@@ -2,8 +2,8 @@ module ActionMailer
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
- TINY = 1
6
- PRE = nil
5
+ TINY = 2
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: 13
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.1
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-01-26 00:00:00 -08:00
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: 13
30
+ hash: 15424071
30
31
  segments:
31
32
  - 3
32
33
  - 2
34
+ - 2
35
+ - rc
33
36
  - 1
34
- version: 3.2.1
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/log_subscriber.rb
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
- has_rdoc: true
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: 3
105
+ hash: 25
104
106
  segments:
105
- - 0
106
- version: "0"
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.6.2
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).