Class: ShowLogo

Inherits:
Object
  • Object
show all
Defined in:
lib/show_logo.rb

Class Method Summary collapse

Class Method Details

.show_introObject


narcism



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/show_logo.rb', line 9

def self.show_intro
  system "clear"


  #Startup screen

  puts '      ____              __        '.red
  puts '     / __ \\   ____ _   / /      ___ '.red
  puts '    / / / /  / __ `/  / /      / _ \\'.red
  puts '   / /_/ /  / /_/ /  / /___   /  __/'.red
  puts '  /_____/   \\__,_/  /_____/   \\___/ '.red
  puts ''
  puts '     +-+-+-+-+ +-+-+-+-+-+-+-+-+'.yellow
  puts '     |R|u|b|y| |t|e|r|m|i|n|a|l|'.yellow
  puts '     +-+-+-+-+ +-+-+-+-+-+-+-+-+'.yellow
  puts ''
  puts ' >> Author : David Lejeune'.light_blue
  puts ''
  puts ' ###########################################'.red
  puts ' #             CONVERT CELCIUS             #'.red
  puts ' ###########################################'.red
  puts ''
end