contrast / exceptional

This URL has Read+Write access

exceptional / lib / exceptional.rb
100644 19 lines (17 sloc) 0.446 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$:.unshift File.dirname(__FILE__)
 
require 'exceptional/exception_data'
require 'exceptional/version'
require 'exceptional/log'
require 'exceptional/config'
require 'exceptional/remote'
require 'exceptional/api'
require 'exceptional/bootstrap'
 
module Exceptional
  class << self
    include Exceptional::Config
    include Exceptional::Api
    include Exceptional::Remote
    include Exceptional::Log
    include Exceptional::Bootstrap
  end
end