module Roda::RodaPlugins::Base::InstanceMethods

def env

env['REQUEST_METHOD'] # => 'GET'

The environment hash for the current request. Example:
def env
  @_request.env
end