From c0ebf6f07fc17b859e3c1a92fd2bfe261de70e16 Mon Sep 17 00:00:00 2001 From: esotericpig Date: Wed, 27 Apr 2022 03:53:49 -0500 Subject: [PATCH] Add rss gem --- CHANGELOG.md | 1 + Gemfile.lock | 4 ++++ nhkore.gemspec | 1 + 3 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c012b1..4d424e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning v2.0.0](https://semver.org/spec ### Fixed - Updated gems (`nokogiri`). +- Added `rss` gem (no longer included with Ruby core). ## [v0.3.12] - 2022-02-27 diff --git a/Gemfile.lock b/Gemfile.lock index 5852d8a..149a6a3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -13,6 +13,7 @@ PATH psychgus (~> 1.3) public_suffix (~> 4.0) rainbow (~> 3.1) + rss (~> 0.2) rubyzip (~> 2.3) tiny_segmenter (~> 0.0) tty-progressbar (~> 0.18) @@ -52,6 +53,9 @@ GEM rdoc (6.4.0) psych (>= 4.0.0) redcarpet (3.5.1) + rexml (3.2.5) + rss (0.2.9) + rexml rubyzip (2.3.2) stringio (3.0.1) strings-ansi (0.2.0) diff --git a/nhkore.gemspec b/nhkore.gemspec index 2173bd5..7f63222 100644 --- a/nhkore.gemspec +++ b/nhkore.gemspec @@ -54,6 +54,7 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'psychgus' ,'~> 1.3' # For styling Psych YAML spec.add_runtime_dependency 'public_suffix' ,'~> 4.0' # For parsing URL domain names spec.add_runtime_dependency 'rainbow' ,'~> 3.1' # For CLI color output + spec.add_runtime_dependency 'rss' ,'~> 0.2' # For scraping (BingScraper/Scraper) spec.add_runtime_dependency 'rubyzip' ,'~> 2.3' # For extracting Zip files (GetCmd) spec.add_runtime_dependency 'tiny_segmenter' ,'~> 0.0' # For splitting Japanese sentences into words spec.add_runtime_dependency 'tty-progressbar' ,'~> 0.18' # For CLI progress bars