Method: Datapimp::Clients::Keen.method_missing
- Defined in:
- lib/datapimp/clients/keen.rb
.method_missing(meth, *args, &block) ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/datapimp/clients/keen.rb', line 6 def self.method_missing(meth, *args, &block) if client.respond_to?(meth) return client.send(meth, *args, &block) end super end |