Method: Infusionsoft.method_missing
- Defined in:
- lib/infusion-api.rb
.method_missing(method, *args, &block) ⇒ Object
Delegate to ApiInfusionsoft::Client
16 17 18 19 |
# File 'lib/infusion-api.rb', line 16 def method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end |