Bump built distribution [#503][finishes #66350898]

This commit is contained in:
Greg Cobb and Sheel Choksi
2014-02-24 15:47:34 -08:00
parent 85fa148f18
commit 98c258a659

View File

@@ -89,7 +89,12 @@ getJasmineRequireObj().requireMatchers = function(jRequire, j$) {
return matchers;
};
getJasmineRequireObj().base = function(j$) {
getJasmineRequireObj().base = (function (jasmineGlobal) {
if (typeof module !== "undefined" && module.exports) {
jasmineGlobal = global;
}
return function(j$) {
j$.unimplementedMethod_ = function() {
throw new Error("unimplemented method");
};
@@ -97,12 +102,9 @@ getJasmineRequireObj().base = function(j$) {
j$.MAX_PRETTY_PRINT_DEPTH = 40;
j$.DEFAULT_TIMEOUT_INTERVAL = 5000;
j$.getGlobal = (function() {
var jasmineGlobal = eval.call(null, "this");
return function() {
j$.getGlobal = function() {
return jasmineGlobal;
};
})();
j$.getEnv = function(options) {
var env = j$.currentEnv_ = j$.currentEnv_ || new j$.Env(options);
@@ -186,7 +188,8 @@ getJasmineRequireObj().base = function(j$) {
}
return obj;
};
};
};
})(this);
getJasmineRequireObj().util = function() {