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
Aaron Patterson 3bc3b145ae Squashed commit of the following:
commit 3c6727732b349551df342b9eee66ed53d47e53eb
Author: Aaron Patterson <aaron.patterson@gmail.com>
Date:   Mon Aug 23 14:11:34 2010 -0700

    adding table alias
2010-08-23 14:24:00 -07:00

28 lines
603 B
Ruby

require 'arel/crud'
require 'arel/version'
require 'arel/table'
require 'arel/attributes'
require 'arel/compatibility/wheres'
#### these are deprecated
# The Arel::Relation constant is referenced in Rails
require 'arel/relation'
####
require 'arel/tree_manager'
require 'arel/insert_manager'
require 'arel/select_manager'
require 'arel/update_manager'
require 'arel/delete_manager'
require 'arel/nodes'
#### these are deprecated
require 'arel/deprecated'
require 'arel/sql/engine'
require 'arel/sql_literal'
require 'arel/expression'
####
require 'arel/visitors/to_sql'
require 'arel/visitors/dot'