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

mention Array#sum with third-party gems.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54604 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2016-04-15 15:26:48 +00:00
parent d1d95056a3
commit 4873e62103

10
NEWS
View file

@ -68,9 +68,15 @@ with all sufficient information, see the ChangeLog file or Redmine
* Add an into option. [Feature #11191]
=== Stdlib compatibility issues (excluding feature bug fixes)
=== Compatibility issues (excluding feature bug fixes)
=== Built-in global variables compatibility issues
* Array#sum is implemented. Ruby itself has no compatibility problem
because Ruby didn't have sum method for arrays before Ruby 2.4.
However many third party gems, activesupport, facets, simple_stats, etc,
defines sum method. These implementations are mostly compatible but
there are subtle differences.
Ruby's sum method should be mostly compatible but it is impossible to
be perfectly compatible with all of them.
=== C API updates