Sha256: 14e4bfba13aaff4b2d5250e5924a1c0f4ac178015b54dd4df3374beca5492443

Contents?: true

Size: 802 Bytes

Versions: 6

Compression:

Stored size: 802 Bytes

Contents

# encoding: utf-8

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

unless RUBY_PLATFORM.include?('java')
  require 'simplecov'
  SimpleCov.command_name 'rspec'
  SimpleCov.start
end

# Pull in all of the gems including those in the `test` group
require 'bundler'
Bundler.require

# Loading support files
if RUBY_VERSION < '1.9'
  Dir.glob(::File.expand_path('../support/*.rb', __FILE__)).each { |f| require File.join(File.dirname(f), File.basename(f, '.rb')) }
  Dir.glob(::File.expand_path('../support/**/*.rb', __FILE__)).each { |f| require File.join(File.dirname(f), File.basename(f, '.rb')) }
else
  Dir.glob(::File.expand_path('../support/*.rb', __FILE__)).each { |f| require_relative f }
  Dir.glob(::File.expand_path('../support/**/*.rb', __FILE__)).each { |f| require_relative f }
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
aruba-0.14.14 spec/spec_helper.rb
aruba-0.14.13 spec/spec_helper.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/aruba-0.14.12/spec/spec_helper.rb
aruba-0.14.12 spec/spec_helper.rb
aruba-0.14.11 spec/spec_helper.rb
aruba-0.14.10 spec/spec_helper.rb