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


                 
                                               

               
                                





                                         
module ActionView
  module Helpers
    module Tags
      class MonthField < DatetimeField #:nodoc:
        private

          def format_date(value)
            value.try(:strftime, "%Y-%m")
          end
      end
    end
  end
end