Don't add classes to the top level namespace

I've been writing too much Rust. My mind is still in the mode of things
being auto-namespaced based on the file...
This commit is contained in:
Sean Griffin 2015-10-20 14:22:07 -06:00
parent 8b64aba17b
commit 0ceaa733aa

@ -1,3 +1,5 @@
module ActiveRecord
module ConnectionAdapters
module DetermineIfPreparableVisitor
attr_reader :preparable
@ -16,3 +18,5 @@ def visit_Arel_Nodes_SqlLiteral(*)
super
end
end
end
end