Method: Ibanity.method_missing
- Defined in:
- lib/ibanity.rb
.method_missing(method_name, *args, &block) ⇒ Object
100 101 102 103 104 105 106 |
# File 'lib/ibanity.rb', line 100 def method_missing(method_name, *args, &block) if client.respond_to?(method_name) client.__send__(method_name, *args, &block) else super end end |