Method: ActionDispatch::Request#request_method=
- Defined in:
- lib/action_dispatch/http/request.rb
#request_method=(request_method) ⇒ Object
:nodoc:
189 190 191 192 193 |
# File 'lib/action_dispatch/http/request.rb', line 189 def request_method=(request_method) # :nodoc: if check_method(request_method) @request_method = set_header("REQUEST_METHOD", request_method) end end |