visionmedia-jspec 1.1.6 → 1.1.7

Sign up to get free protection for your applications and to get access to all the features.
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 +3 -3
  5. metadata +1 -1
data/History.rdoc CHANGED
@@ -1,4 +1,8 @@
1
1
 
2
+ === 1.1.7 / 2009-04-22
3
+
4
+ * Removed trailing commas causing issues with IE (what a suprise ;) )
5
+
2
6
  === 1.1.6 / 2009-04-22
3
7
 
4
8
  * Fixed typo in requires()
data/bin/jspec CHANGED
@@ -10,7 +10,7 @@ require 'fileutils'
10
10
  RHINO = 'java org.mozilla.javascript.tools.shell.Main'
11
11
 
12
12
  program :name, 'JSpec'
13
- program :version, '1.1.6'
13
+ program :version, '1.1.7'
14
14
  program :description, 'JavaScript BDD Testing Framework'
15
15
  default_command :bind
16
16
 
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 = "1.1.6"
5
+ s.version = "1.1.7"
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
  var JSpec = {
7
7
 
8
- version : '1.1.6',
8
+ version : '1.1.7',
9
9
  file : '',
10
10
  suites : [],
11
11
  matchers : {},
@@ -353,7 +353,7 @@
353
353
  blue : 34,
354
354
  magenta : 35,
355
355
  cyan : 36,
356
- white : 37,
356
+ white : 37
357
357
  }[color] + 'm' + string + "\u001B[0m"
358
358
  },
359
359
 
@@ -556,7 +556,7 @@
556
556
  to : to,
557
557
  should : to,
558
558
  not_to: not_to,
559
- should_not : not_to,
559
+ should_not : not_to
560
560
  }
561
561
  },
562
562
 
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: 1.1.6
4
+ version: 1.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk