aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel.rb
blob: a9fe15c8247a0fddbc9ee6966e1ecc8239f5e076 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'active_support/inflector'
require 'active_support/core_ext/module/delegation'
require 'active_support/core_ext/class/attribute_accessors'

require 'active_record'
require 'active_record/connection_adapters/abstract/quoting'

module Arel
  require 'arel/algebra'
  require 'arel/engines'
  autoload :Session, 'arel/session'

  VERSION = "0.1.2"
end