lib/killbill/helpers/active_merchant/gateway.rb in killbill-3.1.8 vs lib/killbill/helpers/active_merchant/gateway.rb in killbill-3.1.9

- old
+ new

@@ -36,9 +36,13 @@ end end @gateway.send(m, *args, &block) end + + def respond_to?(method, include_private=false) + @gateway.respond_to?(method, include_private) || super + end end end end end