class Sprockets::ProcessorUtils::CompositeProcessor

:nodoc:

def self.create(processors)

def self.create(processors)
  if processors.length == 1
    new SINGULAR, processors.first, processors
  else
    new PLURAL, processors, processors
  end
end

def cache_key

def cache_key
  ProcessorUtils.processors_cache_keys(processors)
end

def call(input)

def call(input)
  processor_strategy.call param, input
end