This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getJasmineRequireObj() { | |
| if (typeof module !== "undefined" && module.exports) { | |
| return exports; | |
| } else { | |
| window.jasmineRequire = window.jasmineRequire || {}; | |
| return window.jasmineRequire; | |
| } | |
| } | |
| getJasmineRequireObj().junit = function(jRequire, j$) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $original = 'TeamJinx' | |
| $copyTo = $original + 'Old' | |
| # Copy all files... | |
| ROBOCOPY $original\ $copyTo\ /MIR | |
| # Rename all files containing original name | |
| Get-ChildItem .\$copyTo -Recurse -Include *$original*.* | % { Rename-Item $_.FullName $_.Name.Replace($original, $copyTo) } | |
| # Replace text (i.e. namespaces, classes and file references) |
NewerOlder