actionmailer 2.0.2 → 2.0.4

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 (42) hide show
  1. data/CHANGELOG +9 -0
  2. data/README +0 -0
  3. data/Rakefile +4 -2
  4. data/lib/action_mailer.rb +0 -0
  5. data/lib/action_mailer/base.rb +4 -1
  6. data/lib/action_mailer/test_case.rb +14 -1
  7. data/lib/action_mailer/vendor.rb +2 -2
  8. data/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +0 -0
  9. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail.rb +0 -0
  10. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/Makefile +0 -0
  11. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/address.rb +0 -0
  12. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/attachments.rb +0 -0
  13. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/base64.rb +0 -0
  14. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/compat.rb +0 -0
  15. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/config.rb +0 -0
  16. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/core_extensions.rb +0 -0
  17. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/encode.rb +84 -42
  18. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/facade.rb +0 -0
  19. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/header.rb +34 -2
  20. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/info.rb +0 -0
  21. data/lib/action_mailer/vendor/tmail-1.2.1/tmail/interface.rb +1123 -0
  22. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/loader.rb +0 -0
  23. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/mail.rb +46 -1
  24. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/mailbox.rb +3 -3
  25. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/mbox.rb +0 -0
  26. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/net.rb +0 -35
  27. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/obsolete.rb +0 -0
  28. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/parser.rb +0 -0
  29. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/parser.y +0 -0
  30. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/port.rb +0 -0
  31. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/quoting.rb +6 -30
  32. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/scanner.rb +9 -5
  33. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/scanner_r.rb +2 -4
  34. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/stringio.rb +0 -0
  35. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/tmail.rb +0 -0
  36. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/utils.rb +3 -4
  37. data/lib/action_mailer/vendor/{tmail-1.1.0 → tmail-1.2.1}/tmail/version.rb +2 -2
  38. data/lib/action_mailer/version.rb +1 -1
  39. data/test/mail_service_test.rb +3 -2
  40. data/test/test_helper_test.rb +18 -0
  41. metadata +36 -35
  42. data/lib/action_mailer/vendor/tmail-1.1.0/tmail/interface.rb +0 -540
@@ -28,6 +28,23 @@
28
28
  # Note: Originally licensed under LGPL v2+. Using MIT license for Rails
29
29
  # with permission of Minero Aoki.
30
30
  #++
31
+ # == TMail::Mail
32
+ # === Class Methods
33
+ #
34
+ #
35
+ #
36
+ #
37
+ #
38
+ #
39
+ #
40
+ #
41
+ #
42
+ #
43
+ #
44
+ #
45
+ #
46
+ #
47
+
31
48
 
32
49
  require 'tmail/interface'
33
50
  require 'tmail/encode'
@@ -162,6 +179,14 @@ module TMail
162
179
  @header.dup
163
180
  end
164
181
 
182
+ # Returns a TMail::AddressHeader object of the field you are querying.
183
+ # Examples:
184
+ # @mail['from'] #=> #<TMail::AddressHeader "mikel@test.com.au">
185
+ # @mail['to'] #=> #<TMail::AddressHeader "mikel@test.com.au">
186
+ #
187
+ # You can get the string value of this by passing "to_s" to the query:
188
+ # Example:
189
+ # @mail['to'].to_s #=> "mikel@test.com.au"
165
190
  def []( key )
166
191
  @header[key.downcase]
167
192
  end
@@ -172,6 +197,19 @@ module TMail
172
197
 
173
198
  alias fetch []
174
199
 
200
+ # Allows you to set or delete TMail header objects at will.
201
+ # Eamples:
202
+ # @mail = TMail::Mail.new
203
+ # @mail['to'].to_s # => 'mikel@test.com.au'
204
+ # @mail['to'] = 'mikel@elsewhere.org'
205
+ # @mail['to'].to_s # => 'mikel@elsewhere.org'
206
+ # @mail.encoded # => "To: mikel@elsewhere.org\r\n\r\n"
207
+ # @mail['to'] = nil
208
+ # @mail['to'].to_s # => nil
209
+ # @mail.encoded # => "\r\n"
210
+ #
211
+ # Note: setting mail[] = nil actualy deletes the header field in question from the object,
212
+ # it does not just set the value of the hash to nil
175
213
  def []=( key, val )
176
214
  dkey = key.downcase
177
215
 
@@ -203,7 +241,14 @@ module TMail
203
241
  end
204
242
 
205
243
  alias store []=
206
-
244
+
245
+ # Allows you to loop through each header in the TMail::Mail object in a block
246
+ # Example:
247
+ # @mail['to'] = 'mikel@elsewhere.org'
248
+ # @mail['from'] = 'me@me.com'
249
+ # @mail.each_header { |k,v| puts "#{k} = #{v}" }
250
+ # # => from = me@me.com
251
+ # # => to = mikel@elsewhere.org
207
252
  def each_header
208
253
  @header.each do |key, val|
209
254
  [val].flatten.each {|v| yield key, v }
@@ -213,13 +213,13 @@ module TMail
213
213
  fromaddr(), TextUtils.time2str(File.mtime(port.filename))
214
214
  end
215
215
 
216
- def UNIXMbox.fromaddr
216
+ def UNIXMbox.fromaddr(port)
217
217
  h = HeaderField.new_from_port(port, 'Return-Path') ||
218
- HeaderField.new_from_port(port, 'From') or return 'nobody'
218
+ HeaderField.new_from_port(port, 'From') ||
219
+ HeaderField.new_from_port(port, 'EnvelopeSender') or return 'nobody'
219
220
  a = h.addrs[0] or return 'nobody'
220
221
  a.spec
221
222
  end
222
- private_class_method :fromaddr
223
223
 
224
224
  def close
225
225
  return if @closed
@@ -128,41 +128,6 @@ module TMail
128
128
  'using C.T.Encoding with multipart mail is not permitted'
129
129
  end
130
130
  end
131
-
132
- def create_empty_mail
133
- self.class.new(StringPort.new(''), @config)
134
- end
135
-
136
- def create_reply
137
- setup_reply create_empty_mail()
138
- end
139
-
140
- def setup_reply( m )
141
- if tmp = reply_addresses(nil)
142
- m.to_addrs = tmp
143
- end
144
-
145
- mid = message_id(nil)
146
- tmp = references(nil) || []
147
- tmp.push mid if mid
148
- m.in_reply_to = [mid] if mid
149
- m.references = tmp unless tmp.empty?
150
- m.subject = 'Re: ' + subject('').sub(/\A(?:\s*re:)+/i, '')
151
-
152
- m
153
- end
154
-
155
- def create_forward
156
- setup_forward create_empty_mail()
157
- end
158
-
159
- def setup_forward( mail )
160
- m = Mail.new(StringPort.new(''))
161
- m.body = decoded
162
- m.set_content_type 'message', 'rfc822'
163
- m.encoding = encoding('7bit')
164
- mail.parts.push m
165
- end
166
131
 
167
132
  end
168
133
 
@@ -13,12 +13,12 @@ module TMail
13
13
  from_charset = sub_header("content-type", "charset")
14
14
  case (content_transfer_encoding || "7bit").downcase
15
15
  when "quoted-printable"
16
- # the default charset is set to iso-8859-1 instead of 'us-ascii'.
16
+ # the default charset is set to iso-8859-1 instead of 'us-ascii'.
17
17
  # This is needed as many mailer do not set the charset but send in ISO. This is only used if no charset is set.
18
18
  if !from_charset.blank? && from_charset.downcase == 'us-ascii'
19
19
  from_charset = 'iso-8859-1'
20
20
  end
21
-
21
+
22
22
  Unquoter.unquote_quoted_printable_and_convert_to(quoted_body,
23
23
  to_charset, from_charset, true)
24
24
  when "base64"
@@ -35,9 +35,9 @@ module TMail
35
35
 
36
36
  def body(to_charset = 'utf-8', &block)
37
37
  attachment_presenter = block || Proc.new { |file_name| "Attachment: #{file_name}\n" }
38
-
38
+
39
39
  if multipart?
