class Sprockets::URITar

def initialize(uri, env)

env - The current "environment" that assets are being loaded into.
uri - A String containing URI that may or may not contain the scheme

Internal: Initialize object for compression or expansion
def initialize(uri, env)
  @root = env.root
  @env  = env
  uri   = uri.to_s
  if uri.include?("://".freeze)
    uri_array = uri.split("://".freeze)
    @scheme   = uri_array.shift
    @scheme   << "://".freeze
    @path     = uri_array.join("".freeze)
  else
    @scheme = "".freeze
    @path   = uri
  end
end