module Redwood::Util::Uri
Public Class Methods
build(components)
click to toggle source
# File lib/sup/util/uri.rb, line 8 def self.build(components) components = components.dup components[:path] = Path.expand(components[:path]) ::URI::Generic.build(components) end