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