Method: BlippexAPI.method_missing
- Defined in:
- lib/blippex_api.rb
.method_missing(method, *args, &block) ⇒ Object
Delegate to BlippexAPI::Client.new
18 19 20 21 |
# File 'lib/blippex_api.rb', line 18 def method_missing method, *args, &block return super unless new.respond_to? method new.send method, *args, &block end |