visionmedia-jspec 2.9.0 → 2.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. data/History.rdoc +4 -0
  2. data/bin/jspec +1 -1
  3. data/jspec.gemspec +1 -1
  4. data/lib/jspec.js +2 -1
  5. metadata +1 -1
data/History.rdoc CHANGED
@@ -1,4 +1,8 @@
1
1
 
2
+ === 2.9.1 / 2009-08-21
3
+
4
+ * Added module support for formatters
5
+
2
6
  === 2.9.0 / 2009-08-21
3
7
 
4
8
  * Server output matching Rhino when using verbose or failuresOnly options
data/bin/jspec CHANGED
@@ -12,7 +12,7 @@ require 'server/server'
12
12
  RHINO = 'java org.mozilla.javascript.tools.shell.Main'
13
13
 
14
14
  program :name, 'JSpec'
15
- program :version, '2.9.0'
15
+ program :version, '2.9.1'
16
16
  program :description, 'JavaScript BDD Testing Framework'
17
17
  default_command :bind
18
18
 
data/jspec.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{jspec}
5
- s.version = "2.9.0"
5
+ s.version = "2.9.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["TJ Holowaychuk"]
data/lib/jspec.js CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  JSpec = {
7
7
 
8
- version : '2.9.0',
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] || {}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visionmedia-jspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk