Get rid of LoadError with $DEBUG
This commit is contained in:
parent
af07e07ac9
commit
cd372f8db2
@ -166,13 +166,14 @@ class Resolv
|
|||||||
# Resolv::Hosts is a hostname resolver that uses the system hosts file.
|
# Resolv::Hosts is a hostname resolver that uses the system hosts file.
|
||||||
|
|
||||||
class Hosts
|
class Hosts
|
||||||
|
if /mswin|mingw|cygwin/ =~ RUBY_PLATFORM and
|
||||||
begin
|
begin
|
||||||
raise LoadError unless /mswin|mingw|cygwin/ =~ RUBY_PLATFORM
|
|
||||||
require 'win32/resolv'
|
require 'win32/resolv'
|
||||||
DefaultFileName = Win32::Resolv.get_hosts_path || IO::NULL
|
DefaultFileName = Win32::Resolv.get_hosts_path || IO::NULL
|
||||||
rescue LoadError
|
rescue LoadError
|
||||||
DefaultFileName = '/etc/hosts'
|
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
DefaultFileName ||= '/etc/hosts'
|
||||||
|
|
||||||
##
|
##
|
||||||
# Creates a new Resolv::Hosts, using +filename+ for its data source.
|
# Creates a new Resolv::Hosts, using +filename+ for its data source.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user