jasmine 3.9.0 → 3.9.1
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/jasmine.gemspec +11 -1
- data/lib/jasmine/version.rb +1 -1
- data/release_notes/3.9.1.md +10 -0
- metadata +12 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84e48a43ef05d8dda57c57526d63096f8c512c5ae949454414af4f349639f9f1
|
|
4
|
+
data.tar.gz: fe3baee3cdaef4f4cd263183100ec56e9e8e4fa12f32a598481e3fe8be4dc756
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a78e94899786224c5e2a5da65ac09a3cda061fa4b8b52b8db4eb01dfd57825176c15e5edf345369a52c1b65c66a82c755eb0ec4746a683b8ee3161e343ca6b8d
|
|
7
|
+
data.tar.gz: 14b8315742da13159e81e4acdcc35c5c8a1e4a89d2d7073891ed61e74f2db1c7c533fbbba9615c6bd56d4e69904d84c032f0079970b41479a7063f0295bef7c8
|
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"
|
data/lib/jasmine/version.rb
CHANGED
|
@@ -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)_
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jasmine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.9.
|
|
4
|
+
version: 3.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregg Van Hove
|
|
@@ -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
|
|
@@ -234,6 +242,7 @@ files:
|
|
|
234
242
|
- release_notes/3.8.0.md
|
|
235
243
|
- release_notes/3.8.1.md
|
|
236
244
|
- release_notes/3.9.0.md
|
|
245
|
+
- release_notes/3.9.1.md
|
|
237
246
|
- release_notes/v1.2.1.md
|
|
238
247
|
- release_notes/v1.3.2.md
|
|
239
248
|
- release_notes/v2.0.0.md
|
|
@@ -308,7 +317,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
308
317
|
- !ruby/object:Gem::Version
|
|
309
318
|
version: '0'
|
|
310
319
|
requirements: []
|
|
311
|
-
rubygems_version: 3.
|
|
320
|
+
rubygems_version: 3.1.2
|
|
312
321
|
signing_key:
|
|
313
322
|
specification_version: 4
|
|
314
323
|
summary: JavaScript BDD framework
|