Method: HuobiApi.method_missing
- Defined in:
- lib/huobi_api.rb
.method_missing(method, *args, &block) ⇒ Object
46 47 48 49 |
# File 'lib/huobi_api.rb', line 46 def self.method_missing(method, *args, &block) return super unless client.respond_to?(method) client.send method, *args, &block end |