Method: Rack::Request::Helpers#host_with_port

Defined in:
lib/rack/request.rb

#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(authority = self.authority)
  host, _, port = split_authority(authority)

  if port == DEFAULT_PORTS[self.scheme]
    host
  else
    authority
  end
end