sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 740e3177d0d5a0e4d06d6b7c2c6a2294cdcd544d
parent 248743ae085bb63f998fee67cafce0197f5dccbd
Author: Iain Parris <ipv2.vcs@parris.org>
Date:   Sat, 13 Jun 2020 23:39:56 +0100

Fix gem dependency versions (bundler, xapian-ruby)

- bundler (">= 1.3", "< 3"): To add support for latest bundler version 2
- xapian-ruby ("~> 1.2.0"): We currently build on version 1.2, but not 1.4

Diffstat:
M Gemfile | 2 +-
M ext/mkrf_conf_xapian.rb | 2 +-
M sup.gemspec | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Gemfile b/Gemfile
@@ -2,7 +2,7 @@ source 'https://rubygems.org/'
 
 if !RbConfig::CONFIG['arch'].include?('openbsd')
   # update version in ext/mkrf_conf_xapian.rb as well.
-  gem 'xapian-ruby', '~> 1.2'
+  gem 'xapian-ruby', '~> 1.2.0'
 end
 
 gemspec
diff --git a/ext/mkrf_conf_xapian.rb b/ext/mkrf_conf_xapian.rb
@@ -16,7 +16,7 @@ begin
   if !RbConfig::CONFIG['arch'].include?('openbsd')
     # update version in Gemfile as well
     name    = "xapian-ruby"
-    version = "~> 1.2"
+    version = "~> 1.2.0"
 
     begin
       # try to load gem
diff --git a/sup.gemspec b/sup.gemspec
@@ -60,7 +60,7 @@ SUP: please note that our old mailing lists have been shut down,
   s.add_runtime_dependency "chronic", "~> 0.9.1"
   s.add_runtime_dependency "unicode", "~> 0.4.4"
 
-  s.add_development_dependency "bundler", "~> 1.3"
+  s.add_development_dependency "bundler", ">= 1.3", "< 3"
   s.add_development_dependency "rake"
   s.add_development_dependency 'minitest', '~> 5.5.1'
   s.add_development_dependency "rr", "~> 1.1"