[前][次][番号順一覧][スレッド一覧]

ruby-changes:55635

From: usa <ko1@a...>
Date: Tue, 30 Apr 2019 22:45:01 +0900 (JST)
Subject: [ruby-changes:55635] usa:c8f77d37bc (ruby_2_5): merge revision(s) 64057: [Backport #14952]

https://git.ruby-lang.org/ruby.git/commit/?id=c8f77d37bc

From c8f77d37bcc297af49106dfc398c94d4db867a17 Mon Sep 17 00:00:00 2001
From: usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
Date: Tue, 30 Apr 2019 12:55:24 +0000
Subject: merge revision(s) 64057: [Backport #14952]

	Remove obsolete comment from Module#define_method documentation

	Since 2.5, Module#define_method is public. (feature #14133)

	Co-Authored-By: Miguel Landaeta <miguel@m...>

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_5@67703 b2dd03c8-39d4-4d8f-98ff-823fe69b080e

diff --git a/proc.c b/proc.c
index dfe9acd..b14d144 100644
--- a/proc.c
+++ b/proc.c
@@ -1859,16 +1859,14 @@ rb_mod_public_instance_method(VALUE mod, VALUE vid) https://github.com/ruby/ruby/blob/trunk/proc.c#L1859
  *  Defines an instance method in the receiver. The _method_
  *  parameter can be a +Proc+, a +Method+ or an +UnboundMethod+ object.
  *  If a block is specified, it is used as the method body. This block
- *  is evaluated using <code>instance_eval</code>, a point that is
- *  tricky to demonstrate because <code>define_method</code> is private.
- *  (This is why we resort to the +send+ hack in this example.)
+ *  is evaluated using <code>instance_eval</code>.
  *
  *     class A
  *       def fred
  *         puts "In Fred"
  *       end
  *       def create_method(name, &block)
- *         self.class.send(:define_method, name, &block)
+ *         self.class.define_method(name, &block)
  *       end
  *       define_method(:wilma) { puts "Charge it!" }
  *     end
diff --git a/version.h b/version.h
index a85a468..661fba2 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/version.h#L1
 #define RUBY_VERSION "2.5.6"
 #define RUBY_RELEASE_DATE "2019-04-30"
-#define RUBY_PATCHLEVEL 160
+#define RUBY_PATCHLEVEL 161
 
 #define RUBY_RELEASE_YEAR 2019
 #define RUBY_RELEASE_MONTH 4
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]