class ShowLogo

Public Class Methods

show_intro() click to toggle source
# 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