Method: Rack::Request::Helpers#host_with_port
- Defined in:
- lib/rack/request.rb
permalink #host_with_port(authority = self.authority) ⇒ Object
[View source]
322 323 324 325 326 327 328 329 330 |
# File 'lib/rack/request.rb', line 322 def host_with_port( = self.) host, _, port = () if port == DEFAULT_PORTS[self.scheme] host else end end |