module BundleNotification

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/bundle_notification.rb, line 14
def self.config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/bundle_notification.rb, line 8
def self.configure
  @config = Config.new
  yield(@config)
  @config
end