Methods
I
N
R
X
Attributes
[R] env
[RW] path_info
[RW] path_parameters
[RW] script_name
Class Public methods
new(env)
# File actionpack/test/dispatch/routing_test.rb, line 3704
def initialize(env)
  @path_parameters = {}
  @env = env
  @path_info = "/"
  @script_name = ""
  super
end
Instance Public methods
ip()
# File actionpack/test/dispatch/routing_test.rb, line 3716
def ip
  "127.0.0.1"
end
request_method()
# File actionpack/test/dispatch/routing_test.rb, line 3712
def request_method
  "GET"
end
x_header()
# File actionpack/test/dispatch/routing_test.rb, line 3720
def x_header
  @env["HTTP_X_HEADER"] || ""
end