method

request_method_condition

rails latest stable - Class: ActionDispatch::Routing::Mapper::Mapping

Method deprecated or moved

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

request_method_condition()
private

No documentation available.

# File actionpack/lib/action_dispatch/routing/mapper.rb, line 202
          def request_method_condition
            if via = @options[:via]
              list = Array(via).map { |m| m.to_s.dasherize.upcase }
              { :request_method => list }
            else
              { }
            end
          end