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

14 lines
223 B
Ruby
Raw Normal View History

2010-01-10 04:12:57 +00:00
module SimpleForm
module Inputs
class BlockInput < Base
2010-11-07 09:18:37 +00:00
def initialize(*args, &block)
super
@block = block
2010-01-10 04:12:57 +00:00
end
def input
template.capture(&@block)
end
end
end
end