Method: Genability.method_missing
- Defined in:
- lib/genability.rb
.method_missing(method, *args, &block) ⇒ Object
Delegate to Genability::Client
20 21 22 23 |
# File 'lib/genability.rb', line 20 def self.method_missing(method, *args, &block) return super unless client.respond_to?(method) client.send(method, *args, &block) end |