Skip to content

Commit f9d49bb

Browse files
committed
Add fix for issue #4 and add version for ruby-ole dependency.
git-svn-id: https://ruby-msg.googlecode.com/svn/trunk@99 c30d66de-b626-0410-988f-81f6512a6d81
1 parent 3ad330a commit f9d49bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ spec = Gem::Specification.new do |s|
5151

5252
s.autorequire = 'msg'
5353

54-
s.add_dependency 'ruby-ole'
54+
s.add_dependency 'ruby-ole', '>=1.2.1'
5555
end
5656

5757
Rake::GemPackageTask.new(spec) do |p|

lib/msg.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@ def populate_headers
144144
# of the ole name, or just leave it if we can't
145145
recips = recips_by_type[type]
146146
recips = (recips.sort_by { |r| r.obj.name[/\d{8}$/].hex } rescue recips)
147-
# are you supposed to use ; or , to separate?
147+
# switched to using , for separation, not ;. see issue #4
148148
# recips.empty? is strange. i wouldn't have thought it possible, but it was right?
149-
headers[type.to_s.sub(/^(.)/) { $1.upcase }] = [recips.join('; ')] unless recips.empty?
149+
headers[type.to_s.sub(/^(.)/) { $1.upcase }] = [recips.join(', ')] unless recips.empty?
150150
end
151151
headers['Subject'] = [props.subject] if props.subject
152152

0 commit comments

Comments
 (0)