class Rack::Multipart::ParamList
:nodoc:
change its API.
In future, the Parser could return the pair list directly, but that would
Accumulator for multipart form data, conforming to the QueryParser API.
def self.make_params
change its API.
In future, the Parser could return the pair list directly, but that would
Accumulator for multipart form data, conforming to the QueryParser API.
def self.make_params new end
def self.normalize_params(params, key, value)
def self.normalize_params(params, key, value) params << [key, value] end
def <<(pair)
def <<(pair) @pairs << pair end
def initialize
def initialize @pairs = [] end
def to_params_hash
def to_params_hash @pairs end