# File lib/rack/auth/digest/params.rb, line 13 def self.dequote(str) # From WEBrick::HTTPUtils ret = (/\A"(.*)"\Z/ =~ str) ? $1 : str.dup ret.gsub!(/\\(.)/, "\\1") ret end
# File lib/rack/auth/digest/params.rb, line 23 def initialize super() yield self if block_given? end
# File lib/rack/auth/digest/params.rb, line 29 def [](k) super k.to_s end
# File lib/rack/auth/digest/params.rb, line 33 def []=(k, v) super k.to_s, v.to_s end
Generated with the Darkfish Rdoc Generator 2.