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
LazyProcessor.new { CoffeeScriptTemplate }
Internal: Used for lazy loading processors.
def initialize(&block) @block = block end
def unwrap @obj ||= @block.call end