jasmine 3.8.1 → 3.10.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 +12 -2
- data/lib/jasmine/version.rb +1 -1
- data/release_notes/3.10.0.md +11 -0
- data/release_notes/3.9.0.md +28 -0
- data/release_notes/3.9.1.md +10 -0
- data/release_notes/3.9.2.md +12 -0
- metadata +17 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3dd7ab4a60ccafe957e48ec7040a7bc9ce59d0bf4f0c16f5003d05630114870f
|
|
4
|
+
data.tar.gz: 648b229bdc1c1450cc20d918903cfd9c83eccaad58f9eb9aee2de39ba16b3a40
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aade9b7cc9c3bb8b7333eb63d7fa4b6b47ee90f59754256df1d0c400537f0b90a92ccd33fdc34363ceb10ef252a78734795357802e93008e037efe0e5fb7984c
|
|
7
|
+
data.tar.gz: a616bd9d9d1fa5307da60855a89e95e1400e05fa145d4b4970dc8b0c0fc8624ec789dbe034e5036c98665a3bb90b68a24863df80883e6b50555c1b1a2d1725b0
|
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
|
@@ -11,7 +11,17 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
|
|
12
12
|
s.authors = ["Gregg Van Hove"]
|
|
13
13
|
s.summary = %q{JavaScript BDD framework}
|
|
14
|
-
s.description =
|
|
14
|
+
s.description = <<~DESC
|
|
15
|
+
Test your JavaScript without any framework dependencies, in any environment,
|
|
16
|
+
and with a nice descriptive syntax.
|
|
17
|
+
|
|
18
|
+
Jasmine for Ruby is deprecated. We recommend using the
|
|
19
|
+
jasmine-browser-runner NPM package instead. It supports all the same
|
|
20
|
+
scenarios as this gem plus Webpacker. See
|
|
21
|
+
https://jasmine.github.io/setup/browser.html for setup instructions, and
|
|
22
|
+
https://github.com/jasmine/jasmine-gem/blob/main/release_notes/3.9.0.md
|
|
23
|
+
for other options.
|
|
24
|
+
DESC
|
|
15
25
|
s.email = %q{jasmine-js@googlegroups.com}
|
|
16
26
|
s.homepage = "http://jasmine.github.io/"
|
|
17
27
|
s.license = "MIT"
|
|
@@ -37,7 +47,7 @@ Gem::Specification.new do |s|
|
|
|
37
47
|
s.add_development_dependency 'rspec', '>= 2.5.0'
|
|
38
48
|
s.add_development_dependency 'nokogiri'
|
|
39
49
|
|
|
40
|
-
s.add_dependency 'jasmine-core', '~> 3.
|
|
50
|
+
s.add_dependency 'jasmine-core', '~> 3.10.0'
|
|
41
51
|
s.add_dependency 'rack', '>= 2.1.4'
|
|
42
52
|
s.add_dependency 'webrick'
|
|
43
53
|
s.add_dependency 'rake'
|
data/lib/jasmine/version.rb
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Jasmine Gem 3.10 Release Notes
|
|
2
|
+
|
|
3
|
+
This release updates the jasmine-core dependency to 3.10.0. See the
|
|
4
|
+
[jasmine-core release notes](https://github.com/jasmine/jasmine/blob/main/release_notes/3.10.0.md)
|
|
5
|
+
for more information.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
------
|
|
10
|
+
|
|
11
|
+
_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_
|
|
@@ -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)_
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Jasmine Gem 3.9.1 Release Notes
|
|
2
|
+
|
|
3
|
+
3.9.1 is identical to 3.9.0 except that the gem description mentions that it is
|
|
4
|
+
deprecated in favor of the `jasmine-browser-runner` NPM package. See the
|
|
5
|
+
[3.9.0 release notes](https://github.com/jasmine/jasmine-gem/blob/main/release_notes/3.9.0.md)
|
|
6
|
+
for more information.
|
|
7
|
+
|
|
8
|
+
------
|
|
9
|
+
|
|
10
|
+
_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Jasmine Gem 3.9.2 Release Notes
|
|
2
|
+
|
|
3
|
+
3.9.2 fixes an issue where parts of the gem description were stripped out and
|
|
4
|
+
not displayed on rubygems.org. It is identical to 3.9.0 except that the gem
|
|
5
|
+
description mentions that it is deprecated in favor of the
|
|
6
|
+
`jasmine-browser-runner` NPM package. See the
|
|
7
|
+
[3.9.0 release notes](https://github.com/jasmine/jasmine-gem/blob/main/release_notes/3.9.0.md)
|
|
8
|
+
for more information.
|
|
9
|
+
|
|
10
|
+
------
|
|
11
|
+
|
|
12
|
+
_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.10.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-
|
|
11
|
+
date: 2021-10-13 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.10.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.10.0
|
|
103
103
|
- !ruby/object:Gem::Dependency
|
|
104
104
|
name: rack
|
|
105
105
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -156,8 +156,16 @@ dependencies:
|
|
|
156
156
|
- - ">="
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
158
|
version: '0'
|
|
159
|
-
description:
|
|
159
|
+
description: |
|
|
160
|
+
Test your JavaScript without any framework dependencies, in any environment,
|
|
160
161
|
and with a nice descriptive syntax.
|
|
162
|
+
|
|
163
|
+
Jasmine for Ruby is deprecated. We recommend using the
|
|
164
|
+
jasmine-browser-runner NPM package instead. It supports all the same
|
|
165
|
+
scenarios as this gem plus Webpacker. See
|
|
166
|
+
https://jasmine.github.io/setup/browser.html for setup instructions, and
|
|
167
|
+
https://github.com/jasmine/jasmine-gem/blob/main/release_notes/3.9.0.md
|
|
168
|
+
for other options.
|
|
161
169
|
email: jasmine-js@googlegroups.com
|
|
162
170
|
executables:
|
|
163
171
|
- jasmine
|
|
@@ -224,6 +232,7 @@ files:
|
|
|
224
232
|
- lib/rack/jasmine/runner.rb
|
|
225
233
|
- release_notes/3.0.md
|
|
226
234
|
- release_notes/3.1.0.md
|
|
235
|
+
- release_notes/3.10.0.md
|
|
227
236
|
- release_notes/3.2.0.md
|
|
228
237
|
- release_notes/3.3.0.md
|
|
229
238
|
- release_notes/3.4.0.md
|
|
@@ -233,6 +242,9 @@ files:
|
|
|
233
242
|
- release_notes/3.7.0.md
|
|
234
243
|
- release_notes/3.8.0.md
|
|
235
244
|
- release_notes/3.8.1.md
|
|
245
|
+
- release_notes/3.9.0.md
|
|
246
|
+
- release_notes/3.9.1.md
|
|
247
|
+
- release_notes/3.9.2.md
|
|
236
248
|
- release_notes/v1.2.1.md
|
|
237
249
|
- release_notes/v1.3.2.md
|
|
238
250
|
- release_notes/v2.0.0.md
|