aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/week_field.rb
blob: 5a403ed91ddd4fb67f918d89f0c3e3ebe68e0a3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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