jasmine 3.8.1 → 3.9.0
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.
- checksums.yaml +4 -4
- data/README.markdown +17 -0
- data/jasmine.gemspec +1 -1
- data/lib/jasmine/version.rb +1 -1
- data/release_notes/3.9.0.md +28 -0
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f2e9e043fa37622252b7119ddfda3c53d5d81cebe92de2c5d7d7aef7ff3d079
|
|
4
|
+
data.tar.gz: feb33aeb7ad6202fa86f8a5272491815f97d3e908376ccd39453490227d1fd39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aebe47ea1dbb63f56682f87ac3de710554cf5f1674c423d01c9eef1b3930d2bcf4f14d490b9fad4b2b312746b59297369dbabc3f4f3390c5d73bc28d011717cc
|
|
7
|
+
data.tar.gz: 1da659d48bd231163039d082337a0a1dc690a27fd76fa546551c1ba5949f046d1029c10a2c3b77cc0e4adf94dcc514c627479e925775286dea9555dc3f2edb76
|
data/README.markdown
CHANGED
|
@@ -10,6 +10,23 @@ Webpacker support is provided via the
|
|
|
10
10
|
NPM package, not this gem. `jasmine-browser-runner` can also be used to test
|
|
11
11
|
JavaScript in Rails applications that use the Asset Pipeline.
|
|
12
12
|
|
|
13
|
+
## Deprecated
|
|
14
|
+
|
|
15
|
+
The `jasmine` and `jasmine-core` Ruby gems are deprecated. There will be no
|
|
16
|
+
further releases after the end of the Jasmine 3.x series. We recommend that most
|
|
17
|
+
users migrate to the [jasmine-browser-runner](https://github.com/jasmine/jasmine-browser)
|
|
18
|
+
npm package, which is the direct replacement for the `jasmine` gem.
|
|
19
|
+
|
|
20
|
+
If `jasmine-browser-runner` doesn't meet your needs, one of these might:
|
|
21
|
+
|
|
22
|
+
* The [jasmine](https://github.com/jasmine/jasmine-npm) npm package to run
|
|
23
|
+
specs in Node.js.
|
|
24
|
+
* The [standalone distribution](https://github.com/jasmine/jasmine#installation)
|
|
25
|
+
to run specs in browsers with no additional tools.
|
|
26
|
+
* The [jasmine-core](https://github.com/jasmine/jasmine) npm package if all
|
|
27
|
+
you need is the Jasmine assets. This is the direct equivalent of the
|
|
28
|
+
`jasmine-core` Ruby gem.
|
|
29
|
+
|
|
13
30
|
## Contents
|
|
14
31
|
This gem contains:
|
|
15
32
|
|
data/jasmine.gemspec
CHANGED
|
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
|
|
|
37
37
|
s.add_development_dependency 'rspec', '>= 2.5.0'
|
|
38
38
|
s.add_development_dependency 'nokogiri'
|
|
39
39
|
|
|
40
|
-
s.add_dependency 'jasmine-core', '~> 3.
|
|
40
|
+
s.add_dependency 'jasmine-core', '~> 3.9.0'
|
|
41
41
|
s.add_dependency 'rack', '>= 2.1.4'
|
|
42
42
|
s.add_dependency 'webrick'
|
|
43
43
|
s.add_dependency 'rake'
|
data/lib/jasmine/version.rb
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Jasmine Gem 3.9 Release Notes
|
|
2
|
+
|
|
3
|
+
This release updates the jasmine-core dependency to 3.9.0. See the
|
|
4
|
+
[jasmine-core release notes](https://github.com/jasmine/jasmine/blob/main/release_notes/3.9.0.md)
|
|
5
|
+
for more information.
|
|
6
|
+
|
|
7
|
+
## Deprecation, Webpacker support, and a path forward for Rails users
|
|
8
|
+
|
|
9
|
+
The [jasmine-browser-runner](https://github.com/jasmine/jasmine-browser-runner)
|
|
10
|
+
NPM package supports all of same use cases as the `jasmine` Ruby gem. It can
|
|
11
|
+
also handle Webpacker, which isn't supported by the gem. See the [setup instructions, including Rails-specific steps](https://jasmine.github.io/setup/browser.html).
|
|
12
|
+
|
|
13
|
+
The Jasmine Ruby gems are deprecated. There will be no further releases after
|
|
14
|
+
the end of the Jasmine 3.x series. We recommend that most users migrate to
|
|
15
|
+
`jasmine-browser-runner`. If `jasmine-browser-runner` doesn't meet your needs,
|
|
16
|
+
one of these might:
|
|
17
|
+
|
|
18
|
+
* The [jasmine](https://github.com/jasmine/jasmine-npm) npm package to run
|
|
19
|
+
specs in Node.js.
|
|
20
|
+
* The [standalone distribution](https://github.com/jasmine/jasmine#installation)
|
|
21
|
+
to run specs in browsers with no additional tools.
|
|
22
|
+
* The [jasmine-core](https://github.com/jasmine/jasmine) npm package if all
|
|
23
|
+
you need is the Jasmine assets. This is the direct equivalent of the
|
|
24
|
+
`jasmine-core` Ruby gem.
|
|
25
|
+
|
|
26
|
+
------
|
|
27
|
+
|
|
28
|
+
_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jasmine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregg Van Hove
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-08-
|
|
11
|
+
date: 2021-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -92,14 +92,14 @@ dependencies:
|
|
|
92
92
|
requirements:
|
|
93
93
|
- - "~>"
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: 3.
|
|
95
|
+
version: 3.9.0
|
|
96
96
|
type: :runtime
|
|
97
97
|
prerelease: false
|
|
98
98
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
99
|
requirements:
|
|
100
100
|
- - "~>"
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: 3.
|
|
102
|
+
version: 3.9.0
|
|
103
103
|
- !ruby/object:Gem::Dependency
|
|
104
104
|
name: rack
|
|
105
105
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -233,6 +233,7 @@ files:
|
|
|
233
233
|
- release_notes/3.7.0.md
|
|
234
234
|
- release_notes/3.8.0.md
|
|
235
235
|
- release_notes/3.8.1.md
|
|
236
|
+
- release_notes/3.9.0.md
|
|
236
237
|
- release_notes/v1.2.1.md
|
|
237
238
|
- release_notes/v1.3.2.md
|
|
238
239
|
- release_notes/v2.0.0.md
|
|
@@ -307,7 +308,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
307
308
|
- !ruby/object:Gem::Version
|
|
308
309
|
version: '0'
|
|
309
310
|
requirements: []
|
|
310
|
-
rubygems_version: 3.
|
|
311
|
+
rubygems_version: 3.0.3
|
|
311
312
|
signing_key:
|
|
312
313
|
specification_version: 4
|
|
313
314
|
summary: JavaScript BDD framework
|