Sha256: b6a87d4b9a22f0efc7f47fb0d46a2b3553ba66163c007b95e149f98f572f77eb

Contents?: true

Size: 754 Bytes

Versions: 5

Compression:

Stored size: 754 Bytes

Contents

# encoding: utf-8

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

require 'simplecov'
SimpleCov.command_name 'rspec'
SimpleCov.start

# 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

5 entries across 5 versions & 1 rubygems

Version Path
aruba-0.14.9 spec/spec_helper.rb
aruba-0.14.8 spec/spec_helper.rb
aruba-0.14.7 spec/spec_helper.rb
aruba-0.14.6 spec/spec_helper.rb
aruba-0.14.5 spec/spec_helper.rb