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

                             

                 

                                                

               
                                





                                         
# 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