Flowdock
method

arel_engine

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: ActiveRecord::Base
arel_engine() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/base.rb, line 902
      def arel_engine
        @arel_engine ||= begin
          if self == ActiveRecord::Base
            ActiveRecord::Base
          else
            connection_handler.connection_pools[name] ? self : superclass.arel_engine
          end
        end
      end
Register or log in to add new notes.