instiki/vendor/plugins/HTML5lib/lib/core_ext/string.rb

17 lines
305 B
Ruby
Raw Normal View History

2007-10-06 18:55:58 +02:00
class String
alias old_format %
define_method("%") do |data|
unless data.kind_of?(Hash)
$VERBOSE = false
r = old_format(data)
$VERBOSE = true
r
else
ret = self.clone
data.each do |k,v|
ret.gsub!(/\%\(#{k}\)/, v)
end
ret
end
end
end