aboutsummaryrefslogblamecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/month_field.rb
blob: b582bb4f790859bb97df195f8aa03c16fd27e6d9 (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&.strftime("%Y-%m")
          end
      end
    end
  end
end