Updating source and standalone distribution to 2.0.1

This commit is contained in:
Davis W. Frank
2014-07-21 12:36:24 -07:00
parent ff1fa6a893
commit 227698f5fa
4 changed files with 5 additions and 5 deletions

BIN
dist/jasmine-standalone-2.0.1.zip vendored Normal file

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@@ -976,7 +976,7 @@ getJasmineRequireObj().Clock = function() {
} }
function argSlice(argsObj, n) { function argSlice(argsObj, n) {
return Array.prototype.slice.call(argsObj, 2); return Array.prototype.slice.call(argsObj, n);
} }
} }
@@ -1869,7 +1869,7 @@ getJasmineRequireObj().matchersUtil = function(j$) {
} }
return false; return false;
} }
return haystack.indexOf(needle) >= 0; return !!haystack && haystack.indexOf(needle) >= 0;
}, },
buildFailureMessage: function() { buildFailureMessage: function() {
@@ -2512,5 +2512,5 @@ getJasmineRequireObj().toThrowError = function(j$) {
}; };
getJasmineRequireObj().version = function() { getJasmineRequireObj().version = function() {
return '2.0.0'; return '2.0.1';
}; };

View File

@@ -4,6 +4,6 @@
# #
module Jasmine module Jasmine
module Core module Core
VERSION = "2.0.0" VERSION = "2.0.1"
end end
end end