lib/gumdrop/cli/internal.rb in gumdrop-1.0.3 vs lib/gumdrop/cli/internal.rb in gumdrop-1.1.0

- old
+ new

@@ -66,17 +66,18 @@ say "" Gumdrop.site.contents.keys.sort.each do |uri| content= Gumdrop.site.contents[uri] blackout= Gumdrop.site.in_blacklist?(uri) ? 'X' : ' ' generated= content.generated? ? '*' : ' ' - binary= content.binary? ? '!' : ' ' - say " #{blackout + generated + binary} #{content.uri}" + # binary= content.binary? ? '!' : ' ' + # say " #{blackout + generated + binary} #{content.uri}" + say " #{blackout + generated } #{content.uri}" end say "" say "Legend:" - say " X = On on the blacklist" + say " X = On the blacklist" say " * = Generated (not on fs)" - say " ! = Binary file" + # say " ! = Binary file" end desc "version", "Displays Gumdrop version" def version say "Gumdrop v#{ Gumdrop::VERSION }"