Sha256: cdba4ad8e7c1337c095d8e3843c1c5018cfff6e4a3817efe50ab5cd3a6a9764f

Contents?: true

Size: 710 Bytes

Versions: 7

Compression:

Stored size: 710 Bytes

Contents

require 'rubygems'
require 'bundler/setup'
require 'ohm'
require 'tire'
require 'active_record'

APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__) + '/..'))
Dir[File.join(APP_ROOT, "lib/*.rb")].each {|f| require f}
Dir[File.join(APP_ROOT, "lib/data_tables/*.rb")].each {|f| require f}
Dir[File.join(APP_ROOT, "spec/models/*.rb")].each {|f| require f}

DEBUG = false

Tire.configure { logger STDOUT, level: :debug } if DEBUG
Tire::Model::Search.index_prefix('test_datatable_')

RSpec.configure do |config|
  config.before(:each) do
    Tire.index("#{Tire::Model::Search.index_prefix}*"){delete}
  end
  config.after(:each) do
    #Tire.index("#{Tire::Model::Search.index_prefix}*"){delete}
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
data_tables-0.1.26 spec/spec_helper.rb
data_tables-0.1.25 spec/spec_helper.rb
data_tables-0.1.24 spec/spec_helper.rb
data_tables-0.1.23 spec/spec_helper.rb
data_tables-0.1.22 spec/spec_helper.rb
data_tables-0.1.21 spec/spec_helper.rb
data_tables-0.1.19 spec/spec_helper.rb