Latest REXML and Latest Maruku

This commit is contained in:
Jacques Distler 2008-02-01 01:25:38 -06:00
parent 9a633c0792
commit 15640ca7a3
4 changed files with 7 additions and 7 deletions

View file

@ -53,7 +53,9 @@ module MaRuKu; module Strings
keys[:data] = $'
headers = $1
headers.split("\n").each do |l|
k, v = l.split(':')
# Fails if there are other ':' characters.
# k, v = l.split(':')
k, v = l.split(':', 2)
k, v = normalize_key_and_value(k, v)
k = k.to_sym
# puts "K = #{k}, V=#{v}"