Sha256: a815f8ecbd5619f9323d1e1d852715ffb91ac1b313deb333167159476df59596
Contents?: true
Size: 520 Bytes
Versions: 19
Compression:
Stored size: 520 Bytes
Contents
# encoding: utf-8 # immutable: string IN_TRAVELING_RUBY = true restorable_envs = ['DYLD_LIBRARY_PATH', 'TERMINFO', 'RUBYOPT', 'RUBYLIB'].freeze restorable_envs.each do |name| ENV[name] = ENV["ORIG_#{name}"] ENV.delete("ORIG_#{name}") end # We can't restore these environments now because they'll be used later. # We just store the original values so that the program can decide what to do. $OVERRIDDEN_ENVIRONMENTS = { 'SSL_CERT_DIR' => ENV['OLD_SSL_CERT_DIR'], 'SSL_CERT_FILE' => ENV['OLD_SSL_CERT_FILE'] }
Version data entries
19 entries across 18 versions & 3 rubygems