From d3c1bea8133b337f1f5efdb4cb6b0b49f8b95929 Mon Sep 17 00:00:00 2001 From: "Davis W. Frank & Rajan Agaskar" Date: Tue, 27 Nov 2012 14:45:24 -0800 Subject: [PATCH] 1.3.0 Release - Uses jasmine-core 1.3.0 https://github.com/pivotal/jasmine/commit/867de62699d223416c481d5b08d0b248a104a266 - Bugfixes --- MIT.LICENSE | 2 +- jasmine.gemspec | 5 +++-- lib/jasmine/version.rb | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/MIT.LICENSE b/MIT.LICENSE index 1eb9b49e..dd16e1ac 100644 --- a/MIT.LICENSE +++ b/MIT.LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2008-2010 Pivotal Labs +Copyright (c) 2008-2012 Pivotal Labs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/jasmine.gemspec b/jasmine.gemspec index 361296f0..3ffd3aeb 100644 --- a/jasmine.gemspec +++ b/jasmine.gemspec @@ -11,7 +11,8 @@ Gem::Specification.new do |s| s.summary = %q{JavaScript BDD framework} s.description = %q{Test your JavaScript without any framework dependencies, in any environment, and with a nice descriptive syntax.} s.email = %q{jasmine-js@googlegroups.com} - s.homepage = "http://pivotal.github.com/jasmine" + s.homepage = "http://pivotal.github.com/jasmine/" + s.license = "MIT" s.files = `git ls-files`.split("\n") | Dir.glob('jasmine/**/*') s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") @@ -66,7 +67,7 @@ Gem::Specification.new do |s| s.add_development_dependency 'json_pure' s.add_development_dependency 'nokogiri' - s.add_dependency 'jasmine-core', ">= 1.2.0" + s.add_dependency 'jasmine-core', ">= 1.3.0" s.add_dependency 'rack', '~> 1.0' s.add_dependency 'rspec', '>= 1.3.1' s.add_dependency 'selenium-webdriver', '>= 0.1.3' diff --git a/lib/jasmine/version.rb b/lib/jasmine/version.rb index 0b56679f..1cc58d7a 100644 --- a/lib/jasmine/version.rb +++ b/lib/jasmine/version.rb @@ -1,3 +1,3 @@ module Jasmine - VERSION = "1.2.1" + VERSION = "1.3.0" end