Sha256: df49699330587558532253e7f80ef685fc3f46db5cdefb21de30c69b73382468
Contents?: true
Size: 277 Bytes
Versions: 11
Compression:
Stored size: 277 Bytes
Contents
# frozen_string_literal: true 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
Version data entries
11 entries across 11 versions & 1 rubygems