class Addressable::URI

def port

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