Skip to content

Commit

Permalink
Release 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Jan 14, 2010
1 parent dae3cd2 commit d3f9e5f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions History.md
@@ -1,4 +1,11 @@

3.1.2 / 2010-01-14
==================

* Changed dependency; commander 4.0.1 for JRuby support
* Fixed rails init issue with node.js. Closes #135
* Fixed bin specs

3.1.1 / 2010-01-14
==================

Expand Down
2 changes: 1 addition & 1 deletion bin/jspec
Expand Up @@ -12,7 +12,7 @@ require 'src/installables'
require 'src/server'

program :name, 'JSpec'
program :version, '3.1.1'
program :version, '3.1.2'
program :description, 'JavaScript BDD Testing Framework'
default_command :bind

Expand Down
8 changes: 4 additions & 4 deletions jspec.gemspec
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = %q{jspec}
s.version = "3.1.1"
s.version = "3.1.2"

s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["TJ Holowaychuk"]
Expand All @@ -27,18 +27,18 @@ Gem::Specification.new do |s|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<sinatra>, [">= 0"])
s.add_runtime_dependency(%q<json_pure>, [">= 0"])
s.add_runtime_dependency(%q<commander>, [">= 4.0.0"])
s.add_runtime_dependency(%q<commander>, [">= 4.0.1"])
s.add_runtime_dependency(%q<bind>, [">= 0.2.8"])
else
s.add_dependency(%q<sinatra>, [">= 0"])
s.add_dependency(%q<json_pure>, [">= 0"])
s.add_dependency(%q<commander>, [">= 4.0.0"])
s.add_dependency(%q<commander>, [">= 4.0.1"])
s.add_dependency(%q<bind>, [">= 0.2.8"])
end
else
s.add_dependency(%q<sinatra>, [">= 0"])
s.add_dependency(%q<json_pure>, [">= 0"])
s.add_dependency(%q<commander>, [">= 4.0.0"])
s.add_dependency(%q<commander>, [">= 4.0.1"])
s.add_dependency(%q<bind>, [">= 0.2.8"])
end
end
2 changes: 1 addition & 1 deletion lib/jspec.js
Expand Up @@ -4,7 +4,7 @@
;(function(){

JSpec = {
version : '3.1.1',
version : '3.1.2',
assert : true,
cache : {},
suites : [],
Expand Down

0 comments on commit d3f9e5f

Please sign in to comment.