module Roda::RodaPlugins::Base::RequestMethods

def initialize(scope, env)

Store the roda instance and environment.
def initialize(scope, env)
  @scope = scope
  @captures = []
  @remaining_path = _remaining_path(env)
  @env = env
end