class Rack::Accept::Encoding
Represents an HTTP Accept-Encoding header according to the HTTP 1.1 specification, and provides several convenience methods for determining acceptable content encodings.
Public Instance Methods
matches(encoding)
click to toggle source
Returns an array of encodings from this header that match the given encoding
, ordered by precedence.
# File lib/rack/accept/encoding.rb 27 def matches(encoding) 28 values.select {|v| 29 v == encoding || v == '*' 30 }.sort {|a, b| 31 # "*" gets least precedence, any others should be equal. 32 a == '*' ? 1 : (b == '*' ? -1 : 0) 33 } 34 end
name()
click to toggle source
The name of this header.
# File lib/rack/accept/encoding.rb 11 def name 12 'Accept-Encoding' 13 end
qvalue(encoding)
click to toggle source
Determines the quality factor (qvalue) of the given encoding
.
# File lib/rack/accept/encoding.rb 16 def qvalue(encoding) 17 m = matches(encoding) 18 if m.empty? 19 encoding == 'identity' ? 1 : 0 20 else 21 normalize_qvalue(@qvalues[m.first]) 22 end 23 end