mirror of
https://github.com/github/rails.git
synced 2026-01-14 00:57:58 -05:00
21 lines
504 B
Ruby
21 lines
504 B
Ruby
require 'logger'
|
|
require_dependency 'models/course'
|
|
|
|
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 = Logger.new("debug.log")
|
|
ActiveRecord::Base.configurations = connection_config
|
|
ActiveRecord::Base.establish_connection 'arunit'
|
|
Course.establish_connection 'arunit2'
|
|
end
|
|
end
|