aboutsummaryrefslogblamecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/week_field.rb
blob: 572535d1d63650bcd8db9234ad9f752fb95a478a (plain) (tree)
1
2
3
4
5
6
7
8
9

                             

                 

                                               

               
                                
                                          




             
# frozen_string_literal: true

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

          def format_date(value)
            value.try(:strftime, "%Y-W%V")
          end
      end
    end
  end
end