public
Rubygem
Description:
Homepage:
Clone URL: git://github.com/contrast/exceptional.git
exceptional / lib / exceptional.rb
100644 20 lines (17 sloc) 0.447 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$:.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