add emoji to output 👦

This commit is contained in:
Alexander Popov 2022-04-08 16:05:11 +03:00
parent 1dead2cc47
commit 9818b43f80
Signed by: iiiypuk
GPG Key ID: 3F76816AEE08F908
2 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,7 @@
- ♻️ - Edited
## 0.2.2 - [08/04/2022]
- - Added emoji to output
- ♻️ - Fixed URL color & style output
## 0.2.1 - [14/03/2022]

View File

@ -120,21 +120,27 @@ while loop
else
passwords_array.each do |item|
if item.url.includes?(password_string.to_s)
print "🌐 "
puts item.url.colorize(:magenta).mode(:bold).mode(:underline)
if !item.email.blank?
print "📧 "
puts item.email.colorize(:red)
end
if !item.login.blank?
print "🏷️ "
puts item.login.colorize(:yellow)
end
if !item.password.blank?
print "🔐 "
puts item.password.colorize(:red).back(:red)
end
if !item.desc.blank?
print "📄 "
puts item.desc.colorize(:cyan)
end
if !item.profile_url.blank?
print "👦 "
puts item.profile_url.colorize(:green)
end