From bcef71590ccc9e4a76d6ab2187d16b07ef9fd3a6 Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 30 Nov 2012 14:15:35 +0000 Subject: * lib/rubygems/specification.rb (Gem::Specification.validate_permissions): don't check executablity of the source on Windows. they will be wrapped to .bat files when installing. see [ruby-core:50388]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rubygems/specification.rb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb index d1f8e5e385..37044dac85 100644 --- a/lib/rubygems/specification.rb +++ b/lib/rubygems/specification.rb @@ -2489,10 +2489,12 @@ class Gem::Specification alert_warning "#{file} is not world-readable" end - executables.each do |name| - exec = File.join @bindir, name - next if File.stat(exec).executable? - alert_warning "#{exec} is not executable" + unless Gem.win_platform? + executables.each do |name| + exec = File.join @bindir, name + next if File.stat(exec).executable? + alert_warning "#{exec} is not executable" + end end end -- cgit v1.2.3