# File lib/rack/auth/digest/params.rb, line 14 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 24 def initialize super yield self if block_given? end
# File lib/rack/auth/digest/params.rb, line 30 def [](k) super k.to_s end
# File lib/rack/auth/digest/params.rb, line 34 def []=(k, v) super k.to_s, v.to_s end
Generated with the Darkfish Rdoc Generator 2.