visionmedia-jspec 2.11.1 → 2.11.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.
@@ -1,4 +1,8 @@
1
1
 
2
+ === 2.11.2 / 2009-09-21
3
+
4
+ * Fixed example path in rails template
5
+
2
6
  === 2.11.1 / 2009-09-10
3
7
 
4
8
  * Fixed JSpec root when using --symlink, --freeze [#36]
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.11.1'
15
+ program :version, '2.11.2'
16
16
  program :description, 'JavaScript BDD Testing Framework'
17
17
  default_command :bind
18
18
 
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{jspec}
5
- s.version = "2.11.1"
5
+ s.version = "2.11.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"]
9
- s.date = %q{2009-09-10}
9
+ s.date = %q{2009-09-21}
10
10
  s.default_executable = %q{jspec}
11
11
  s.description = %q{JavaScript BDD Testing Framework}
12
12
  s.email = %q{tj@vision-media.ca}
@@ -5,7 +5,7 @@
5
5
 
6
6
  JSpec = {
7
7
 
8
- version : '2.11.1',
8
+ version : '2.11.2',
9
9
  cache : {},
10
10
  suites : [],
11
11
  modules : [],
@@ -4,5 +4,5 @@ load('lib/yourlib.core.js')
4
4
 
5
5
  JSpec
6
6
  .exec('spec/spec.core.js')
7
- .run({ formatter : JSpec.formatters.Terminal })
7
+ .run({ formatter: JSpec.formatters.Terminal })
8
8
  .report()
@@ -6,7 +6,7 @@
6
6
  function runSuites() {
7
7
  JSpec
8
8
  .exec('spec.core.js')
9
- .run({ formatter : JSpec.formatters.Server, verbose: true, failuresOnly: true })
9
+ .run({ formatter: JSpec.formatters.Server, verbose: true, failuresOnly: true })
10
10
  .report()
11
11
  }
12
12
  </script>
@@ -3,6 +3,6 @@ load('JSPEC_ROOT/lib/jspec.js')
3
3
  load('public/javascripts/application.js')
4
4
 
5
5
  JSpec
6
- .exec('spec/spec.application.js')
7
- .run({ formatter : JSpec.formatters.Terminal })
6
+ .exec('jspec/spec.application.js')
7
+ .run({ formatter: JSpec.formatters.Terminal })
8
8
  .report()
@@ -6,7 +6,7 @@
6
6
  function runSuites() {
7
7
  JSpec
8
8
  .exec('spec.application.js')
9
- .run({ formatter : JSpec.formatters.Server, verbose: true, failuresOnly: true })
9
+ .run({ formatter: JSpec.formatters.Server, verbose: true, failuresOnly: true })
10
10
  .report()
11
11
  }
12
12
  </script>
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.11.1
4
+ version: 2.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-10 00:00:00 -07:00
12
+ date: 2009-09-21 00:00:00 -07:00
13
13
  default_executable: jspec
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency