visionmedia-jspec 2.9.0 → 2.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.rdoc +4 -0
- data/bin/jspec +1 -1
- data/jspec.gemspec +1 -1
- data/lib/jspec.js +2 -1
- metadata +1 -1
data/History.rdoc
CHANGED
data/bin/jspec
CHANGED
data/jspec.gemspec
CHANGED
data/lib/jspec.js
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
JSpec = {
|
7
7
|
|
8
|
-
version : '2.9.
|
8
|
+
version : '2.9.1',
|
9
9
|
cache : {},
|
10
10
|
suites : [],
|
11
11
|
modules : [],
|
@@ -686,6 +686,7 @@
|
|
686
686
|
if ('init' in module) module.init()
|
687
687
|
if ('utilities' in module) extend(this.defaultContext, module.utilities)
|
688
688
|
if ('matchers' in module) this.addMatchers(module.matchers)
|
689
|
+
if ('formatters' in module) extend(this.formatters, module.formatters)
|
689
690
|
if ('DSLs' in module)
|
690
691
|
each(module.DSLs, function(name, methods){
|
691
692
|
JSpec.DSLs[name] = JSpec.DSLs[name] || {}
|