class Addressable::URI

def port

Returns:
  • (Integer) - The port component.
def port
  return defined?(@port) ? @port : nil
end