Class: Billogram::Client

Inherits:
Object
  • Object
show all
Includes:
HTTParty
Defined in:
lib/billogram/client.rb

Instance Method Summary collapse

Constructor Details

#initialize(username, password, base_uri) ⇒ Client

Returns a new instance of Client.

[View source]

6
7
8
# File 'lib/billogram/client.rb', line 6

def initialize(username, password, base_uri)
  self.class.default_options.merge!(base_uri: base_uri, basic_auth: {username: username, password: password})
end

Instance Method Details

#get(*args) ⇒ Object

[View source]

10
11
12
# File 'lib/billogram/client.rb', line 10

def get(*args)
  self.class.get(*args)
end