module ActOn::Configurable

Constants

CONFIG_KEYS

Public Class Methods

keys() click to toggle source
# File lib/act-on/configurable.rb, line 21
def keys
  @keys ||= CONFIG_KEYS
end

Public Instance Methods

client(options={}) click to toggle source

Delegate to a ActOn::Client

@return [ActOn::Client]

# File lib/act-on/configurable.rb, line 29
def client(options={})
  ::ActOn::Client.new(options)
end
configure() { |self| ... } click to toggle source

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

# File lib/act-on/configurable.rb, line 5
def configure
  yield self
  self
end