method

new

rails latest stable - Class: ActionController::UrlEncodedPairParser

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.2.1) is shown here.

new(pairs = [])
public

No documentation available.

# File actionpack/lib/action_controller/request.rb, line 747
    def initialize(pairs = [])
      super('')
      @result = {}
      pairs.each { |key, value| parse(key, value) }
    end