module Banner
Public Instance Methods
print_banner()
click to toggle source
# File lib/instabot/banner.rb, line 2 def print_banner if options[:print_banner] puts <<-BANNER ██╗███╗ ██╗███████╗████████╗ █████╗ ██████╗ ██████╗ ████████╗ ██║████╗ ██║██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██╔═══██╗╚══██╔══╝ ██║██╔██╗ ██║███████╗ ██║ ███████║██████╔╝██║ ██║ ██║ ██║██║╚██╗██║╚════██║ ██║ ██╔══██║██╔══██╗██║ ██║ ██║ ██║██║ ╚████║███████║ ██║ ██║ ██║██████╔╝╚██████╔╝ ██║ ╚═╝╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═╝ BANNER puts 'An instagram bot works without instagram api '.white.bold + 'github.com/'.cyan + "eVanilla/instabot.rb\n".cyan.bold.italic end end