module Billogram

Constants

BASE_URI
VERSION

Attributes

base_uri[W]
password[RW]
username[RW]

Public Class Methods

base_uri() click to toggle source
# File lib/billogram.rb, line 54
def base_uri
  @base_uri ||= BASE_URI
end
client() click to toggle source
# File lib/billogram.rb, line 46
def client
  @client ||= Client.new(username, password, base_uri)
end
configure() { |self| ... } click to toggle source
# File lib/billogram.rb, line 50
def configure
  yield self if block_given?
end