module Roda::RodaPlugins::Base::RequestMethods

def is_get?

overridden without changing rack's behavior.
Similar to the default Rack::Request get? method, but can be
Optimized method for whether this request is a +GET+ request.
def is_get?
  @env["REQUEST_METHOD"] == 'GET'
end