aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/date_field.rb
blob: 0e79609d52885ca21b185d64a8d96575fd0ca471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module ActionView
  module Helpers
    module Tags
      class DateField < TextField #:nodoc:
        def render
          options = @options.stringify_keys
          options["value"] = @options.fetch("value") { value(object).try(:to_date) }
          @options = options
          super
        end
      end
    end
  end
end