class Sprockets::Deprecation

def self.silence(&block)

def self.silence(&block)
  Thread.current[THREAD_LOCAL__SILENCE_KEY] = true
  block.call
ensure
  Thread.current[THREAD_LOCAL__SILENCE_KEY] = false
end