From f11cd6ddcb535fbbf8837f576c2f1820f0d7aaad Mon Sep 17 00:00:00 2001 From: apainintheneck Date: Thu, 25 Apr 2024 19:19:55 -0700 Subject: [PATCH] Add unaccent gem as dependency This was a transitive dependency of the countries gem that didn't get explicitly included when that gem got removed at runtime. I realized that there was a problem when I tried to install this gem on a new computer. --- Gemfile.lock | 3 ++- atlasq.gemspec | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index ee9c199..06a0c8a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,8 @@ PATH remote: . specs: atlasq (1.0.1) - tty-pager (~> 0.14) + tty-pager + unaccent GEM remote: https://rubygems.org/ diff --git a/atlasq.gemspec b/atlasq.gemspec index 13f9ad3..e842ab5 100644 --- a/atlasq.gemspec +++ b/atlasq.gemspec @@ -26,5 +26,6 @@ Gem::Specification.new do |spec| spec.bindir = "exe" spec.executables = ["atlasq"] - spec.add_dependency "tty-pager", "~> 0.14" + spec.add_dependency "tty-pager" + spec.add_dependency "unaccent" end