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

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

  VERSION = "0.3.1"
end