Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
http_parser.rb / lib / http_parser.rb
Size: Mime:
$:.unshift File.expand_path('../', __FILE__)
require 'ruby_http_parser'

Http = HTTP

module HTTP
  class Parser
    class << self
      attr_reader :default_header_value_type

      def default_header_value_type=(val)
        if (val != :mixed && val != :strings && val != :arrays)
          raise ArgumentError, "Invalid header value type"
        end
        @default_header_value_type = val
      end
    end
  end
end

HTTP::Parser.default_header_value_type = :mixed