module ErrorInbox

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/error_inbox.rb, line 11
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/error_inbox.rb, line 15
def self.configure
  yield configuration if block_given?
end
notify(ex, env) click to toggle source
# File lib/error_inbox.rb, line 6
def self.notify(ex, env)
  notifier = Notifier.new(env)
  notifier.save(ex)
end