aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/time/publicize_conversion_methods.rb
blob: e1878d3c205d85ee2959a45ab7fe096e0a347a12 (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                                                                 
                                                                                                    



                   
require 'date'

class Time
  # Ruby 1.8-cvs and early 1.9 series define private Time#to_date
  %w(to_date to_datetime).each do |method|
    if private_instance_methods.include?(method) || private_instance_methods.include?(method.to_sym)
      public method
    end
  end
end