Sha256: 760a53cce695c1cd61cc5c77de479d8b1ed41ba57e516b310278d06662680f15

Contents?: true

Size: 891 Bytes

Versions: 2

Compression:

Stored size: 891 Bytes

Contents

#encoding: utf-8

$LOAD_PATH << File.expand_path('../lib' , File.dirname(__FILE__))

unless ENV['TRAVIS_CI'] == 'true'
  require 'pry'
  require 'debugger'
  require 'ap'
  require 'ffaker'
  require 'benchmark'
end

require 'stringio'
require 'tempfile'

require 'active_support/core_ext/object/blank'
require 'active_support/core_ext/numeric/time'
#require 'active_support/core_ext/kernel/reporting'

unless ENV['TRAVIS_CI'] == 'true'
  require 'simplecov'
  SimpleCov.start
end

require 'the_array_comparator'
require 'the_array_comparator/testing_helper/data_set'
require 'the_array_comparator/testing_helper/test_data'
require 'the_array_comparator/testing_helper'

RSpec.configure do |c|
  c.treat_symbols_as_metadata_keys_with_true_values = true
#  c.filter_run_including :focus => true
end

include TheArrayComparator
include TheArrayComparator::TestingHelper

#ENV['PATH'] = '/bin'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
the_array_comparator-0.2.0 spec/spec_helper.rb
the_array_comparator-0.1.1 spec/spec_helper.rb