aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/time_field.rb
blob: a3941860c9f8c9debca78b7b470b06a042482dde (plain) (tree)
1
2
3
4
5
6
7
8
9


                 





                                              



         
module ActionView
  module Helpers
    module Tags
      class TimeField < DatetimeField #:nodoc:
        private

          def format_date(value)
            value.try(:strftime, "%T.%L")
          end
      end
    end
  end
end