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

                 

                                                

               
                                





                                         
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