sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/

lib/sup/version.rb (228B) - raw

      1 def git_suffix
      2   revision = `GIT_DIR=#{__dir__}/../../.git git rev-parse HEAD 2>/dev/null`
      3   if revision.empty?
      4     "-git-unknown"
      5   else
      6     "-git-#{revision[0..7]}"
      7   end
      8 end
      9 
     10 module Redwood
     11   VERSION = "1.4#{git_suffix}"
     12 end