File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ spec = Gem::Specification.new do |s|
51
51
52
52
s . autorequire = 'msg'
53
53
54
- s . add_dependency 'ruby-ole'
54
+ s . add_dependency 'ruby-ole' , '>=1.2.1'
55
55
end
56
56
57
57
Rake ::GemPackageTask . new ( spec ) do |p |
Original file line number Diff line number Diff line change @@ -144,9 +144,9 @@ def populate_headers
144
144
# of the ole name, or just leave it if we can't
145
145
recips = recips_by_type [ type ]
146
146
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
148
148
# 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?
150
150
end
151
151
headers [ 'Subject' ] = [ props . subject ] if props . subject
152
152
You can’t perform that action at this time.
0 commit comments