module ActiveCampaign

Constants

VERSION

The version of the gem

Public Class Methods

method_missing(method, *args, **kwargs) click to toggle source

Delegate to ActiveCampaign::Client

Calls superclass method
# File lib/active-campaign-simple.rb, line 16
def method_missing(method, *args, **kwargs)
  return super unless new.respond_to?(method)
  new.send(method, *args, **kwargs)
end
new(options={}) click to toggle source

Alias for ActiveCampaign::Client.new

@return [ActiveCampaign::Client]

# File lib/active-campaign-simple.rb, line 11
def new(options={})
  ActiveCampaign::Client.new(options)
end
respond_to?(method, include_private = false) click to toggle source
Calls superclass method
# File lib/active-campaign-simple.rb, line 21
def respond_to?(method, include_private = false)
  new.respond_to?(method, include_private) || super(method, include_private)
end