Sha256: be577f953ec35fb2f323e25e5e17f1ddc7d6c65e065cc7d6a077e1b140b89e76

Contents?: true

Size: 575 Bytes

Versions: 1

Compression:

Stored size: 575 Bytes

Contents

require 'rubygems' unless defined?(Gem)
require 'rspec'

GORILLIB_ROOT_DIR = File.expand_path(File.join(File.dirname(__FILE__),'..'))
def GORILLIB_ROOT_DIR *paths
  File.join(::GORILLIB_ROOT_DIR, *paths)
end

ENV['QUIET_RSPEC'] = 'please'

$LOAD_PATH.unshift(GORILLIB_ROOT_DIR('lib'))
$LOAD_PATH.unshift(GORILLIB_ROOT_DIR('spec/support'))
require 'gorillib_test_helpers'
Dir[GORILLIB_ROOT_DIR('spec/support/matchers/*.rb')].each {|f| require f}

RSpec.configure do |config|
  include Gorillib::TestHelpers

  config.treat_symbols_as_metadata_keys_with_true_values = true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gorillib-0.4.1pre spec/spec_helper.rb