1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/etc/etc.c (etc_systmpdir): moved from ext/tmpdir.

* ext/etc/etc.c (etc_sysconfdir): added.

* lib/rubygems/config_file.rb, lib/tmpdir.rb: use etc.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-05-08 03:25:17 +00:00
parent 5512c9b287
commit 2c01a07bf4
8 changed files with 75 additions and 51 deletions

View file

@ -5,13 +5,14 @@
#
require 'fileutils'
if /mswin|mingw/ =~ RUBY_PLATFORM
require 'tmpdir.so'
begin
require 'etc.so'
rescue LoadError
end
class Dir
@@systmpdir ||= '/tmp'
@@systmpdir ||= defined?(Etc.systmpdir) ? Etc.systmpdir : '/tmp'
##
# Returns the operating system's temporary file path.