Skip to content

Instantly share code, notes, and snippets.

@ueno1969
Created August 14, 2012 06:42
Show Gist options
  • Save ueno1969/3346981 to your computer and use it in GitHub Desktop.
Save ueno1969/3346981 to your computer and use it in GitHub Desktop.
Rack::RequestのURL関連のメソッドの値
http://example.com:3000/foo/index.html?bar=1
のときのRack::Requestのメソッドの値
request.fullpath #=> "/foo/index.html?bar=1"
request.host #=> "example.com"
request.host_with_port #=> "example.com:3000"
request.path #=> "/foo/index.html"
request.path_info #=> "/index.html"
request.port #=> 3000
request.query_string #=> "bar=1"
request.scheme #=> "http"
request.url #=> "http://example.com:3000/foo/index.html?bar=1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment