aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/text_area.rb
blob: 160f0202630175e36e03ed04f06cf7bab9da6c1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module ActionView
  module Helpers
    module Tags
      class TextArea < Base #:nodoc:
        def render
          options = @options.stringify_keys
          add_default_name_and_id(options)

          extract_size!(options, 'cols', 'rows')

          content_tag("textarea", options.delete('value') || value_before_type_cast(object), options)
        end
      end
    end
  end
end