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.configurations = connection_config ActiveRecord::Base.establish_connection :arunit end end