class Roadie::UrlGenerator

def build_root_uri

def build_root_uri
  path = make_absolute url_options[:path]
  port = parse_port url_options[:port]
  URI::Generic.build(scheme: scheme, host: url_options[:host], port: port, path: path)
end