diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2015-05-16 11:00:17 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2015-05-16 11:00:17 +0530 |
commit | daba090dec94b87bee841b5784d85def55e3142a (patch) | |
tree | ab7acba0658681805c0de3b029b11f1ffc9528c4 /activesupport | |
parent | 97c482ff8eb652d4c18ab49fba034c506be902b8 (diff) | |
download | rails-daba090dec94b87bee841b5784d85def55e3142a.tar.gz rails-daba090dec94b87bee841b5784d85def55e3142a.tar.bz2 rails-daba090dec94b87bee841b5784d85def55e3142a.zip |
Pass over CHANGELOGS [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 3b905b1d24..4de0f2ae4c 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,9 +1,11 @@ -* Add Integer#positive? and Integer#negative? query methods in the vein of Fixnum#zero? - This makes it nicer to do things like bunch_of_numbers.select(&:positive?). +* Add `Integer#positive?` and `Integer#negative?` query methods + in the vein of `Fixnum#zero?`. + + This makes it nicer to do things like `bunch_of_numbers.select(&:positive?)`. *DHH* -* Encoding ActiveSupport::TimeWithZone to YAML now preserves the timezone information. +* Encoding `ActiveSupport::TimeWithZone` to YAML now preserves the timezone information. Fixes #9183. |