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.
- data/CHANGELOG.rdoc +4 -5
- data/Dependencies.txt +3 -0
- data/Gemfile +29 -0
- data/lib/VERSION +2 -2
- data/lib/mail.rb +12 -7
- data/lib/mail/body.rb +4 -3
- data/lib/mail/core_extensions/nil.rb +2 -0
- data/lib/mail/core_extensions/object.rb +13 -0
- data/lib/mail/core_extensions/shellwords.rb +2 -0
- data/lib/mail/core_extensions/smtp.rb +1 -0
- data/lib/mail/core_extensions/string.rb +5 -1
- data/lib/mail/core_extensions/string/access.rb +104 -0
- data/lib/mail/core_extensions/string/multibyte.rb +78 -0
- data/lib/mail/fields/common/parameter_hash.rb +5 -5
- data/lib/mail/indifferent_hash.rb +146 -0
- data/lib/mail/message.rb +8 -28
- data/lib/mail/multibyte.rb +42 -0
- data/lib/mail/multibyte/chars.rb +474 -0
- data/lib/mail/multibyte/exceptions.rb +8 -0
- data/lib/mail/multibyte/unicode.rb +392 -0
- data/lib/mail/multibyte/utils.rb +60 -0
- data/lib/mail/network/retriever_methods/test_retriever.rb +8 -1
- data/lib/mail/parts_list.rb +1 -1
- data/lib/mail/version_specific/ruby_1_8.rb +14 -13
- data/lib/mail/version_specific/ruby_1_9.rb +10 -9
- metadata +210 -183
data/lib/mail/parts_list.rb
CHANGED
@@ -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
|
-
|
6
|
+
segments:
|
7
|
+
- 2
|
8
|
+
- 3
|
9
|
+
- 0
|
10
|
+
version: 2.3.0
|
6
11
|
platform: ruby
|
7
12
|
authors:
|
8
|
-
|
13
|
+
- Mikel Lindsaar
|
9
14
|
autorequire:
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
17
|
|
13
|
-
date:
|
18
|
+
date: 2011-04-26 00:00:00 +10:00
|
19
|
+
default_executable:
|
14
20
|
dependencies:
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
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
|
-
|
67
|
-
|
68
|
-
|
75
|
+
- README.rdoc
|
76
|
+
- CHANGELOG.rdoc
|
77
|
+
- TODO.rdoc
|
69
78
|
files:
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
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
|
-
|
223
|
+
- lib
|
203
224
|
required_ruby_version: !ruby/object:Gem::Requirement
|
204
225
|
none: false
|
205
226
|
requirements:
|
206
|
-
|
207
|
-
|
208
|
-
|
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
|
-
|
214
|
-
|
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.
|
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.
|