Skip to content

Commit

Permalink
Merge pull request #3 from jusigler/master
Browse files Browse the repository at this point in the history
small fix in mimemessage.rb.  Changing each to each_line to add support for Ruby 1.9
  • Loading branch information
swalterd committed Apr 4, 2012
2 parents dd00522 + 49013ef commit d8ae0e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/soap/mimemessage.rb
Expand Up @@ -49,7 +49,7 @@ def self.parse(str)

def parse(str)
header_cache = nil
str.each do |line|
str.each_line do |line|
case line
when /^\A[^\: \t]+:\s*.+$/
parse_line(header_cache) if header_cache
Expand Down

0 comments on commit d8ae0e1

Please sign in to comment.