40
- parts.collect { |part|
40
+ parts.collect { |part|
41
41
  header = part["content-type"]
42
42
 
43
43
  if part.multipart?
@@ -81,13 +81,13 @@ module TMail
81
81
  end
82
82
  end
83
83
  end
84
-
84
+
85
85
  def unquote_quoted_printable_and_convert_to(text, to, from, preserve_underscores=false)
86
86
  text = text.gsub(/_/, " ") unless preserve_underscores
87
87
  text = text.gsub(/\r\n|\r/, "\n") # normalize newlines
88
88
  convert_to(text.unpack("M*").first, to, from)
89
89
  end
90
-
90
+
91
91
  def unquote_base64_and_convert_to(text, to, from)
92
92
  convert_to(Base64.decode(text), to, from)
93
93
  end
@@ -116,27 +116,3 @@ module TMail
116
116
  end
117
117
  end
118
118
  end
119
-
120
- if __FILE__ == $0
121
- require 'test/unit'
122
-
123
- class TC_Unquoter < Test::Unit::TestCase
124
- def test_unquote_quoted_printable
125
- a ="=?ISO-8859-1?Q?[166417]_Bekr=E6ftelse_fra_Rejsefeber?="
126
- b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
127
- assert_equal "[166417] Bekr\303\246ftelse fra Rejsefeber", b
128
- end
129
-
130
- def test_unquote_base64
131
- a ="=?ISO-8859-1?B?WzE2NjQxN10gQmVrcuZmdGVsc2UgZnJhIFJlanNlZmViZXI=?="
132
- b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
133
- assert_equal "[166417] Bekr\303\246ftelse fra Rejsefeber", b
134
- end
135
-
136
- def test_unquote_without_charset
137
- a ="[166417]_Bekr=E6ftelse_fra_Rejsefeber"
138
- b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
139
- assert_equal "[166417]_Bekr=E6ftelse_fra_Rejsefeber", b
140
- end
141
- end
142
- end
@@ -30,14 +30,18 @@
30
30
  #++
31
31
 
32
32
  require 'tmail/utils'
33
+ require 'tmail/config'
33
34
 
34
35
  module TMail
35
- require 'tmail/scanner_r.rb'
36
+ # NOTE: It woiuld be nice if these two libs could boith be called "tmailscanner", and
37
+ # the native extension would have precedence. However RubyGems boffs that up b/c
38
+ # it does not gaurantee load_path order.
36
39
  begin
37
- raise LoadError, 'Turn off Ruby extention by user choice' if ENV['NORUBYEXT']
38
- require 'tmail/scanner_c.so'
39
- Scanner = Scanner_C
40
+ raise LoadError, 'Turned off native extentions by user choice' if ENV['NORUBYEXT']
41
+ require('tmail/tmailscanner') # c extension
42
+ Scanner = TMailScanner
40
43
  rescue LoadError
41
- Scanner = Scanner_R
44
+ require 'tmail/scanner_r'
45
+ Scanner = TMailScanner
42
46
  end
43
47
  end
@@ -29,12 +29,11 @@
29
29
 
30
30
  require 'tmail/config'
31
31
 
32
-
33
32
  module TMail
34
33
 
35
- class Scanner_R
34
+ class TMailScanner
36
35
 
37
- Version = '0.10.7'
36
+ Version = '0.11.0'
38
37
  Version.freeze
39
38
 
40
39
  MIME_HEADERS = {
@@ -46,7 +45,6 @@ module TMail
46
45
  alnum = 'a-zA-Z0-9'
47
46
  atomsyms = %q[ _#!$%&`'*+-{|}~^/=? ].strip
48
47
  tokensyms = %q[ _#!$%&`'*+-{|}~^@. ].strip
49
-
50
48
  atomchars = alnum + Regexp.quote(atomsyms)
51
49
  tokenchars = alnum + Regexp.quote(tokensyms)
52
50
  iso2022str = '\e(?!\(B)..(?:[^\e]+|\e(?!\(B)..)*\e\(B'
@@ -56,7 +56,7 @@ module TMail
56
56
 
57
57
  module TextUtils
58
58
  # Defines characters per RFC that are OK for TOKENs, ATOMs, PHRASEs and CONTROL characters.
59
-
59
+
60
60
  aspecial = '()<>[]:;.\\,"'
61
61
  tspecial = '()<>[];:\\,"/?='
62
62
  lwsp = " \t\r\n"
@@ -248,8 +248,7 @@ module TMail
248
248
  def decode_RFC2231( str )
249
249
  m = RFC2231_ENCODED.match(str) or return str
250
250
  begin
251
- NKF.nkf(NKF_FLAGS[$KCODE],
252
- m.post_match.gsub(/%[\da-f]{2}/in) {|s| s[1,2].hex.chr })
251
+ to_kcode(m.post_match.gsub(/%[\da-f]{2}/in) {|s| s[1,2].hex.chr })
253
252
  rescue
254
253
  m.post_match.gsub(/%[\da-f]{2}/in, "")
255
254
  end
@@ -263,7 +262,7 @@ module TMail
263
262
  preamble = $1
264
263
  remainder = $2
265
264
  if remainder =~ /;/
266
- remainder =~ /^(.*)(;.*)$/m
265
+ remainder =~ /^(.*?)(;.*)$/m
267
266
  boundary_text = $1
268
267
  post = $2.chomp
269
268
  else
@@ -30,8 +30,8 @@
30
30
  module TMail #:nodoc:
31
31
  module VERSION #:nodoc:
32
32
  MAJOR = 1
33
- MINOR = 1
34
- TINY = 1
33
+ MINOR = 2
34
+ TINY = 0
35
35
 
36
36
  STRING = [MAJOR, MINOR, TINY].join('.')
37
37
  end
@@ -2,7 +2,7 @@ module ActionMailer
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 2
4
4
  MINOR = 0
5
- TINY = 2
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -534,7 +534,8 @@ class ActionMailerTest < Test::Unit::TestCase
534
534
  def test_delivery_logs_sent_mail
535
535
  mail = TestMailer.create_signed_up(@recipient)
536
536
  logger = mock()
537
- logger.expects(:info).with("Sent mail:\n #{mail.encoded}")
537
+ logger.expects(:info).with("Sent mail to #{@recipient}")
538
+ logger.expects(:debug).with("\n#{mail.encoded}")
538
539
  TestMailer.logger = logger
539
540
  TestMailer.deliver_signed_up(@recipient)
540
541
  end
@@ -838,7 +839,7 @@ EOF
838
839
  fixture = File.read(File.dirname(__FILE__) + "/fixtures/raw_email8")
839
840
  mail = TMail::Mail.parse(fixture)
840
841
  attachment = mail.attachments.last
841
- assert_equal "01QuienTeDijat.Pitbull.mp3", attachment.original_filename
842
+ assert_equal "01 Quien Te Dij\212at. Pitbull.mp3", attachment.original_filename
842
843
  end
843
844
 
844
845
  def test_wrong_mail_header
@@ -115,3 +115,21 @@ class TestHelperMailerTest < ActionMailer::TestCase
115
115
  assert_match /0 .* but 1/, error.message
116
116
  end
117
117
  end
118
+
119
+ class AnotherTestHelperMailerTest < ActionMailer::TestCase
120
+
121
+ tests TestHelperMailer
122
+
123
+ def setup
124
+ # Should not override ActionMailer setup methods
125
+ @test_var = "a value"
126
+ end
127
+
128
+ def test_should_still_setup_mailer
129
+ assert @expected.is_a?(TMail::Mail)
130
+ end
131
+
132
+ def test_should_run_overridden_setup_method
133
+ assert @test_var
134
+ end
135
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
@@ -9,17 +9,18 @@ autorequire: action_mailer
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2007-12-16 00:00:00 -06:00
12
+ date: 2008-09-03 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: actionpack
17
+ type: :runtime
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
20
21
  - - "="
21
22
  - !ruby/object:Gem::Version
22
- version: 2.0.2
23
+ version: 2.0.4
23
24
  version:
24
25
  description: Makes it trivial to test and deliver emails sent from a single service layer.
25
26
  email: david@loudthinking.com
@@ -50,37 +51,37 @@ files:
50
51
  - lib/action_mailer/vendor/text-format-0.6.3
51
52
  - lib/action_mailer/vendor/text-format-0.6.3/text
52
53
  - lib/action_mailer/vendor/text-format-0.6.3/text/format.rb
53
- - lib/action_mailer/vendor/tmail-1.1.0
54
- - lib/action_mailer/vendor/tmail-1.1.0/tmail
55
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/address.rb
56
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/attachments.rb
57
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/base64.rb
58
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/compat.rb
59
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/config.rb
60
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/core_extensions.rb
61
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/encode.rb
62
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/facade.rb
63
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/header.rb
64
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/info.rb
65
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/interface.rb
66
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/loader.rb
67
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/mail.rb
68
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/mailbox.rb
69
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/Makefile
70
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/mbox.rb
71
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/net.rb
72
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/obsolete.rb
73
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/parser.rb
74
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/parser.y
75
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/port.rb
76
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/quoting.rb
77
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner.rb
78
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner_r.rb
79
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/stringio.rb
80
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/tmail.rb
81
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/utils.rb
82
- - lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb
83
- - lib/action_mailer/vendor/tmail-1.1.0/tmail.rb
54
+ - lib/action_mailer/vendor/tmail-1.2.1
55
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail
56
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/address.rb
57
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/attachments.rb
58
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/base64.rb
59
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/compat.rb
60
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/config.rb
61
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/core_extensions.rb
62
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/encode.rb
63
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/facade.rb
64
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/header.rb
65
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/info.rb
66
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/interface.rb
67
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/loader.rb
68
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/mail.rb
69
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/mailbox.rb
70
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/Makefile
71
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/mbox.rb
72
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/net.rb
73
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/obsolete.rb
74
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/parser.rb
75
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/parser.y
76
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/port.rb
77
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/quoting.rb
78
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/scanner.rb
79
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/scanner_r.rb
80
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/stringio.rb
81
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/tmail.rb
82
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/utils.rb
83
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail/version.rb
84
+ - lib/action_mailer/vendor/tmail-1.2.1/tmail.rb
84
85
  - lib/action_mailer/vendor.rb
85
86
  - lib/action_mailer/version.rb
86
87
  - lib/action_mailer.rb
@@ -180,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
180
181
  requirements:
181
182
  - none
182
183
  rubyforge_project: actionmailer
183
- rubygems_version: 0.9.5
184
+ rubygems_version: 1.2.0
184
185
  signing_key:
185
186
  specification_version: 2
186
187
  summary: Service layer for easy email delivery and testing.