aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/month_field.rb
blob: 4c0fb846eef39107840169ced25900c046d0d612 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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