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

15 lines
247 B
Ruby

module SimpleForm
module Inputs
class BlockInput < Base
def initialize(*args, &block)
super
@block = block
end
def input(wrapper_options = nil)
template.capture(&@block)
end
end
end
end