Sha256: 424ce3d7c919d04c6933ec7cca62ba08891e21fdae8aeacfcc40cd19ca64b654

Contents?: true

Size: 1.94 KB

Versions: 3

Compression:

Stored size: 1.94 KB

Contents

# frozen_string_literal: true

# set adapter to use, default is sqlite3
# to use an alternative adapter run => rake spec DB='postgresql'
db_name = ENV['DB'] || 'sqlite3'
database_yml = File.expand_path('../internal/config/database.yml', __dir__)

unless File.exist?(database_yml)
  raise "Please create #{database_yml} first to configure your database. Take a look at: #{database_yml}.sample"
end

ActiveRecord::Base.configurations = YAML.load_file(database_yml)
ActiveRecord::Base.logger = Logger.new(File.join(File.dirname(__FILE__), '../debug.log'))
ActiveRecord::Base.logger.level = ENV['CI'] ? ::Logger::ERROR : ::Logger::DEBUG
ActiveRecord::Migration.verbose = false
if ActiveRecord.version >= Gem::Version.new('7.0.0.alpha2')
  ActiveRecord.default_timezone = :utc
else
  ActiveRecord::Base.default_timezone = :utc
end
config = if ActiveRecord.version >= Gem::Version.new('6.1.0')
           ActiveRecord::Base.configurations.configs_for(env_name: db_name)
         else
           ActiveSupport::HashWithIndifferentAccess.new(ActiveRecord::Base.configurations[db_name])
         end

begin
  ActiveRecord::Base.establish_connection(db_name.to_sym)
  ActiveRecord::Base.connection
rescue StandardError
  case db_name
  when /mysql/
    ActiveRecord::Base.establish_connection(config.merge('database' => nil))
    ActiveRecord::Base.connection.create_database(config['database'],
                                                  { charset: 'utf8', collation: 'utf8_unicode_ci' })
  when 'postgresql'
    ActiveRecord::Base.establish_connection(config.merge('database' => 'postgres',
                                                         'schema_search_path' => 'public'))
    ActiveRecord::Base.connection.create_database(config['database'], config.merge('encoding' => 'utf8'))
  end

  ActiveRecord::Base.establish_connection(config)
end

require "#{File.dirname(__FILE__)}/../internal/db/schema.rb"
Dir["#{File.dirname(__dir__)}/internal/app/models/*.rb"].each { |f| require f }

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/acts-as-taggable-on-9.0.1/spec/support/database.rb
acts-as-taggable-on-9.0.1 spec/support/database.rb
acts-as-taggable-on-9.0.0 spec/support/database.rb