Sha256: 1e1605593431fcc664152548f8464aa05b5826dd023f66d1c2e2f50053606820
Contents?: true
Size: 856 Bytes
Versions: 55
Compression:
Stored size: 856 Bytes
Contents
module DispatchRider class Publisher module ConfigurationReader class << self def load_config(configuration, publisher) configure_notification_services(configuration.notification_services, publisher) configure_destinations(configuration.destinations, publisher) end private def configure_notification_services(notification_services, publisher) notification_services.each do |service| publisher.register_notification_service(service.name, service.options) end end def configure_destinations(destinations, publisher) destinations.each do |destination| publisher.register_destination(destination.name, destination.service, destination.channel, destination.options) end end end end end end
Version data entries
55 entries across 55 versions & 1 rubygems