Class: Qube::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/qube/transport/client.rb

Overview

Just wrapper, need for the future work

Instance Method Summary collapse

Constructor Details

#initializeClient

Returns a new instance of Client.



4
5
6
# File 'lib/qube/transport/client.rb', line 4

def initialize
  @transport = Qube::HTTP.new
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(m, *args) ⇒ Object



8
9
10
# File 'lib/qube/transport/client.rb', line 8

def method_missing(m, *args)
  @transport.send(m, *args)
end