active_delivery icon indicating copy to clipboard operation
active_delivery copied to clipboard

Ruby framework for keeping all types of notifications (mailers, push notifications, whatever) in one place

Results 2 active_delivery issues
Sort by recently updated
recently updated
newest added

With respect to our ApplicationDelivery class: ```ruby class ApplicationDelivery < ActiveDelivery::Base self.abstract_class = true register_line :mailer, ActiveDelivery::Lines::Mailer, resolver: ->(klass) { klass.name&.gsub(/Delivery$/, 'Notifier')&.safe_constantize } register_line :sms, ApplicationLine, resolver: ->(klass) { "#{klass.name}::SmsNotifier".safe_constantize...

enhancement
docs