1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel.rb

14 lines
356 B
Ruby
Raw Normal View History

2009-09-14 16:36:41 -04:00
require 'active_support/inflector'
require 'active_support/core_ext/module/delegation'
require 'active_support/core_ext/class/attribute_accessors'
require 'active_record'
2009-04-23 10:52:48 -04:00
require 'active_record/connection_adapters/abstract/quoting'
2009-09-30 23:21:42 -04:00
module Arel
require 'arel/algebra'
require 'arel/engines'
autoload :Session, 'arel/session'
VERSION = "0.1.2"
2009-09-30 23:21:42 -04:00
end