Module: Banner

Included in:
Instabot
Defined in:
lib/instabot/banner.rb

Instance Method Summary collapse

Instance Method Details



2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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