1 # Some versions of ruby seem to accidentally force the encoding
2 # as part of normalize_path and some don't
8 def self.normalize_path_with_encoding(path)
9 self.normalize_path_without_encoding(path).force_encoding("UTF-8")
13 alias_method_chain :normalize_path, :encoding