ip() Instance Public methods
headers() Instance Public methods Provides access to the request's HTTP headers, for example: request.headers["Content-Type"] # => "text/plain"
head?() Instance Public methods Is this a HEAD request? Equivalent to request.request_method_symbol == :head.
get?() Instance Public methods Is this a #GET (or HEAD) request? Equivalent to request.request_method_symbol == :get.
fullpath() Instance Public methods Returns the String full path including params of the last URL requested. # get "/articles" request.fullpath # => "/articles" # get "/articles?page=2" request.fullpath # => "/articles?page=2"
form_data?() Instance Public methods
flash() Instance Public methods Access the contents of the flash. Use flash["notice"] to read a notice you put there or flash["notice"] = "hello" to put a new one.
delete?() Instance Public methods Is this a DELETE request? Equivalent to request.request_method_symbol == :delete.
deep_munge(hash) Instance Public methods Extracted into ActionDispatch::Request::Utils.deep_munge, but kept here for backwards compatibility.
cookie_jar() Instance Public methods
Page 347 of 2275