visionmedia-jspec 2.4.1 → 2.4.2

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 -2
  5. metadata +1 -1
data/History.rdoc CHANGED
@@ -1,4 +1,8 @@
1
1
 
2
+ === 2.4.2 / 2009-06-30
3
+
4
+ * Fixed trailing comma (thanks Kevin)
5
+
2
6
  === 2.4.1 / 2009-06-30
3
7
 
4
8
  * Moved beforeSpec and afterSpec hook into proper positions
data/bin/jspec CHANGED
@@ -11,7 +11,7 @@ require 'fileutils'
11
11
  RHINO = 'java org.mozilla.javascript.tools.shell.Main'
12
12
 
13
13
  program :name, 'JSpec'
14
- program :version, '2.4.1'
14
+ program :version, '2.4.2'
15
15
  program :description, 'JavaScript BDD Testing Framework'
16
16
  default_command :bind
17
17
 
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.4.1"
5
+ s.version = "2.4.2"
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.4.1',
8
+ version : '2.4.2',
9
9
  suites : [],
10
10
  modules : [],
11
11
  allSuites : [],
@@ -1240,7 +1240,7 @@
1240
1240
  each(suite.specs, function(spec) {
1241
1241
  suite.hook('before_each')
1242
1242
  JSpec.runSpec(spec)
1243
- suite.hook('after_each'),
1243
+ suite.hook('after_each')
1244
1244
  })
1245
1245
  if (suite.hasSuites()) {
1246
1246
  each(suite.suites, function(suite) {
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.4.1
4
+ version: 2.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk