Sha256: 52c034fa8ae7ed4d7325db0a5a1d5da9356b256404ab32687137024a6010006e
Contents?: true
Size: 454 Bytes
Versions: 7
Compression:
Stored size: 454 Bytes
Contents
module Voltron class Config def notify @notify ||= Notify.new end class Notify attr_accessor :use_queue, :delay # SMS config settings attr_accessor :sms_account_sid, :sms_auth_token, :sms_from # Email config settings attr_accessor :email_from def initialize @use_queue ||= false @delay ||= 0.seconds @email_from ||= "no-reply@example.com" end end end end
Version data entries
7 entries across 7 versions & 1 rubygems