sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit ab72039bc063924a82698503ae12d196e0905c17
parent 3ad5a89a038be9d2cce6a8fc3449b26aa249254e
Author: William Morgan <wmorgan-sup@masanjin.net>
Date:   Sat,  2 Jan 2010 16:30:18 -0500

add Index#is_a_deprecated_ferret_index?

Diffstat:
M lib/sup/ferret_index.rb | 2 ++
M lib/sup/index.rb | 2 ++
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/lib/sup/ferret_index.rb b/lib/sup/ferret_index.rb
@@ -11,6 +11,8 @@ Variables:
   subs: The string being searched.
 EOS
 
+  def is_a_deprecated_ferret_index?; true end
+
   def initialize dir=BASE_DIR
     super
 
diff --git a/lib/sup/index.rb b/lib/sup/index.rb
@@ -23,6 +23,8 @@ class BaseIndex
     def method_missing m; @h[m.to_s] end
   end
 
+  def is_a_deprecated_ferret_index?; false end
+
   include Singleton
 
   def initialize dir=BASE_DIR