class Sprockets::URITar

def compressed_path

Returns String

Only path information is returned, and not scheme.

Otherwise an absolute path will be returned.
it will return a path relative to the environment root.
If the input uri is relative to the environment root

Internal: Returns "compressed" path
def compressed_path
  if compressed_path = @env.split_subpath(root, path)
    compressed_path
  else
    path
  end
end