module Bamboozled

Constants

VERSION

Public Class Methods

client(subdomain: nil, api_key: nil, httparty_options: {}) click to toggle source

Creates a standard client that will raise all errors it encounters

# File lib/bamboozled.rb, line 20
def client(subdomain: nil, api_key: nil, httparty_options: {})
  Bamboozled::Base.new(subdomain: subdomain, api_key: api_key, httparty_options: httparty_options)
end