class Sprockets::DirectiveProcessor

def processed_header

Returns the header String with any directives stripped.
def processed_header
  lineno = 0
  @processed_header ||= header.lines.map { |line|
    lineno += 1
    # Replace directive line with a clean break
    directives.assoc(lineno) ? "\n" : line
  }.join.chomp
end