aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel.rb
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2018-02-24 17:04:15 +1030
committerMatthew Draper <matthew@trebex.net>2018-02-24 17:15:32 +1030
commit17ca17072dcdff11b3702a6b45f2fb0c8f8fe9a4 (patch)
tree38afd3ed74f8afda1c2959fefbc13f70b2e448e2 /activerecord/lib/arel.rb
parent5ecbeda0e225e4961977b5c516088cf12d92319f (diff)
parenteb3f968b5ffdd3b343e7d190f1aa0b36864f56a2 (diff)
downloadrails-17ca17072dcdff11b3702a6b45f2fb0c8f8fe9a4.tar.gz
rails-17ca17072dcdff11b3702a6b45f2fb0c8f8fe9a4.tar.bz2
rails-17ca17072dcdff11b3702a6b45f2fb0c8f8fe9a4.zip
Merge Arel into Active Record
Diffstat (limited to 'activerecord/lib/arel.rb')
-rw-r--r--activerecord/lib/arel.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/activerecord/lib/arel.rb b/activerecord/lib/arel.rb
new file mode 100644
index 0000000000..c327caeac0
--- /dev/null
+++ b/activerecord/lib/arel.rb
@@ -0,0 +1,39 @@
+# frozen_string_literal: true
+require 'arel/errors'
+
+require 'arel/crud'
+require 'arel/factory_methods'
+
+require 'arel/expressions'
+require 'arel/predications'
+require 'arel/window_predications'
+require 'arel/math'
+require 'arel/alias_predication'
+require 'arel/order_predications'
+require 'arel/table'
+require 'arel/attributes'
+require 'arel/compatibility/wheres'
+
+require 'arel/visitors'
+require 'arel/collectors/sql_string'
+
+require 'arel/tree_manager'
+require 'arel/insert_manager'
+require 'arel/select_manager'
+require 'arel/update_manager'
+require 'arel/delete_manager'
+require 'arel/nodes'
+
+module Arel
+ VERSION = '10.0.0'
+
+ def self.sql raw_sql
+ Arel::Nodes::SqlLiteral.new raw_sql
+ end
+
+ def self.star
+ sql '*'
+ end
+ ## Convenience Alias
+ Node = Arel::Nodes::Node
+end