From 0798bb478bdd38e6f0856eac575d4bcc44b1a135 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 17 Feb 2021 22:16:38 +0000 Subject: add more non bin types --- geheim.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/geheim.rb b/geheim.rb index 69a1ed6..edc0359 100755 --- a/geheim.rb +++ b/geheim.rb @@ -20,6 +20,7 @@ $sync_repos = %w(dv vulcan) # 3. Add README.md with examples # 4. Refactor code a bit. # 5. Refactor the commands a bit (e.g. unify view with cat and open) +# 6. Rebase git repo (remove older commints) module Git def initialize @@ -224,6 +225,10 @@ class Index < CommitFile def is_binary? if @description.include?(".txt") false + elsif @description.include?(".csv") + false + elsif @description.include?(".md") + false else @description.include?(".") end -- cgit v1.2.3