summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--NEWS11
2 files changed, 8 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index ea60778ed2..db27b2f227 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 20 17:29:00 2012 Shugo Maeda <shugo@ruby-lang.org>
+
+ * NEWS: fix the description for Refinements.
+
Thu Dec 20 16:53:59 2012 Shugo Maeda <shugo@ruby-lang.org>
* vm_core.h (rb_vm_defineclass_type_t),
diff --git a/NEWS b/NEWS
index 041596e18f..1a9a3d5e1e 100644
--- a/NEWS
+++ b/NEWS
@@ -70,8 +70,6 @@ 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]
* added Kernel#__dir__ which returns a current dirname.
* added Kernel#caller_locations which returns an array of
frame information objects.
@@ -102,11 +100,7 @@ with all sufficient information, see the ChangeLog file.
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]
+ require "refinement" is necessary to use it. [experimental]
* extended method:
* Module#define_method accepts a UnboundMethod from a Module.
* Module#const_get accepts a qualified constant string, e.g.
@@ -184,6 +178,9 @@ with all sufficient information, see the ChangeLog file.
* toplevel
* added method:
* added main.define_method which defines a global function.
+ * added main.using, which imports refinements into the current file or
+ eval string. require "refinement" is necessary to use it.
+ [experimental]
* cgi
* Add HTML5 tag maker.