Method: Bundler::URI::File.build
- Defined in:
- lib/bundler/vendor/uri/lib/uri/file.rb
.build(args) ⇒ Object
Description
Creates a new Bundler::URI::File object from components, with syntax checking.
The components accepted are host and path.
The components should be provided either as an Array, or as a Hash with keys formed by preceding the component names with a colon.
If an Array is used, the components must be passed in the order [host, path].
A path from e.g. the File class should be escaped before being passed.
Examples:
require 'bundler/vendor/uri/lib/uri'
uri1 = Bundler::URI::File.build(['host.example.com', '/path/file.zip'])
uri1.to_s # => "file://host.example.com/path/file.zip"
uri2 = Bundler::URI::File.build({:host => 'host.example.com',
:path => '/ruby/src'})
uri2.to_s # => "file://host.example.com/ruby/src"
uri3 = Bundler::URI::File.build({:path => Bundler::URI::escape('/path/my file.txt')})
uri3.to_s # => "file:///path/my%20file.txt"
53 54 55 56 |
# File 'lib/bundler/vendor/uri/lib/uri/file.rb', line 53 def self.build(args) tmp = Util::make_components_hash(self, args) super(tmp) end |