# File lib/fog/riakcs.rb, line 12 def initialize initialize_http_header({}) end
Parse a single header line into its key and value @param [String] chunk a single header line
# File lib/fog/riakcs.rb, line 18 def self.parse(chunk) line = chunk.strip # thanks Net::HTTPResponse return [nil,nil] if chunk =~ /\AHTTP(?:\/(\d+\.\d+))?\s+(\d\d\d)\s*(.*)\z/n m = /\A([^:]+):\s*/.match(line) [m[1], m.post_match] rescue [nil, nil] end
Generated with the Darkfish Rdoc Generator 2.