mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* NEWS: add a note for Module#using.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
632ed84cf1
commit
4dd0652561
2 changed files with 13 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Jun 14 14:33:47 2013 Shugo Maeda <shugo@ruby-lang.org>
|
||||||
|
|
||||||
|
* NEWS: add a note for Module#using.
|
||||||
|
|
||||||
Fri Jun 14 13:40:27 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Fri Jun 14 13:40:27 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* .travis.yml (before_script): update config files.
|
* .travis.yml (before_script): update config files.
|
||||||
|
|
13
NEWS
13
NEWS
|
@ -26,6 +26,11 @@ with all sufficient information, see the ChangeLog file.
|
||||||
* New methods:
|
* New methods:
|
||||||
* Kernel#singleton_method
|
* Kernel#singleton_method
|
||||||
|
|
||||||
|
* Module
|
||||||
|
* New methods:
|
||||||
|
* Module#using, which activates refinements of the specified module only
|
||||||
|
in the current class or module definition.
|
||||||
|
|
||||||
* Mutex
|
* Mutex
|
||||||
* misc
|
* misc
|
||||||
* Mutex#owned? is no longer experimental.
|
* Mutex#owned? is no longer experimental.
|
||||||
|
@ -43,14 +48,14 @@ with all sufficient information, see the ChangeLog file.
|
||||||
|
|
||||||
=== Core classes compatibility issues (excluding feature bug fixes)
|
=== Core classes compatibility issues (excluding feature bug fixes)
|
||||||
|
|
||||||
* Kernel#untrusted?, untrust, and trust
|
|
||||||
* These methods are deprecated and their behavior is same as tainted?,
|
|
||||||
taint, and untaint, respectively. If $VERBOSE is true, they show warnings.
|
|
||||||
|
|
||||||
* IO
|
* IO
|
||||||
* incompatible changes:
|
* incompatible changes:
|
||||||
* open ignore internal encoding if external encoding is ASCII-8BIT.
|
* open ignore internal encoding if external encoding is ASCII-8BIT.
|
||||||
|
|
||||||
|
* Kernel#untrusted?, untrust, and trust
|
||||||
|
* These methods are deprecated and their behavior is same as tainted?,
|
||||||
|
taint, and untaint, respectively. If $VERBOSE is true, they show warnings.
|
||||||
|
|
||||||
* Module#ancestors
|
* Module#ancestors
|
||||||
* The ancestors of a singleton class now include singleton classes,
|
* The ancestors of a singleton class now include singleton classes,
|
||||||
in particular itself.
|
in particular itself.
|
||||||
|
|
Loading…
Reference in a new issue