Class: Billogram::Client
- Inherits:
-
Object
- Object
- Billogram::Client
- Includes:
- HTTParty
- Defined in:
- lib/billogram/client.rb
Instance Method Summary collapse
- #get(*args) ⇒ Object
-
#initialize(username, password, base_uri) ⇒ Client
constructor
A new instance of Client.
Constructor Details
permalink #initialize(username, password, base_uri) ⇒ Client
Returns a new instance of Client.
6 7 8 |
# File 'lib/billogram/client.rb', line 6 def initialize(username, password, base_uri) self.class..merge!(base_uri: base_uri, basic_auth: {username: username, password: password}) end |
Instance Method Details
permalink #get(*args) ⇒ Object
[View source]
10 11 12 |
# File 'lib/billogram/client.rb', line 10 def get(*args) self.class.get(*args) end |