module Rounders

rubocop:disable Style/CyclomaticComplexity, Style/AbcSize:

Constants

APP_PATH
CONFIG_DIR_PATH

Your code goes here…

VERSION

Attributes

logger[RW]

Public Class Methods

global?() click to toggle source
# File lib/rounders.rb, line 24
def global?
  !Pathname(Rounders::APP_PATH).exist?
end
handlers() click to toggle source
# File lib/rounders.rb, line 28
def handlers
  @_handlers ||= []
end
matchers() click to toggle source
# File lib/rounders.rb, line 32
def matchers
  @_matchers ||= {}
end
receivers() click to toggle source
# File lib/rounders.rb, line 36
def receivers
  @_receivers ||= []
end
stores() click to toggle source
# File lib/rounders.rb, line 40
def stores
  @_stores ||= {}
end