Sha256: f21c41c8e66c78069705dea2e60c4921b5adc085c86b0a144561a15e2dc07045
Contents?: true
Size: 477 Bytes
Versions: 13
Compression:
Stored size: 477 Bytes
Contents
require 'rubygems' SPEC_TMP_DIR = File.expand_path('tmp', File.dirname(__FILE__)) require 'spork' require 'stringio' require 'fileutils' require 'rspec' Dir.glob("#{File.dirname(__FILE__)}/support/*.rb").each { |f| require(f) } RSpec.configure do |config| include(TmpProjectHelpers) config.before(:each) do TestIOStreams.set_streams(StringIO.new, StringIO.new) @current_dir = nil clear_tmp_dir end end def windows? ENV['OS'] == 'Windows_NT' end
Version data entries
13 entries across 13 versions & 1 rubygems