class Bundler::URI::File


The “file” Bundler::URI is defined by RFC8089.

def self.build(args)


uri3.to_s # => "file:///path/my%20file.txt"
uri3 = Bundler::URI::File.build({:path => Bundler::URI::escape('/path/my file.txt')})

uri2.to_s # => "file://host.example.com/ruby/src"
:path => '/ruby/src'})
uri2 = Bundler::URI::File.build({:host => 'host.example.com',

uri1.to_s # => "file://host.example.com/path/file.zip"
uri1 = Bundler::URI::File.build(['host.example.com', '/path/file.zip'])

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

Examples:

being passed.
A path from e.g. the File class should be escaped before

order [host, path].
If an Array is used, the components must be passed in the

with keys formed by preceding the component names with a colon.
The components should be provided either as an Array, or as a Hash

The components accepted are +host+ and +path+.

Creates a new Bundler::URI::File object from components, with syntax checking.

== Description
def self.build(args)
  tmp = Util::make_components_hash(self, args)
  super(tmp)
end

def check_password(user)

raise InvalidURIError
def check_password(user)
  raise Bundler::URI::InvalidURIError, "can not set password for file Bundler::URI"
end

def check_user(user)

raise InvalidURIError
def check_user(user)
  raise Bundler::URI::InvalidURIError, "can not set user for file Bundler::URI"
end

def check_userinfo(user)

raise InvalidURIError
def check_userinfo(user)
  raise Bundler::URI::InvalidURIError, "can not set userinfo for file Bundler::URI"
end

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

def set_password(v)

do nothing
def set_password(v)
end

def set_port(v)

do nothing
def set_port(v)
end

def set_user(v)

do nothing
def set_user(v)
end

def set_userinfo(v)

do nothing
def set_userinfo(v)
end