summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--NEWS8
2 files changed, 13 insertions, 0 deletions
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 <shugo@ruby-lang.org>
+
+ * NEWS: add note for Module#refine, Module#refinements,
+ Module#using, and Kernel#using.
+
Thu Nov 1 14:41:47 2012 Shugo Maeda <shugo@ruby-lang.org>
* 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.