diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/drb/drb.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Feb 8 23:48:36 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp> + + * lib/drb/drb.rb: reject :instance_eval, :class_eval, :module_eval + [druby-ja:117] + Tue Feb 8 22:38:28 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> * keywords, parse.y: separate EXPR_VALUE from EXPR_BEG. diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb index 472f5c8db..6651b0a78 100644 --- a/lib/drb/drb.rb +++ b/lib/drb/drb.rb @@ -1395,7 +1395,7 @@ module DRb # # These methods are not callable via dRuby. INSECURE_METHOD = [ - :__send__ + :__send__, :instance_eval, :module_eval, :class_eval ] # Has a method been included in the list of insecure methods? |