Utility for converting between win32 and cygwin paths. Does nothing on *nix.
[Source]
# File lib/rscm/tempdir.rb, line 4 4: def new_temp_dir(suffix="", basedir=File.dirname(__FILE__) + "/../../target") 5: identifier = identifier.to_s 6: identifier.gsub!(/\(|:|\)/, '_') 7: dir = "#{basedir}/temp_#{identifier}_#{Time.new.to_i}#{suffix}" 8: FileUtils.mkdir_p(dir) 9: dir 10: end
[Validate]