Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3c6308f1dc | ||
|
|
4e5d947faa | ||
|
|
c2603efeb4 | ||
|
|
fbec3cc230 |
4
Gemfile
4
Gemfile
@@ -1,9 +1,9 @@
|
|||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
gem "jasmine", :git => 'https://github.com/jasmine/jasmine-gem.git'
|
gem "jasmine", :git => 'https://github.com/jasmine/jasmine-gem.git', :tag => 'v2.99.0'
|
||||||
# gem "jasmine", path: "../jasmine-gem"
|
# gem "jasmine", path: "../jasmine-gem"
|
||||||
|
|
||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
gem "jasmine_selenium_runner", :github => 'jasmine/jasmine_selenium_runner'
|
gem "jasmine_selenium_runner", :github => 'jasmine/jasmine_selenium_runner', :tag => 'v2.4.0'
|
||||||
|
|
||||||
gem "anchorman"
|
gem "anchorman"
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
|
|||||||
s.rubyforge_project = "jasmine-core"
|
s.rubyforge_project = "jasmine-core"
|
||||||
s.license = "MIT"
|
s.license = "MIT"
|
||||||
|
|
||||||
s.files = Dir.glob("./lib/**/*") + Dir.glob("./lib/jasmine-core/spec/**/*.js")
|
s.files = Dir.glob("./lib/**/*")
|
||||||
s.require_paths = ["lib"]
|
s.require_paths = ["lib"]
|
||||||
s.add_development_dependency "rake"
|
s.add_development_dependency "rake"
|
||||||
s.add_development_dependency "sauce-connect"
|
s.add_development_dependency "sauce-connect"
|
||||||
|
|||||||
@@ -903,8 +903,10 @@ getJasmineRequireObj().Env = function(j$) {
|
|||||||
|
|
||||||
// TODO: fix this naming, and here's where the value comes in
|
// TODO: fix this naming, and here's where the value comes in
|
||||||
this.catchExceptions = function(value) {
|
this.catchExceptions = function(value) {
|
||||||
this.deprecated('The catchExceptions option is deprecated and will be replaced with stopOnSpecFailure in Jasmine 3.0');
|
|
||||||
catchExceptions = !!value;
|
catchExceptions = !!value;
|
||||||
|
if (!catchExceptions) {
|
||||||
|
this.deprecated('The catchExceptions option is deprecated and will be replaced with stopOnSpecFailure in Jasmine 3.0');
|
||||||
|
}
|
||||||
return catchExceptions;
|
return catchExceptions;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
../../spec
|
|
||||||
@@ -4,6 +4,6 @@
|
|||||||
#
|
#
|
||||||
module Jasmine
|
module Jasmine
|
||||||
module Core
|
module Core
|
||||||
VERSION = "2.99.0"
|
VERSION = "2.99.2"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "jasmine-core",
|
"name": "jasmine-core",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "2.99.0",
|
"version": "2.99.2",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/jasmine/jasmine.git"
|
"url": "https://github.com/jasmine/jasmine.git"
|
||||||
|
|||||||
@@ -198,8 +198,10 @@ getJasmineRequireObj().Env = function(j$) {
|
|||||||
|
|
||||||
// TODO: fix this naming, and here's where the value comes in
|
// TODO: fix this naming, and here's where the value comes in
|
||||||
this.catchExceptions = function(value) {
|
this.catchExceptions = function(value) {
|
||||||
this.deprecated('The catchExceptions option is deprecated and will be replaced with stopOnSpecFailure in Jasmine 3.0');
|
|
||||||
catchExceptions = !!value;
|
catchExceptions = !!value;
|
||||||
|
if (!catchExceptions) {
|
||||||
|
this.deprecated('The catchExceptions option is deprecated and will be replaced with stopOnSpecFailure in Jasmine 3.0');
|
||||||
|
}
|
||||||
return catchExceptions;
|
return catchExceptions;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user