aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date_time
diff options
context:
space:
mode:
authorMark J. Titorenko <mark@titorenko.net>2012-05-04 20:27:32 +0100
committerMark J. Titorenko <mark@titorenko.net>2012-05-04 20:27:32 +0100
commit145cc69524c43d24c257be30a7ea458a284d164f (patch)
treecd91f30179b00b20b158df30b1963e691e0c23d9 /activesupport/lib/active_support/core_ext/date_time
parent7c7fb3a862651d87c4071e40a1799b973f626b11 (diff)
downloadrails-145cc69524c43d24c257be30a7ea458a284d164f.tar.gz
rails-145cc69524c43d24c257be30a7ea458a284d164f.tar.bz2
rails-145cc69524c43d24c257be30a7ea458a284d164f.zip
added beginning_of_hour support to core_ext calculations for Time and DateTime
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date_time')
-rw-r--r--activesupport/lib/active_support/core_ext/date_time/calculations.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_time/calculations.rb b/activesupport/lib/active_support/core_ext/date_time/calculations.rb
index 6f3fd416c1..b759dcc824 100644
--- a/activesupport/lib/active_support/core_ext/date_time/calculations.rb
+++ b/activesupport/lib/active_support/core_ext/date_time/calculations.rb
@@ -81,6 +81,17 @@ class DateTime
change(:hour => 23, :min => 59, :sec => 59)
end
+ # Returns a new DateTime representing the start of the hour (hh:00:00)
+ def beginning_of_hour
+ change(:min => 0)
+ end
+ alias :at_beginning_of_hour :beginning_of_hour
+
+ # Returns a new DateTime representing the end of the hour (hh:59:59)
+ def end_of_hour
+ change(:min => 59, :sec => 59)
+ end
+
# 1.9.3 defines + and - on DateTime, < 1.9.3 do not.
if DateTime.public_instance_methods(false).include?(:+)
def plus_with_duration(other) #:nodoc: