engine/lib/locomotive/liquid/drops/block.rb
2010-08-08 13:30:27 +02:00

16 lines
250 B
Ruby

module Locomotive
module Liquid
module Drops
class Block < ::Liquid::Drop
def initialize(block)
@block = block
end
def super
@block.call_super(@context)
end
end
end
end
end