* NEWS: fix the description for Refinements.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38496 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2012-12-20 08:29:41 +00:00
Родитель ea01ffa569
Коммит f1f05e75cd
2 изменённых файлов: 8 добавлений и 7 удалений

Просмотреть файл

@ -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),

11
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.