From ba1bd089c8445e83f99cb07563234dd8bdbf0f55 Mon Sep 17 00:00:00 2001 From: shugo Date: Thu, 1 Nov 2012 07:48:29 +0000 Subject: [PATCH] * NEWS: add note for Module#refine, Module#refinements, Module#using, and Kernel#using. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ NEWS | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/ChangeLog b/ChangeLog index cc85cfc4e1..10695875fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Nov 1 16:44:36 2012 Shugo Maeda + + * NEWS: add note for Module#refine, Module#refinements, + Module#using, and Kernel#using. + Thu Nov 1 14:41:47 2012 Shugo Maeda * eval.c (rb_using_module): using should be used indirectly. diff --git a/NEWS b/NEWS index 596a291cd8..b63776f388 100644 --- a/NEWS +++ b/NEWS @@ -39,6 +39,8 @@ with all sufficient information, see the ChangeLog file. * Kernel * added method: * added Kernel#Hash conversion method like Array() or Float(). + * added Kernel#using, which imports refinements into the current scope. + [experimental] * extended method: * Kernel#warn accepts multiple args in like puts. * Kernel#caller accepts second optional argument `n' which specify @@ -64,6 +66,12 @@ with all sufficient information, see the ChangeLog file. * added Module#prepend which is similar to Module#include, however a method in the prepended module overrides the corresponding method in the prepending module. + * added Module#refine, which extends a class or module locally. + [experimental] + * added Module#refinements, which returns refinements defined in the + receiver. [experimental] + * added Module#using, which imports refinements into the receiver. + [experimental] * extended method: * Module#define_method accepts a UnboundMethod from a Module. * Module#const_get accepts a qualified constant string, e.g.