heartcombo--simple_form/lib/simple_form/inputs/block_input.rb

13 lines
229 B
Ruby

module SimpleForm
module Inputs
class BlockInput < Base
def initialize(builder, block)
@builder, @block = builder, block
end
def input
template.capture(&@block)
end
end
end
end