From 62a667a8e38595ddffd04e7533fd0a4bce6a7cd6 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Mon, 30 Aug 2021 18:33:57 -0700 Subject: [PATCH] Added a deprecation notice to the gem's description [#179330717] --- jasmine-core.gemspec | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/jasmine-core.gemspec b/jasmine-core.gemspec index 15999b31..fece3c1c 100644 --- a/jasmine-core.gemspec +++ b/jasmine-core.gemspec @@ -8,7 +8,18 @@ Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY s.authors = ["Gregg Van Hove"] s.summary = %q{JavaScript BDD framework} - s.description = %q{Test your JavaScript without any framework dependencies, in any environment, and with a nice descriptive syntax.} + s.description = <<~DESC + Test your JavaScript without any framework dependencies, in any environment, + and with a nice descriptive syntax. + + Jasmine for Ruby is deprecated. The direct replacment for the jasmine-core + gem is the jasmine-core NPM package. If you are also using the jasmine gem, + we recommend using the jasmine-browser-runner NPM package instead. It + supports all the same scenarios as the jasmine gem gem plus Webpacker. See + https://jasmine.github.io/setup/browser.html for setup instructions, and + https://github.com/jasmine/jasmine-gem/blob/main/release_notes/3.9.0.md + for other options. + DESC s.email = %q{jasmine-js@googlegroups.com} s.homepage = "http://jasmine.github.io" s.license = "MIT"