Object
# File lib/http_router/request.rb, line 8 def initialize(path, rack_request) @rack_request = rack_request @path = URI.unescape(path).split(/\//) @path.shift if @path.first == '' @path.push('') if path[-1] == // @extra_env = {} @params = [] @acceptable_methods = Set.new end
Generated with the Darkfish Rdoc Generator 2.