module TACore

This module holds every public class and method need to to authenticate and configure the TACore GEM

Attributes

api_key[RW]
api_url[RW]
client_id[RW]
client_secret[RW]

Public Class Methods

configuration() click to toggle source
# File lib/tacore.rb, line 32
def self.configuration
  @configuration ||=  Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/tacore.rb, line 36
def self.configure
  yield(configuration) if block_given?
end