method

normalize_conditions!

normalize_conditions!()
private

No documentation available.

# File actionpack/lib/action_dispatch/routing/mapper.rb, line 168
          def normalize_conditions!
            @conditions.merge!(:path_info => path)

            constraints.each do |key, condition|
              next if segment_keys.include?(key) || key == :controller
              @conditions[key] = condition
            end

            @conditions[:required_defaults] = []
            options.each do |key, required_default|
              next if segment_keys.include?(key) || IGNORE_OPTIONS.include?(key)
              next if Regexp === required_default
              @conditions[:required_defaults] << key
            end

            via_all = options.delete(:via) if options[:via] == :all

            if !via_all && options[:via].blank?
              msg = "You should not use the `match` method in your router without specifying an HTTP method.\n"                      "If you want to expose your action to both GET and POST, add `via: [:get, :post]` option.\n"                      "If you want to expose your action to GET, use `get` in the router:\n"                      "  Instead of: match \"controller#action\"\n"                      "  Do: get \"controller#action\""
              raise msg
            end

            if via = options[:via]
              list = Array(via).map { |m| m.to_s.dasherize.upcase }
              @conditions.merge!(:request_method => list)
            end
          end