module Sprockets::Processing

def bundle_processors(mime_type = nil)

recommended to subclass `Tilt::Template`.
All `Processor`s must follow the `Tilt::Template` interface. It is

individual files.
Bundle Processors are ran on concatenated assets rather than

extension will be returned.
argument is supplied, the processors registered under that
Returns an `Array` of `Processor` classes. If a `mime_type`
def bundle_processors(mime_type = nil)
  if mime_type
    @bundle_processors[mime_type].dup
  else
    deep_copy_hash(@bundle_processors)
  end
end