Sha256: 2c4b76b3e82c7acc4ec9119a1401eba91fefb88939e4b169ea006e21cf98db67

Contents?: true

Size: 323 Bytes

Versions: 9

Compression:

Stored size: 323 Bytes

Contents

module SimpleForm
  module Inputs
    class TextInput < Base
      enable :placeholder, :maxlength

      def input(wrapper_options = nil)
        merged_input_options = merge_wrapper_options(input_html_options, wrapper_options)

        @builder.text_area(attribute_name, merged_input_options)
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
simple_form-3.3.1 lib/simple_form/inputs/text_input.rb
simple_form-3.3.0 lib/simple_form/inputs/text_input.rb
simple_form-3.2.1 lib/simple_form/inputs/text_input.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/simple_form-3.2.0/lib/simple_form/inputs/text_input.rb
simple_form-3.2.0 lib/simple_form/inputs/text_input.rb
simple_form-3.1.1 lib/simple_form/inputs/text_input.rb
simple_form-3.1.0 lib/simple_form/inputs/text_input.rb
simple_form-3.1.0.rc2 lib/simple_form/inputs/text_input.rb
simple_form-3.1.0.rc1 lib/simple_form/inputs/text_input.rb