mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Get rid of LoadError with $DEBUG
This commit is contained in:
parent
af07e07ac9
commit
cd372f8db2
1 changed files with 7 additions and 6 deletions
|
@ -166,13 +166,14 @@ class Resolv
|
|||
# Resolv::Hosts is a hostname resolver that uses the system hosts file.
|
||||
|
||||
class Hosts
|
||||
begin
|
||||
raise LoadError unless /mswin|mingw|cygwin/ =~ RUBY_PLATFORM
|
||||
require 'win32/resolv'
|
||||
DefaultFileName = Win32::Resolv.get_hosts_path || IO::NULL
|
||||
rescue LoadError
|
||||
DefaultFileName = '/etc/hosts'
|
||||
if /mswin|mingw|cygwin/ =~ RUBY_PLATFORM and
|
||||
begin
|
||||
require 'win32/resolv'
|
||||
DefaultFileName = Win32::Resolv.get_hosts_path || IO::NULL
|
||||
rescue LoadError
|
||||
end
|
||||
end
|
||||
DefaultFileName ||= '/etc/hosts'
|
||||
|
||||
##
|
||||
# Creates a new Resolv::Hosts, using +filename+ for its data source.
|
||||
|
|
Loading…
Add table
Reference in a new issue