mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Merge changes from ruby_1_8 except for the post-1.8.7 part.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24524 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3711c63b6a
commit
5aff5e79b8
1 changed files with 15 additions and 2 deletions
|
@ -52,7 +52,7 @@ with all sufficient information, see the ChangeLog file.
|
||||||
* Array#flatten
|
* Array#flatten
|
||||||
* Array#flatten!
|
* Array#flatten!
|
||||||
|
|
||||||
Takes an optional argument that determines the level of recursion
|
Take an optional argument that determines the level of recursion
|
||||||
to flatten.
|
to flatten.
|
||||||
|
|
||||||
* Array#eql?
|
* Array#eql?
|
||||||
|
@ -65,7 +65,7 @@ with all sufficient information, see the ChangeLog file.
|
||||||
* Array#index
|
* Array#index
|
||||||
* Array#rindex
|
* Array#rindex
|
||||||
|
|
||||||
Take a block instead of an argument.
|
Use a given block if no argument is given.
|
||||||
|
|
||||||
* Array#collect!
|
* Array#collect!
|
||||||
* Array#map!
|
* Array#map!
|
||||||
|
@ -623,6 +623,19 @@ with all sufficient information, see the ChangeLog file.
|
||||||
# After (works with any version)
|
# After (works with any version)
|
||||||
hd = Digest::MD5.hexdigest("string")
|
hd = Digest::MD5.hexdigest("string")
|
||||||
|
|
||||||
|
* Digest::Base#==
|
||||||
|
|
||||||
|
* self == string
|
||||||
|
|
||||||
|
Automatic detection between binary digest values and hexadecimal
|
||||||
|
digest values has been dropped. It is always assumed that a
|
||||||
|
binary digest value is given for comparison.
|
||||||
|
|
||||||
|
* self == md
|
||||||
|
|
||||||
|
Digest objects are compared by the resulting digest values, not
|
||||||
|
by the exact vector states.
|
||||||
|
|
||||||
* fileutils
|
* fileutils
|
||||||
|
|
||||||
* A minor implementation change breaks Rake <=0.7.1.
|
* A minor implementation change breaks Rake <=0.7.1.
|
||||||
|
|
Loading…
Reference in a new issue