From 948de0a5f3f82ee8d5b0b52993929a67b7d947e2 Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Sat, 28 Aug 2010 11:22:33 -0500 Subject: [PATCH] pass the dontintercept block down when delegating to the access implementation. --- lib/v8/access.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/v8/access.rb b/lib/v8/access.rb index 42da56c..a2294a9 100644 --- a/lib/v8/access.rb +++ b/lib/v8/access.rb @@ -32,8 +32,8 @@ module V8 end end - def method_missing(name, *args) - @impl.send(name, *args) + def method_missing(name, *args, &blk) + @impl.send(name, *args, &blk) end end