mail 2.2.20 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of mail might be problematic. Click here for more details.

@@ -3,7 +3,14 @@
3
3
  module Mail
4
4
 
5
5
  class TestRetriever < Retriever
6
- cattr_accessor :emails
6
+
7
+ def self.emails
8
+ @@emails
9
+ end
10
+
11
+ def self.emails=(val)
12
+ @@emails = val
13
+ end
7
14
 
8
15
  def initialize(values)
9
16
  @@emails = []
@@ -48,4 +48,4 @@ module Mail
48
48
  end
49
49
 
50
50
  end
51
- end
51
+ end
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+
2
3
  module Mail
3
4
  class Ruby18
4
5
  require 'base64'
@@ -14,13 +15,13 @@ module Mail
14
15
  re = /([\(\)])/ # Only match unescaped parens
15
16
  str.gsub(re) { |s| '\\' + s }
16
17
  end
17
-
18
+
18
19
  def Ruby18.paren( str )
19
20
  str = $1 if str =~ /^\((.*)?\)$/
20
21
  str = escape_paren( str )
21
22
  '(' + str + ')'
22
23
  end
23
-
24
+
24
25
  def Ruby18.escape_bracket( str )
25
26
  re = /\\\>/
26
27
  str = str.gsub(re) { |s| '>'}
@@ -29,36 +30,36 @@ module Mail
29
30
  re = /([\<\>])/ # Only match unescaped parens
30
31
  str.gsub(re) { |s| '\\' + s }
31
32
  end
32
-
33
+
33
34
  def Ruby18.bracket( str )
34
35
  str = $1 if str =~ /^\<(.*)?\>$/
35
36
  str = escape_bracket( str )
36
37
  '<' + str + '>'
37
38
  end
38
-
39
+
39
40
  def Ruby18.decode_base64(str)
40
41
  Base64.decode64(str) if str
41
42
  end
42
-
43
+
43
44
  def Ruby18.encode_base64(str)
44
45
  Base64.encode64(str)
45
46
  end
46
-
47
+
47
48
  def Ruby18.has_constant?(klass, string)
48
49
  klass.constants.include?( string )
49
50
  end
50
-
51
+
51
52
  def Ruby18.get_constant(klass, string)
52
53
  klass.const_get( string )
53
54
  end
54
-
55
+
55
56
  def Ruby18.b_value_encode(str, encoding)
56
57
  # Ruby 1.8 requires an encoding to work
57
58
  raise ArgumentError, "Must supply an encoding" if encoding.nil?
58
59
  encoding = encoding.to_s.upcase.gsub('_', '-')
59
60
  [Encodings::Base64.encode(str), encoding]
60
61
  end
61
-
62
+
62
63
  def Ruby18.b_value_decode(str)
63
64
  match = str.match(/\=\?(.+)?\?[Bb]\?(.+)?\?\=/m)
64
65
  if match
@@ -67,14 +68,14 @@ module Mail
67
68
  end
68
69
  str
69
70
  end
70
-
71
+
71
72
  def Ruby18.q_value_encode(str, encoding)
72
73
  # Ruby 1.8 requires an encoding to work
73
74
  raise ArgumentError, "Must supply an encoding" if encoding.nil?
74
75
  encoding = encoding.to_s.upcase.gsub('_', '-')
75
76
  [Encodings::QuotedPrintable.encode(str), encoding]
76
77
  end
77
-
78
+
78
79
  def Ruby18.q_value_decode(str)
79
80
  match = str.match(/\=\?(.+)?\?[Qq]\?(.+)?\?\=/m)
80
81
  if match
@@ -83,11 +84,11 @@ module Mail
83
84
  end
84
85
  str
85
86
  end
86
-
87
+
87
88
  def Ruby18.param_decode(str, encoding)
88
89
  URI.unescape(str)
89
90
  end
90
-
91
+
91
92
  def Ruby18.param_encode(str)
92
93
  encoding = $KCODE.to_s.downcase
93
94
  language = Configuration.instance.param_encode_language
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+
2
3
  module Mail
3
4
  class Ruby19
4
5
 
@@ -14,7 +15,7 @@ module Mail
14
15
  str = escape_paren( str )
15
16
  '(' + str + ')'
16
17
  end
