class Sprockets::URITar

def absolute_path?

like C:/Schneems.
Windows systems start with a drive letter than colon and slash
Nix* systems start with a `/` like /Users/schneems.

Internal: Tells us if we are using an absolute path
def absolute_path?
  PathUtils.absolute_path?(path)
end