From 3d4761087371ade281fde53e73d37d5dcca88637 Mon Sep 17 00:00:00 2001 From: "Samuel E. Giddins" Date: Mon, 20 Jul 2015 23:38:07 -0700 Subject: [DepProxy] Also forward block args to the dep --- lib/bundler/dep_proxy.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bundler/dep_proxy.rb b/lib/bundler/dep_proxy.rb index 47de296810..0ce69531a2 100644 --- a/lib/bundler/dep_proxy.rb +++ b/lib/bundler/dep_proxy.rb @@ -34,8 +34,8 @@ module Bundler private - def method_missing(*args) - @dep.send(*args) + def method_missing(*args, &blk) + @dep.send(*args, &blk) end end end -- cgit v1.2.1