mail 2.1.5.1 → 2.1.5.2

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 CHANGED
@@ -1,3 +1,18 @@
1
+ == Sun 28 Mar 2010 10:31:33 UTC Mikel Lindsaar <raasdnil@gmail.com>
2
+
3
+ * Version bump to 2.1.5.2
4
+ * Fixed up preserve case in header fields when assigned from a message closes issue #46
5
+
6
+ == Sun 28 Mar 2010 09:02:20 UTC Mikel Lindsaar <raasdnil@gmail.com>
7
+
8
+ * Version bump to 2.1.5.1
9
+ * Fixed net/pop3.rb regression for Ruby 1.8.6
10
+ * Merged in Jeremy Kemper's updates:
11
+ * Bump vendored treetop to 1.4.4
12
+ * Use Mikel's treetop for cucumber workaround
13
+ * Use LOAD_PATH for spec_helper instead of relative requires
14
+ * Force treetop from git so cucumber doesn't pull in old version
15
+
1
16
  == Sun Mar 28 07:01:07 UTC 2010 Mikel Lindsaar <raasdnil@gmail.com>
2
17
 
3
18
  * Version bump to 2.1.5
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ require 'cucumber/rake/task'
8
8
 
9
9
  spec = Gem::Specification.new do |s|
10
10
  s.name = "mail"
11
- s.version = "2.1.5.1"
11
+ s.version = "2.1.5.2"
12
12
  s.author = "Mike Lindsaar"
13
13
  s.email = "raasdnil@gmail.com"
14
14
  s.homepage = "http://github.com/mikel/mail"
data/lib/mail/message.rb CHANGED
@@ -1175,9 +1175,9 @@ module Mail
1175
1175
  if name.to_s == 'body'
1176
1176
  self.body = value
1177
1177
  elsif name.to_s =~ /content[-_]type/i
1178
- header[underscoreize(name)] = value
1178
+ header[name] = value
1179
1179
  else
1180
- header[underscoreize(name)] = value
1180
+ header[name] = value
1181
1181
  end
1182
1182
  end
1183
1183
 
data/lib/mail/version.rb CHANGED
@@ -4,7 +4,7 @@ module Mail
4
4
  MAJOR = 2
5
5
  MINOR = 1
6
6
  TINY = 5
7
- MICRO = 1
7
+ MICRO = 2
8
8
 
9
9
  STRING = [MAJOR, MINOR, TINY, MICRO].join('.')
10
10
  end
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 2
7
7
  - 1
8
8
  - 5
9
- - 1
10
- version: 2.1.5.1
9
+ - 2
10
+ version: 2.1.5.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Mike Lindsaar