Sha256: 9bbfd58043090c5773ed7eb03a71c322026552530bbc0a64301d4a3262e321d0
Contents?: true
Size: 498 Bytes
Versions: 69
Compression:
Stored size: 498 Bytes
Contents
module ActionView module Helpers module Tags # :nodoc: class TextArea < Base # :nodoc: def render options = @options.stringify_keys add_default_name_and_id(options) if size = options.delete("size") options["cols"], options["rows"] = size.split("x") if size.respond_to?(:split) end content_tag("textarea", options.delete("value") { value_before_type_cast(object) }, options) end end end end end
Version data entries
69 entries across 69 versions & 4 rubygems