17
-
18
+
18
19
  def Ruby19.escape_bracket( str )
19
20
  re = /(?<!\\)([\<\>])/ # Only match unescaped brackets
20
21
  str.gsub(re) { |s| '\\' + s }
@@ -29,24 +30,24 @@ module Mail
29
30
  def Ruby19.decode_base64(str)
30
31
  str.unpack( 'm' ).first
31
32
  end
32
-
33
+
33
34
  def Ruby19.encode_base64(str)
34
35
  [str].pack( 'm' )
35
36
  end
36
-
37
+
37
38
  def Ruby19.has_constant?(klass, string)
38
39
  klass.const_defined?( string, false )
39
40
  end
40
-
41
+
41
42
  def Ruby19.get_constant(klass, string)
42
43
  klass.const_get( string )
43
44
  end
44
-
45
+
45
46
  def Ruby19.b_value_encode(str, encoding = nil)
46
47
  encoding = str.encoding.to_s
47
48
  [Ruby19.encode_base64(str), encoding]
48
49
  end
49
-
50
+
50
51
  def Ruby19.b_value_decode(str)
51
52
  match = str.match(/\=\?(.+)?\?[Bb]\?(.+)?\?\=/m)
52
53
  if match
@@ -57,7 +58,7 @@ module Mail
57
58
  decoded = str.encode("utf-8", :invalid => :replace, :replace => "")
58
59
  decoded.valid_encoding? ? decoded : decoded.encode("utf-16le", :invalid => :replace, :replace => "").encode("utf-8")
59
60
  end
60
-
61
+
61
62
  def Ruby19.q_value_encode(str, encoding = nil)
62
63
  encoding = str.encoding.to_s
63
64
  [Encodings::QuotedPrintable.encode(str), encoding]
@@ -86,8 +87,8 @@ module Mail
86
87
  "#{encoding}'#{language}'#{URI.escape(str)}"
87
88
  end
88
89
 
89
- # mails somtimes includes invalid encodings like iso885915 or utf8 so we transform them to iso885915 or utf8
90
- # TODO: add this as a test somewhere
90
+ # mails somtimes includes invalid encodings like iso885915 or utf8 so we transform them to iso885915 or utf8
91
+ # TODO: add this as a test somewhere
91
92
  # Encoding.list.map{|e| [e.to_s.upcase==fix_encoding(e.to_s.downcase.gsub("-", "")), e.to_s] }.select {|a,b| !b}
92
93
  # Encoding.list.map{|e| [e.to_s==fix_encoding(e.to_s), e.to_s] }.select {|a,b| !b}
93
94
  def Ruby19.fix_encoding(encoding)
metadata CHANGED
@@ -1,61 +1,70 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mail
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 3
4
5
  prerelease:
5
- version: 2.2.20
6
+ segments:
7
+ - 2
8
+ - 3
9
+ - 0
10
+ version: 2.3.0
6
11
  platform: ruby
7
12
  authors:
8
- - Mikel Lindsaar
13
+ - Mikel Lindsaar
9
14
  autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
17
 
13
- date: 2013-05-14 00:00:00 Z
18
+ date: 2011-04-26 00:00:00 +10:00
19
+ default_executable:
14
20
  dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: activesupport
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
19
- none: false
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 2.3.6
24
- type: :runtime
25
- version_requirements: *id001
26
- - !ruby/object:Gem::Dependency
27
- name: mime-types
28
- prerelease: false
29
- requirement: &id002 !ruby/object:Gem::Requirement
30
- none: false
31
- requirements:
32
- - - ~>
33
- - !ruby/object:Gem::Version
34
- version: "1.16"
35
- type: :runtime
36
- version_requirements: *id002
37
- - !ruby/object:Gem::Dependency
38
- name: treetop
39
- prerelease: false
40
- requirement: &id003 !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ~>
44
- - !ruby/object:Gem::Version
45
- version: 1.4.8
46
- type: :runtime
47
- version_requirements: *id003
48
- - !ruby/object:Gem::Dependency
49
- name: i18n
50
- prerelease: false
51
- requirement: &id004 !ruby/object:Gem::Requirement
52
- none: false
53
- requirements:
54
- - - ">="
55
- - !ruby/object:Gem::Version
56
- version: 0.4.0
57
- type: :runtime
58
- version_requirements: *id004
21
+ - !ruby/object:Gem::Dependency
22
+ name: mime-types
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 47
30
+ segments:
31
+ - 1
32
+ - 16
33
+ version: "1.16"
34
+ type: :runtime
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: treetop
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ hash: 23
45
+ segments:
46
+ - 1
47
+ - 4
48
+ - 8
49
+ version: 1.4.8
50
+ type: :runtime
51
+ version_requirements: *id002
52
+ - !ruby/object:Gem::Dependency
53
+ name: i18n
54
+ prerelease: false
55
+ requirement: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ hash: 15
61
+ segments:
62
+ - 0
63
+ - 4
64
+ - 0
65
+ version: 0.4.0
66
+ type: :runtime
67
+ version_requirements: *id003
59
68
  description: A really Ruby Mail handler.
