We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2572f0 commit 090feeaCopy full SHA for 090feea
lib/arjdbc/jdbc.rb
@@ -2,6 +2,11 @@
2
3
module ArJdbc
4
5
+ # @private
6
+ AR40 = ::ActiveRecord::VERSION::MAJOR > 3
7
8
+ AR42 = ::ActiveRecord::VERSION::STRING >= '4.2'
9
+
10
class << self
11
12
def warn(message, once = nil)
lib/arjdbc/mysql/adapter.rb
@@ -6,11 +6,6 @@
module MySQL
- # @private
- AR40 = ::ActiveRecord::VERSION::MAJOR > 3
- AR42 = ::ActiveRecord::VERSION::STRING >= '4.2'
13
-
14
require 'arjdbc/mysql/column'
15
require 'arjdbc/mysql/bulk_change_table'
16
require 'arjdbc/mysql/explain_support'
0 commit comments