module Outliers

Constants

VERSION

Public Instance Methods

config_path(path=nil) click to toggle source
# File lib/outliers.rb, line 27
def config_path(path=nil)
  @config_path ||= path ? path : './'
end
logger(logger=nil) click to toggle source
# File lib/outliers.rb, line 23
def logger(logger=nil)
  @logger ||= logger ? logger : Logger.new(STDOUT)
end