Method: FuturesPipeline.method_missing
- Defined in:
- lib/futures_pipeline.rb
.method_missing(method, *args, &block) ⇒ Object
Delegate to FuturesPipeline::Client
13 14 15 16 |
# File 'lib/futures_pipeline.rb', line 13 def method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end |