module Tyntec

Base gem module. Allow global configuration Example: Tyntec.configure do |c|

c.api_key = ...
c.logger = ...

end

Constants

VERSION

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/tyntec_ruby.rb, line 30
def self.configure
  yield configuration
end

Private Class Methods

configuration() click to toggle source
# File lib/tyntec_ruby.rb, line 34
def self.configuration
  @configuration ||= Util::Configuration.new
end