class Bundler::URI::Generic

def host=(v)


uri.to_s #=> "http://foo.com"
uri.host = "foo.com"
uri = Bundler::URI.parse("http://my.example.com")

require 'bundler/vendor/uri/lib/uri'

== Usage

See also Bundler::URI::Generic.check_host.

(with validation).
Public setter for the host component +v+

== Description

String
+v+::

== Args
def host=(v)
  check_host(v)
  set_host(v)
  v
end