class ExceptionNotificationServer::Configuration

Attributes

access_callback[RW]
name[RW]
password[RW]
time_format[RW]

Public Class Methods

new(name: 'webhook', password: '', access_callback: nil, time_format: '%m/%d/%Y %H:%M:%S') click to toggle source
# File lib/exception_notification_server.rb, line 17
def initialize(name: 'webhook', password: '', access_callback: nil, time_format: '%m/%d/%Y %H:%M:%S')
  @name, @password, @access_callback, @time_format = name, password, access_callback, time_format
end