aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/month_field.rb
blob: 463866a18117f2555689906a2d4bfbd3b939f555 (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 MonthField < DatetimeField # :nodoc:
        private
          def format_date(value)
            value.try(:strftime, "%Y-%m")
          end
      end
    end
  end
end