diff options
author | Xavier Noria <fxn@hashref.com> | 2015-11-11 10:18:43 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2015-11-11 10:18:43 +0100 |
commit | 472b8e054b293c3c4a07572bd2d4904d51d861e0 (patch) | |
tree | 2b438b0d7fe03ae995978f04d3a3d2aa19a19d95 /activesupport/lib/active_support | |
parent | e42a5fd3d579f60594fbed2f0f728e434da123b9 (diff) | |
download | rails-472b8e054b293c3c4a07572bd2d4904d51d861e0.tar.gz rails-472b8e054b293c3c4a07572bd2d4904d51d861e0.tar.bz2 rails-472b8e054b293c3c4a07572bd2d4904d51d861e0.zip |
revises the implementation of Pathname#ascendant_of? (in refinement)
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/file_evented_update_checker.rb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/file_evented_update_checker.rb b/activesupport/lib/active_support/file_evented_update_checker.rb index ae500d697f..9c66363e9f 100644 --- a/activesupport/lib/active_support/file_evented_update_checker.rb +++ b/activesupport/lib/active_support/file_evented_update_checker.rb @@ -79,7 +79,14 @@ module ActiveSupport using Module.new { refine Pathname do def ascendant_of?(other) - other.to_s =~ /\A#{Regexp.quote(to_s)}#{Pathname::SEPARATOR_PAT}?/ + if self != other && other.to_s.start_with?(to_s) + # On Windows each_filename does not include the drive letter, + # but the test above already detects if they differ. + parts = each_filename.to_a + other_parts = other.each_filename.to_a + + other_parts[0, parts.length] == parts + end end end } |