Sha256: 9b426aa347c0a72862a07394f81e7103614d771a43f8260452f22e19b7aeaa49
Contents?: true
Size: 506 Bytes
Versions: 39
Compression:
Stored size: 506 Bytes
Contents
# encoding: utf-8 # immutable: string IN_TRAVELING_RUBY = true restorable_envs = ['LD_LIBRARY_PATH', '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
39 entries across 30 versions & 1 rubygems