Module: ActiveCampaign::Config

Included in:
ActiveCampaign
Defined in:
lib/active-campaign-simple/config.rb

Constant Summary collapse

VALID_OPTION_KEYS =

The list of available options

[
  :api_url,
  :api_key,
  :api_logger,
  :user_agent # allows you to change the User-Agent of the request headers
].freeze

Instance Method Summary collapse

Instance Method Details

#api_loggerObject



33
34
35
# File 'lib/active-campaign-simple/config.rb', line 33

def api_logger
  @api_logger || ActiveCampaign::Logger.new
end

#configure {|_self| ... } ⇒ Object

Convenience method to allow configuration options to be set in a block

Yields:

  • (_self)

Yield Parameters:



18
19
20
# File 'lib/active-campaign-simple/config.rb', line 18

def configure
  yield self
end

#optionsObject

Create a hash of options and their values



23
24
25
26
27
# File 'lib/active-campaign-simple/config.rb', line 23

def options
  options = {}
  VALID_OPTION_KEYS.each{|k| options[k] = send(k)}
  options
end

#user_agentObject



29
30
31
# File 'lib/active-campaign-simple/config.rb', line 29

def user_agent
  @user_agent ||= "active-campaign-simple-#{VERSION} (RubyGem)"
end