class Bundler::URI::File

def set_host(v)


See also Bundler::URI::Generic.host=.

Protected setter for the host component +v+.
def set_host(v)
  v = "" if v.nil? || v == "localhost"
  @host = v
end