Sha256: 8044ff99f63043f3fe7f80ddd7126651b401218186d03a2ea50eed86cbd9a892

Contents?: true

Size: 651 Bytes

Versions: 6

Compression:

Stored size: 651 Bytes

Contents

require 'active_support/logger'
require 'models/college'
require 'models/course'
require 'models/professor'
require "models/other_dog"

module ARTest
  def self.connection_name
    ENV['ARCONN'] || config['default_connection']
  end

  def self.connection_config
    config['connections'][connection_name]
  end

  def self.connect
    puts "Using #{connection_name}"
    ActiveRecord::Base.logger = ActiveSupport::Logger.new("debug.log", 0, 100 * 1024 * 1024)
    ActiveRecord::Base.configurations = connection_config
    ActiveRecord::Base.establish_connection :arunit
    ARUnit2Model.establish_connection :arunit2
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/support/connection.rb
ibm_db-5.1.0-x86-mingw32 test/support/connection.rb
ibm_db-5.0.5-x86-mingw32 test/support/connection.rb
ibm_db-5.0.4-x86-mingw32 test/support/connection.rb
ibm_db-5.0.3-x86-mingw32 test/support/connection.rb
ibm_db-5.0.2-x86-mingw32 test/support/connection.rb