60
69
  email: raasdnil@gmail.com
61
70
  executables: []
@@ -63,135 +72,147 @@ executables: []
63
72
  extensions: []
64
73
 
65
74
  extra_rdoc_files:
66
- - README.rdoc
67
- - CHANGELOG.rdoc
68
- - TODO.rdoc
75
+ - README.rdoc
76
+ - CHANGELOG.rdoc
77
+ - TODO.rdoc
69
78
  files:
70
- - README.rdoc
71
- - Rakefile
72
- - TODO.rdoc
73
- - lib/mail.rb
74
- - lib/VERSION
75
- - lib/mail/attachments_list.rb
76
- - lib/mail/body.rb
77
- - lib/mail/configuration.rb
78
- - lib/mail/elements.rb
79
- - lib/mail/encodings.rb
80
- - lib/mail/envelope.rb
81
- - lib/mail/field.rb
82
- - lib/mail/field_list.rb
83
- - lib/mail/fields.rb
84
- - lib/mail/header.rb
85
- - lib/mail/mail.rb
86
- - lib/mail/message.rb
87
- - lib/mail/network.rb
88
- - lib/mail/part.rb
89
- - lib/mail/parts_list.rb
90
- - lib/mail/patterns.rb
91
- - lib/mail/utilities.rb
92
- - lib/mail/version.rb
93
- - lib/mail/core_extensions/nil.rb
94
- - lib/mail/core_extensions/shellwords.rb
95
- - lib/mail/core_extensions/smtp.rb
96
- - lib/mail/core_extensions/string.rb
97
- - lib/mail/elements/address.rb
98
- - lib/mail/elements/address_list.rb
99
- - lib/mail/elements/content_disposition_element.rb
100
- - lib/mail/elements/content_location_element.rb
101
- - lib/mail/elements/content_transfer_encoding_element.rb
102
- - lib/mail/elements/content_type_element.rb
103
- - lib/mail/elements/date_time_element.rb
104
- - lib/mail/elements/envelope_from_element.rb
105
- - lib/mail/elements/message_ids_element.rb
106
- - lib/mail/elements/mime_version_element.rb
107
- - lib/mail/elements/phrase_list.rb
108
- - lib/mail/elements/received_element.rb
109
- - lib/mail/encodings/7bit.rb
110
- - lib/mail/encodings/8bit.rb
111
- - lib/mail/encodings/base64.rb
112
- - lib/mail/encodings/binary.rb
113
- - lib/mail/encodings/quoted_printable.rb
114
- - lib/mail/encodings/transfer_encoding.rb
115
- - lib/mail/fields/bcc_field.rb
116
- - lib/mail/fields/cc_field.rb
117
- - lib/mail/fields/comments_field.rb
118
- - lib/mail/fields/content_description_field.rb
119
- - lib/mail/fields/content_disposition_field.rb
120
- - lib/mail/fields/content_id_field.rb
121
- - lib/mail/fields/content_location_field.rb
122
- - lib/mail/fields/content_transfer_encoding_field.rb
123
- - lib/mail/fields/content_type_field.rb
124
- - lib/mail/fields/date_field.rb
125
- - lib/mail/fields/from_field.rb
126
- - lib/mail/fields/in_reply_to_field.rb
127
- - lib/mail/fields/keywords_field.rb
128
- - lib/mail/fields/message_id_field.rb
129
- - lib/mail/fields/mime_version_field.rb
130
- - lib/mail/fields/optional_field.rb
131
- - lib/mail/fields/received_field.rb
132
- - lib/mail/fields/references_field.rb
133
- - lib/mail/fields/reply_to_field.rb
134
- - lib/mail/fields/resent_bcc_field.rb
135
- - lib/mail/fields/resent_cc_field.rb
136
- - lib/mail/fields/resent_date_field.rb
137
- - lib/mail/fields/resent_from_field.rb
138
- - lib/mail/fields/resent_message_id_field.rb
139
- - lib/mail/fields/resent_sender_field.rb
140
- - lib/mail/fields/resent_to_field.rb
141
- - lib/mail/fields/return_path_field.rb
142
- - lib/mail/fields/sender_field.rb
143
- - lib/mail/fields/structured_field.rb
144
- - lib/mail/fields/subject_field.rb
145
- - lib/mail/fields/to_field.rb
146
- - lib/mail/fields/unstructured_field.rb
147
- - lib/mail/fields/common/address_container.rb
148
- - lib/mail/fields/common/common_address.rb
149
- - lib/mail/fields/common/common_date.rb
150
- - lib/mail/fields/common/common_field.rb
151
- - lib/mail/fields/common/common_message_id.rb
152
- - lib/mail/fields/common/parameter_hash.rb
153
- - lib/mail/network/delivery_methods/file_delivery.rb
154
- - lib/mail/network/delivery_methods/sendmail.rb
155
- - lib/mail/network/delivery_methods/smtp.rb
156
- - lib/mail/network/delivery_methods/smtp_connection.rb
157
- - lib/mail/network/delivery_methods/test_mailer.rb
158
- - lib/mail/network/retriever_methods/base.rb
159
- - lib/mail/network/retriever_methods/imap.rb
160
- - lib/mail/network/retriever_methods/pop3.rb
161
- - lib/mail/network/retriever_methods/test_retriever.rb
162
- - lib/mail/parsers/address_lists.rb
163
- - lib/mail/parsers/address_lists.treetop
164
- - lib/mail/parsers/content_disposition.rb
165
- - lib/mail/parsers/content_disposition.treetop
166
- - lib/mail/parsers/content_location.rb
167
- - lib/mail/parsers/content_location.treetop
168
- - lib/mail/parsers/content_transfer_encoding.rb
169
- - lib/mail/parsers/content_transfer_encoding.treetop
170
- - lib/mail/parsers/content_type.rb
171
- - lib/mail/parsers/content_type.treetop
172
- - lib/mail/parsers/date_time.rb
173
- - lib/mail/parsers/date_time.treetop
174
- - lib/mail/parsers/envelope_from.rb
175
- - lib/mail/parsers/envelope_from.treetop
176
- - lib/mail/parsers/message_ids.rb
177
- - lib/mail/parsers/message_ids.treetop
178
- - lib/mail/parsers/mime_version.rb
179
- - lib/mail/parsers/mime_version.treetop
180
- - lib/mail/parsers/phrase_lists.rb
181
- - lib/mail/parsers/phrase_lists.treetop
182
- - lib/mail/parsers/received.rb
183
- - lib/mail/parsers/received.treetop
184
- - lib/mail/parsers/rfc2045.rb
185
- - lib/mail/parsers/rfc2045.treetop
186
- - lib/mail/parsers/rfc2822.rb
187
- - lib/mail/parsers/rfc2822.treetop
188
- - lib/mail/parsers/rfc2822_obsolete.rb
189
- - lib/mail/parsers/rfc2822_obsolete.treetop
190
- - lib/mail/version_specific/ruby_1_8.rb
191
- - lib/mail/version_specific/ruby_1_9.rb
192
- - lib/tasks/corpus.rake
193
- - lib/tasks/treetop.rake
194
- - CHANGELOG.rdoc
79
+ - README.rdoc
80
+ - CHANGELOG.rdoc
81
+ - Dependencies.txt
82
+ - Gemfile
83
+ - Rakefile
84
+ - TODO.rdoc
85
+ - lib/mail/attachments_list.rb
86
+ - lib/mail/body.rb
87
+ - lib/mail/configuration.rb
88
+ - lib/mail/core_extensions/nil.rb
89
+ - lib/mail/core_extensions/object.rb
90
+ - lib/mail/core_extensions/shellwords.rb
91
+ - lib/mail/core_extensions/smtp.rb
92
+ - lib/mail/core_extensions/string/access.rb
93
+ - lib/mail/core_extensions/string/multibyte.rb
94
+ - lib/mail/core_extensions/string.rb
95
+ - lib/mail/elements/address.rb
96
+ - lib/mail/elements/address_list.rb
97
+ - lib/mail/elements/content_disposition_element.rb
98
+ - lib/mail/elements/content_location_element.rb
99
+ - lib/mail/elements/content_transfer_encoding_element.rb
100
+ - lib/mail/elements/content_type_element.rb
101
+ - lib/mail/elements/date_time_element.rb
102
+ - lib/mail/elements/envelope_from_element.rb
103
+ - lib/mail/elements/message_ids_element.rb
104
+ - lib/mail/elements/mime_version_element.rb
105
+ - lib/mail/elements/phrase_list.rb
106
+ - lib/mail/elements/received_element.rb
107
+ - lib/mail/elements.rb
108
+ - lib/mail/encodings/7bit.rb
109
+ - lib/mail/encodings/8bit.rb
110
+ - lib/mail/encodings/base64.rb
111
+ - lib/mail/encodings/binary.rb
112
+ - lib/mail/encodings/quoted_printable.rb
113
+ - lib/mail/encodings/transfer_encoding.rb
114
+ - lib/mail/encodings.rb
115
+ - lib/mail/envelope.rb
116
+ - lib/mail/field.rb
117
+ - lib/mail/field_list.rb
118
+ - lib/mail/fields/bcc_field.rb
119
+ - lib/mail/fields/cc_field.rb
120
+ - lib/mail/fields/comments_field.rb
121
+ - lib/mail/fields/common/address_container.rb
122
+ - lib/mail/fields/common/common_address.rb
123
+ - lib/mail/fields/common/common_date.rb
124
+ - lib/mail/fields/common/common_field.rb
125
+ - lib/mail/fields/common/common_message_id.rb
126
+ - lib/mail/fields/common/parameter_hash.rb
127
+ - lib/mail/fields/content_description_field.rb
128
+ - lib/mail/fields/content_disposition_field.rb
129
+ - lib/mail/fields/content_id_field.rb
130
+ - lib/mail/fields/content_location_field.rb
131
+ - lib/mail/fields/content_transfer_encoding_field.rb
132
+ - lib/mail/fields/content_type_field.rb
133
+ - lib/mail/fields/date_field.rb
134
+ - lib/mail/fields/from_field.rb
135
+ - lib/mail/fields/in_reply_to_field.rb
136
+ - lib/mail/fields/keywords_field.rb
137
+ - lib/mail/fields/message_id_field.rb
138
+ - lib/mail/fields/mime_version_field.rb
139
+ - lib/mail/fields/optional_field.rb
140
+ - lib/mail/fields/received_field.rb
141
+ - lib/mail/fields/references_field.rb
142
+ - lib/mail/fields/reply_to_field.rb
143
+ - lib/mail/fields/resent_bcc_field.rb
144
+ - lib/mail/fields/resent_cc_field.rb
145
+ - lib/mail/fields/resent_date_field.rb
146
+ - lib/mail/fields/resent_from_field.rb
147
+ - lib/mail/fields/resent_message_id_field.rb
148
+ - lib/mail/fields/resent_sender_field.rb
149
+ - lib/mail/fields/resent_to_field.rb
150
+ - lib/mail/fields/return_path_field.rb
151
+ - lib/mail/fields/sender_field.rb
152
+ - lib/mail/fields/structured_field.rb
153
+ - lib/mail/fields/subject_field.rb
154
+ - lib/mail/fields/to_field.rb
155
+ - lib/mail/fields/unstructured_field.rb
156
+ - lib/mail/fields.rb
157
+ - lib/mail/header.rb
158
+ - lib/mail/indifferent_hash.rb
159
+ - lib/mail/mail.rb
160
+ - lib/mail/message.rb
161
+ - lib/mail/multibyte/chars.rb
162
+ - lib/mail/multibyte/exceptions.rb
163
+ - lib/mail/multibyte/unicode.rb
164
+ - lib/mail/multibyte/utils.rb
165
+ - lib/mail/multibyte.rb
166
+ - lib/mail/network/delivery_methods/file_delivery.rb
167
+ - lib/mail/network/delivery_methods/sendmail.rb
168
+ - lib/mail/network/delivery_methods/smtp.rb
169
+ - lib/mail/network/delivery_methods/smtp_connection.rb
170
+ - lib/mail/network/delivery_methods/test_mailer.rb
171
+ - lib/mail/network/retriever_methods/base.rb
172
+ - lib/mail/network/retriever_methods/imap.rb
173
+ - lib/mail/network/retriever_methods/pop3.rb
174
+ - lib/mail/network/retriever_methods/test_retriever.rb
175
+ - lib/mail/network.rb
176
+ - lib/mail/parsers/address_lists.rb
177
+ - lib/mail/parsers/address_lists.treetop
178
+ - lib/mail/parsers/content_disposition.rb
179
+ - lib/mail/parsers/content_disposition.treetop
180
+ - lib/mail/parsers/content_location.rb
181
+ - lib/mail/parsers/content_location.treetop
182
+ - lib/mail/parsers/content_transfer_encoding.rb
183
+ - lib/mail/parsers/content_transfer_encoding.treetop
184
+ - lib/mail/parsers/content_type.rb
185
+ - lib/mail/parsers/content_type.treetop
186
+ - lib/mail/parsers/date_time.rb
187
+ - lib/mail/parsers/date_time.treetop
188
+ - lib/mail/parsers/envelope_from.rb
189
+ - lib/mail/parsers/envelope_from.treetop
190
+ - lib/mail/parsers/message_ids.rb
191
+ - lib/mail/parsers/message_ids.treetop
192
+ - lib/mail/parsers/mime_version.rb
193
+ - lib/mail/parsers/mime_version.treetop
194
+ - lib/mail/parsers/phrase_lists.rb
195
+ - lib/mail/parsers/phrase_lists.treetop
196
+ - lib/mail/parsers/received.rb
197
+ - lib/mail/parsers/received.treetop
198
+ - lib/mail/parsers/rfc2045.rb
199
+ - lib/mail/parsers/rfc2045.treetop
200
+ - lib/mail/parsers/rfc2822.rb
201
+ - lib/mail/parsers/rfc2822.treetop
202
+ - lib/mail/parsers/rfc2822_obsolete.rb
203
+ - lib/mail/parsers/rfc2822_obsolete.treetop
204
+ - lib/mail/part.rb
205
+ - lib/mail/parts_list.rb
206
+ - lib/mail/patterns.rb
207
+ - lib/mail/utilities.rb
208
+ - lib/mail/version.rb
209
+ - lib/mail/version_specific/ruby_1_8.rb
210
+ - lib/mail/version_specific/ruby_1_9.rb
211
+ - lib/mail.rb
212
+ - lib/tasks/corpus.rake
213
+ - lib/tasks/treetop.rake
214
+ - lib/VERSION
215
+ has_rdoc: true
195
216
  homepage: http://github.com/mikel/mail
196
217
  licenses: []
197
218
 
@@ -199,23 +220,29 @@ post_install_message:
199
220
  rdoc_options: []
200
221
 
201
222
  require_paths:
202
- - lib
223
+ - lib
203
224
  required_ruby_version: !ruby/object:Gem::Requirement
204
225
  none: false
205
226
  requirements:
206
- - - ">="
207
- - !ruby/object:Gem::Version
208
- version: "0"
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ hash: 3
230
+ segments:
231
+ - 0
232
+ version: "0"
209
233
  required_rubygems_version: !ruby/object:Gem::Requirement
210
234
  none: false
211
235
  requirements:
212
- - - ">="
213
- - !ruby/object:Gem::Version
214
- version: "0"
236
+ - - ">="
237
+ - !ruby/object:Gem::Version
238
+ hash: 3
239
+ segments:
240
+ - 0
241
+ version: "0"
215
242
  requirements: []
216
243
 
217
244
  rubyforge_project:
218
- rubygems_version: 1.8.24
245
+ rubygems_version: 1.6.2
219
246
  signing_key:
220
247
  specification_version: 3
221
248
  summary: Mail provides a nice Ruby DSL for making, sending and reading emails.