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