aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/sql/engine.rb
blob: d1a38807359120c76925fe6b35b4c71b25d08931 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module Arel
  module Sql
    class Engine
      def self.new thing
        warn "#{caller.first} -- Engine will be removed"
        thing
      end
    end
  end
end