aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date/calculations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date/calculations.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/date/calculations.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/date/calculations.rb b/activesupport/lib/active_support/core_ext/date/calculations.rb
index ab3b5e38f0..d1a30c3f73 100644
--- a/activesupport/lib/active_support/core_ext/date/calculations.rb
+++ b/activesupport/lib/active_support/core_ext/date/calculations.rb
@@ -16,10 +16,12 @@ module ActiveSupport #:nodoc:
end
module ClassMethods
+ # Finds yesterday's date, in the format similar to: Mon, 17 Mar 2008
def yesterday
::Date.today.yesterday
end
+ # Finds tommorrow's date, in the format similar to: Tue, 18 Mar 2008
def tomorrow
::Date.today.tomorrow
end