From 36b183ce8c80eb46942c2078fc016a4204f28889 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 19 May 2018 00:22:39 +0000 Subject: fileutils.rb: split fu_windows? * lib/fileutils.rb (FileUtils::StreamUtils_#fu_windows?): select the method definition for each platforms, and dropped supports for deprecated platforms. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63465 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/fileutils.rb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/fileutils.rb b/lib/fileutils.rb index e5c4086213..b209e74924 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -1145,12 +1145,11 @@ module FileUtils module StreamUtils_ private - def fu_windows? - if defined?(RbConfig) - /mswin|mingw|bccwin|emx/ =~ RbConfig::CONFIG['host_os'] - else - /mswin|mingw|bccwin|emx/ =~ RUBY_PLATFORM - end + case (defined?(::RbConfig) ? ::RbConfig::CONFIG['host_os'] : ::RUBY_PLATFORM) + when /mswin|mingw/ + def fu_windows?; true end + else + def fu_windows?; false end end def fu_copy_stream0(src, dest, blksize = nil) #:nodoc: -- cgit v1.2.3