From 601c7b31e6362cb14a7e04df365108f2ba4f66ea Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Sat, 3 Dec 2022 17:26:44 -0500 Subject: [PATCH] Restore missing dependency tty-which This was removed in commit c95bb24 (updating docs, gemspec, 2021-06-05); however, it is still required by lib/inf7.rb and lib/inf7/doc.rb. Without this, building and installing the gem per INSTALL.md went smoothly, but attempting to run e.g. 'inf7 --version' produced a runtime error. --- inf7.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/inf7.gemspec b/inf7.gemspec index e639b97..0b1e770 100644 --- a/inf7.gemspec +++ b/inf7.gemspec @@ -43,5 +43,6 @@ Gem::Specification.new do |spec| spec.add_dependency "optimist", "~> 3.0.1" spec.add_dependency "nokogiri", "~> 1.11.7" spec.add_dependency "tty-table", "~> 0.12.0" + spec.add_dependency "tty-which", "~> 0.4.0" end