From: "mdube@... (Martin Dubé)" Date: 2012-11-17T07:31:23+09:00 Subject: [ruby-core:49461] [ruby-trunk - Bug #7374] File.expand_path resolving to first file/dir instead of absolute path Issue #7374 has been updated by mdube@arcane-technologies.com (Martin Dub��). =begin No other scenario. Caught that bug trying to install a plugin to redmine 2.1.2 with ruby 1.9.3p327 Redmine then attempt to add plugins routes with the following code: (({Dir.glob File.expand_path("plugins/*", Rails.root) do |plugin_dir|})) Which end up enumerating only the "." directory instead of all subdirectories in ./plugins =end ---------------------------------------- Bug #7374: File.expand_path resolving to first file/dir instead of absolute path https://bugs.ruby-lang.org/issues/7374#change-32995 Author: mdube@arcane-technologies.com (Martin Dub��) Status: Assigned Priority: High Assignee: luislavena (Luis Lavena) Category: core Target version: 2.0.0 ruby -v: ruby 1.9.3p327 (2012-11-10) [i386-mingw32] =begin (({File.expand_path("./*", "c:)"})) will give "c:/$recycle.bin" as result instead of "c:/*" (({File.expand_path("./*", "c:/temp)"})) will give "c:/temp/." as result instead of "c:/temp/*" It looks like the first directory entry is returned instead of the absolute path. =end -- http://bugs.ruby-lang.org/