class NotifyOn::Configuration

Attributes

default_email[RW]
default_pusher_channel[RW]
default_pusher_event[RW]
deliver_mail[RW]
mailer_class[RW]
pusher_app_id[RW]
pusher_key[RW]
pusher_secret[RW]
use_pusher_by_default[RW]

Public Class Methods

new() click to toggle source
# File lib/notify_on/configuration.rb, line 15
def initialize
  @deliver_mail = :now
  @mailer_class = 'NotifyOn::NotificationMailer'
  @use_pusher_by_default = false
end