aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/time/publicize_conversion_methods.rb
blob: fc3f2978438036dd30bc8871d8842d5c3497e873 (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 (m = instance_method(method) rescue nil) && private_instance_methods.include?(m.name)
      public method
    end
  end
end