class Sprockets::LazyProcessor


LazyProcessor.new { CoffeeScriptTemplate }
Internal: Used for lazy loading processors.

def initialize(&block)

def initialize(&block)
  @block = block
end

def unwrap

def unwrap
  @obj ||= @block.call
end