Sha256: 3006cd70d59496bb1ed3016eb79f6a077364e2246a433444bd7b04a9b0b9767a
Contents?: true
Size: 253 Bytes
Versions: 83
Compression:
Stored size: 253 Bytes
Contents
# Swap home directory to current project spec/tmp # to allow for writing files + cleanup RSpec.configure do |config| config.before do @old_home = ENV['HOME'] ENV['HOME'] = temp_dir end config.after do ENV['HOME'] = @old_home end end
Version data entries
83 entries across 83 versions & 2 rubygems