Sha256: 6294b2c8ad884977ab49649cbc2bc4c40acc121400d17eb5d45b00082c3b4c33
Contents?: true
Size: 487 Bytes
Versions: 5
Compression:
Stored size: 487 Bytes
Contents
require "rubygems" require 'json' require "rspec" # gem install redgreen for colored test output begin require "redgreen" unless ENV['TM_CURRENT_LINE']; rescue LoadError; end path = File.expand_path(File.dirname(__FILE__) + "/../lib/") $LOAD_PATH.unshift(path) unless $LOAD_PATH.include?(path) require path + '/typhoeus' Dir['./spec/support/**/*.rb'].each { |f| require f } RSpec.configure do |config| config.before(:suite) do TyphoeusLocalhostServer.start_servers! end end
Version data entries
5 entries across 5 versions & 2 rubygems