diff options
author | Samuel E. Giddins <segiddins@segiddins.me> | 2015-07-20 23:38:07 -0700 |
---|---|---|
committer | Samuel E. Giddins <segiddins@segiddins.me> | 2015-07-20 23:38:07 -0700 |
commit | 3d4761087371ade281fde53e73d37d5dcca88637 (patch) | |
tree | 2d98ad9e88f97cf7c2b3e30a0d73b9d072da6793 | |
parent | 1bc75e0b6748bd37dd92189e1f347abebcf78971 (diff) | |
download | bundler-3d4761087371ade281fde53e73d37d5dcca88637.tar.gz |
[DepProxy] Also forward block args to the dep
-rw-r--r-- | lib/bundler/dep_proxy.rb | 4 |
1 files 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 |