Sha256: 1a15cfd9fd4e7b9f67cbcc0f253576cd9636ecb664995695f33bd2471c91364b
Contents?: true
Size: 663 Bytes
Versions: 17
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true require 'rubygems' require 'bundler' Bundler.require :default, :development root = File.expand_path File.dirname(__FILE__) require "#{root}/support/multi_schema" require "#{root}/support/json_column" require "#{root}/support/mysql" require 'thinking_sphinx/railtie' Combustion.initialize! :active_record MultiSchema.new.create 'thinking_sphinx' require "#{root}/support/sphinx_yaml_helpers" RSpec.configure do |config| # enable filtering for examples config.filter_run :wip => nil config.run_all_when_everything_filtered = true config.around :each, :live do |example| example.run_with_retry :retry => 3 end end
Version data entries
17 entries across 17 versions & 1 rubygems