Module: FindWithOrder

Defined in:
lib/find_with_order.rb,
lib/find_with_order/version.rb

Defined Under Namespace

Modules: MysqlSupport, PGSupport

Constant Summary collapse

VERSION =
"1.3.1"

Class Method Summary collapse

Class Method Details

.supporterObject



8
9
10
11
# File 'lib/find_with_order.rb', line 8

def supporter
  return FindWithOrder::PGSupport if defined?(PG)
  return FindWithOrder::MysqlSupport
end