mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Added Time#end_of_day to get 23:59:59 of that day [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5495 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
da3eae4922
commit
79c309e43b
2 changed files with 7 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Added Time#end_of_day to get 23:59:59 of that day [DHH]
|
||||
|
||||
* Don't quote hash keys in Hash#to_json if they're valid JavaScript identifiers. Disable this with ActiveSupport::JSON.unquote_hash_key_identifiers = false if you need strict JSON compliance. [Sam Stephenson]
|
||||
|
||||
* Lazily load the Unicode Database in the UTF-8 Handler [Rick Olson]
|
||||
|
|
|
@ -149,6 +149,11 @@ module ActiveSupport #:nodoc:
|
|||
alias :at_midnight :beginning_of_day
|
||||
alias :at_beginning_of_day :beginning_of_day
|
||||
|
||||
# Returns a new Time representing the end of the day (23:59:59)
|
||||
def end_of_day
|
||||
change(:hour => 23, :minute => 59, :sec => 59)
|
||||
end
|
||||
|
||||
# Returns a new Time representing the start of the month (1st of the month, 0:00)
|
||||
def beginning_of_month
|
||||
#self - ((self.mday-1).days + self.seconds_since_midnight)
|
||||
|
|
Loading…
Reference in a new issue