module Hertz::Twilio

Constants

VERSION

Public Class Methods

configure() { |self| ... } click to toggle source
# File lib/hertz/twilio.rb, line 14
def configure
  yield(self)
end
deliver_notification(notification) click to toggle source
# File lib/hertz/twilio.rb, line 18
def deliver_notification(notification)
  Hertz::Twilio::NotificationDeliveryJob.perform_later(notification)
end