module Eventflit
Used for configuring API credentials and creating Channel
objects
Constants
- VERSION
Attributes
logger[W]
Public Class Methods
default_client()
click to toggle source
# File lib/eventflit.rb, line 55 def default_client @default_client ||= begin cli = Eventflit::Client ENV['EVENTFLIT_URL'] ? cli.from_env : cli.new end end
logger()
click to toggle source
# File lib/eventflit.rb, line 47 def logger @logger ||= begin log = Logger.new($stdout) log.level = Logger::INFO log end end