module Notifications

Constants

VERSION
ViewHelpers

Public Class Methods

configuration() click to toggle source
# File lib/notifications.rb, line 12
def self.configuration
  @configuration
end
configure() { |configuration| ... } click to toggle source
# File lib/notifications.rb, line 6
def self.configure
  @configuration ||= Configuration.new

  yield @configuration if block_given?
end