Method: Webmachine::Request#get?

Defined in:
lib/webmachine/request.rb

#get?Boolean

Is this a GET request?

Returns:

  • (Boolean)

    true if this request was made with the GET method



94
95
96
# File 'lib/webmachine/request.rb', line 94

def get?
  method == "GET"
end