Sha256: 99eb051625a7cd1c4c8ef1a2c3302bcf586c43ab9bbad83da261962a256676d4

Contents?: true

Size: 614 Bytes

Versions: 3

Compression:

Stored size: 614 Bytes

Contents

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 'thinking_sphinx/railtie'

Combustion.initialize! :active_record

MultiSchema.new.create 'thinking_sphinx'

Dir["#{root}/support/**/*.rb"].each { |file| require file }

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

3 entries across 3 versions & 1 rubygems

Version Path
thinking-sphinx-3.4.2 spec/spec_helper.rb
thinking-sphinx-3.4.1 spec/spec_helper.rb
thinking-sphinx-3.4.0 spec/spec_helper.rb