File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 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|
5151
5252 s . autorequire = 'msg'
5353
54- s . add_dependency 'ruby-ole'
54+ s . add_dependency 'ruby-ole' , '>=1.2.1'
5555end
5656
5757Rake ::GemPackageTask . new ( spec ) do |p |
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments