Class: Qube::Client
- Inherits:
-
Object
- Object
- Qube::Client
- Defined in:
- lib/qube/transport/client.rb
Overview
Just wrapper, need for the future work
Instance Method Summary collapse
-
#initialize ⇒ Client
constructor
A new instance of Client.
- #method_missing(m, *args) ⇒ Object
Constructor Details
#initialize ⇒ Client
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 |