class Addressable::URI

def host=(new_host)

Parameters:
  • new_host (String, #to_str) -- The new host component.
def host=(new_host)
  if new_host && !new_host.respond_to?(:to_str)
    raise TypeError, "Can't convert #{new_host.class} into String."
  end
  @host = new_host ? new_host.to_str : nil
  # Reset dependent values
  remove_instance_variable(:@authority) if defined?(@authority)
  remove_instance_variable(:@normalized_host) if defined?(@normalized_host)
  remove_composite_values
  # Ensure we haven't created an invalid URI
  validate()
end