jasmine 3.9.0 → 3.99.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f2e9e043fa37622252b7119ddfda3c53d5d81cebe92de2c5d7d7aef7ff3d079
4
- data.tar.gz: feb33aeb7ad6202fa86f8a5272491815f97d3e908376ccd39453490227d1fd39
3
+ metadata.gz: cbdd865c82de37b97d8d5dbd95b58ac3e2e9541afa9082321b071e14f4ba6ba0
4
+ data.tar.gz: 469bbddc3d23cc28a1166cb937386a0c29bee7bd5d925c60fab9a18d2feefe79
5
5
  SHA512:
6
- metadata.gz: aebe47ea1dbb63f56682f87ac3de710554cf5f1674c423d01c9eef1b3930d2bcf4f14d490b9fad4b2b312746b59297369dbabc3f4f3390c5d73bc28d011717cc
7
- data.tar.gz: 1da659d48bd231163039d082337a0a1dc690a27fd76fa546551c1ba5949f046d1029c10a2c3b77cc0e4adf94dcc514c627479e925775286dea9555dc3f2edb76
6
+ metadata.gz: 6a1e7d7315780799712e61797060dafa4cbb274b929a6909577b6b17d9360e805526a86a3f0fbdbc65c7500ba6c030676c021f8df7b1a6d2eca2657d6b8e5ea1
7
+ data.tar.gz: b5ffe4248e267cbadac55dcdbe852f7b57b12e5f4341ba534b9a7fe1248f3a6b2e449e6f27e4d0f74c03d8343ce40ab6078dc6fabe616b1de1fa8ffd3cc0ec5e
data/.circleci/config.yml CHANGED
@@ -34,7 +34,7 @@ jobs:
34
34
  path: jasmine-gem
35
35
  - run:
36
36
  name: Install Node
37
- command: sudo apt-get install nodejs
37
+ command: sudo apt update && sudo apt-get install nodejs
38
38
  - run:
39
39
  name: Install bundler
40
40
  command: "if [ $RAILS_VERSION = rails4 ];then gem install bundler -v '< 2.0' ; else gem install bundler; fi"
data/RELEASE.markdown CHANGED
@@ -6,8 +6,9 @@ See release docs in jasmine-core
6
6
 
7
7
  ## Jasmine Gem
8
8
 
9
- 1. Update the release notes in `release_notes` - use the Anchorman gem to generate the markdown file and edit accordingly
10
- 1. update version in version.rb
9
+ 1. Special step for 3.99: After merging to main, fix references to the 3.99 branch in Gemfile and jasmine_rails_spec.rb.
10
+ 2. Update the release notes in `release_notes` - use the Anchorman gem to generate the markdown file and edit accordingly
11
+ 3. update version in version.rb
11
12
  * for release candidates, add ".rc" + number to the end of the appropriate version part
12
13
  1. commit and push the version update to github
13
14
  1. Update the gemspec to depend on the latest version of jasmine-core
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 = %q{Test your JavaScript without any framework dependencies, in any environment, and with a nice descriptive syntax.}
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.9.0'
50
+ s.add_dependency 'jasmine-core', '3.99.0'
41
51
  s.add_dependency 'rack', '>= 2.1.4'
42
52
  s.add_dependency 'webrick'
43
53
  s.add_dependency 'rake'
@@ -1,3 +1,3 @@
1
1
  module Jasmine
2
- VERSION = "3.9.0"
2
+ VERSION = "3.99.0"
3
3
  end
@@ -0,0 +1,24 @@
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
+ ## Supported Environments
8
+
9
+ The Jasmine gem has been tested in the following environments:
10
+
11
+ | Rails version | Ruby versions |
12
+ |-----------------|---------------|
13
+ | 6 | 2.5-3.0 |
14
+ | 5 | 2.3-2.7 |
15
+ | 4 | 2.3-2.6 |
16
+ | Non-Rails usage | 2.3-3.0 |
17
+
18
+ See the
19
+ [jasmine-core release notes](https://github.com/jasmine/jasmine/blob/main/release_notes/3.10.0.md)
20
+ for supported browsers.
21
+
22
+ ------
23
+
24
+ _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)_
@@ -0,0 +1,24 @@
1
+ # Jasmine Gem 3.99.0 Release Notes
2
+
3
+ This release adds deprecation warnings for breaking changes that will be
4
+ introduced in Jasmine 4.0. Please see the
5
+ [migration guide](https://jasmine.github.io/tutorials/upgrading_to_Jasmine_4.0)
6
+ for more information.
7
+
8
+ This is the last planned release of Jasmine for Ruby. Versions 4.0 and later
9
+ will be distributed only via NPM and the standalone distribution.
10
+
11
+ ## Supported Environments
12
+
13
+ The Jasmine gem has been tested in the following environments:
14
+
15
+ | Rails version | Ruby versions |
16
+ |-----------------|---------------|
17
+ | 6 | 2.5-3.0 |
18
+ | 5 | 2.3-2.7 |
19
+ | 4 | 2.3-2.6 |
20
+ | Non-Rails usage | 2.3-3.0 |
21
+
22
+ ------
23
+
24
+ _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.9.0
4
+ version: 3.99.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregg Van Hove
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-21 00:00:00.000000000 Z
11
+ date: 2022-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -90,16 +90,16 @@ dependencies:
90
90
  name: jasmine-core
91
91
  requirement: !ruby/object:Gem::Requirement
92
92
  requirements:
93
- - - "~>"
93
+ - - '='
94
94
  - !ruby/object:Gem::Version
95
- version: 3.9.0
95
+ version: 3.99.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.9.0
102
+ version: 3.99.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: Test your JavaScript without any framework dependencies, in any environment,
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
@@ -234,6 +243,9 @@ files:
234
243
  - release_notes/3.8.0.md
235
244
  - release_notes/3.8.1.md
236
245
  - release_notes/3.9.0.md
246
+ - release_notes/3.9.1.md
247
+ - release_notes/3.9.2.md
248
+ - release_notes/3.99.0.md
237
249
  - release_notes/v1.2.1.md
238
250
  - release_notes/v1.3.2.md
239
251
  - release_notes/v2.0.0.md
@@ -292,7 +304,7 @@ homepage: http://jasmine.github.io/
292
304
  licenses:
293
305
  - MIT
294
306
  metadata: {}
295
- post_install_message:
307
+ post_install_message:
296
308
  rdoc_options:
297
309
  - "--charset=UTF-8"
298
310
  require_paths:
@@ -308,8 +320,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
308
320
  - !ruby/object:Gem::Version
309
321
  version: '0'
310
322
  requirements: []
311
- rubygems_version: 3.0.3
312
- signing_key:
323
+ rubygems_version: 3.2.15
324
+ signing_key:
313
325
  specification_version: 4
314
326
  summary: JavaScript BDD framework
315
327
  test_files: