Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #10375: document_date_calc_class_methods.2.diff

File document_date_calc_class_methods.2.diff, 0.7 kB (added by kampers, 5 months ago)
  • activesupport/lib/active_support/core_ext/date/calculations.rb

    old new  
    1616        end 
    1717 
    1818        module ClassMethods 
     19          # Returns a new Date representing the date 1 day ago (i.e. yesterday's date). 
    1920          def yesterday 
    2021            ::Date.today.yesterday 
    2122          end 
    2223           
     24          # Returns a new Date representing the date 1 day after today (i.e. tomorrow's date). 
    2325          def tomorrow 
    2426            ::Date.today.tomorrow 
    2527          end