module BloomNetCenterClient

Constants

GLOBAL_OPTS
VERSION

Public Class Methods

new(opts={}) click to toggle source
# File lib/bloom_net_center_client.rb, line 22
def self.new(opts={})
  Client.new(global_opts.merge(opts))
end

Private Class Methods

global_opts() click to toggle source
# File lib/bloom_net_center_client.rb, line 28
def self.global_opts
  GLOBAL_OPTS.each_with_object({}) do |var, hash|
    hash[var] = BloomNetCenterClient.configuration.send(var)
  end
end