1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add more information to the CHANGELOG entry [ci skip]

This commit is contained in:
Rafael Mendonça França 2013-02-24 18:36:45 -03:00
parent a06623609e
commit 51e963790f

View file

@ -2,6 +2,18 @@
* Added `ActiveSupport::TimeWithZone#to_r` for `Time#at` compatibility.
Before this change:
Time.zone = 'Tokyo'
time = Time.zone.now
time == Time.at(time) # => false
After the change:
Time.zone = 'Tokyo'
time = Time.zone.now
time == Time.at(time) # => true
*stopdropandrew*
* `ActiveSupport::NumberHelper#number_to_human` returns the number unaltered when