module Tinder

Constants

VERSION

Public Class Methods

logger() click to toggle source
# File lib/tinder.rb, line 12
def self.logger
  @logger ||= Logger.new(ENV['TINDER_LOGGING'] ? STDOUT : nil)
end
logger=(logger) click to toggle source
# File lib/tinder.rb, line 16
def self.logger=(logger)
  @logger = logger
end