module PINS

Constants

Version

Public Class Methods

config() click to toggle source
# File lib/postmark-inbound/config.rb, line 3
def self.config
  Config.shared
end
handlers() click to toggle source
# File lib/postmark-inbound/handler.rb, line 3
def self.handlers
  Handler.handlers
end
logger() click to toggle source
# File lib/postmark-inbound/logger.rb, line 10
def self.logger
  @logger ||= NullLogger.new()
end
logger=(logger) click to toggle source
# File lib/postmark-inbound/logger.rb, line 6
def self.logger=(logger)
  @logger = logger
end