Method: ActionDispatch::Request#request_method_symbol

Defined in:
actionpack/lib/action_dispatch/http/request.rb

#request_method_symbolObject

Returns a symbol form of the #request_method.



203
204
205
# File 'actionpack/lib/action_dispatch/http/request.rb', line 203

def request_method_symbol
  HTTP_METHOD_LOOKUP[request_method]
end