module ActionChannels

Constants

VERSION

Attributes

logger[W]

Public Class Methods

configure() { |self| ... } click to toggle source
# File lib/action_channels.rb, line 19
def configure(&block)
  yield(self)
end
logger() click to toggle source
# File lib/action_channels.rb, line 23
def logger
  @logger ||= Logger.new('action_channels.log')
end