module Sprockets::Paths

def root=(path)

Only the initializer should change the root.

Internal: Change Environment root.
def root=(path)
  self.config = hash_reassoc(config, :root) do
    File.expand_path(path)
  end
end