3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# File 'lib/espn_rb/utilities.rb', line 3
def self.help(str)
puts "-----------------------------Welcome to EspnRb.---------------------------------\n\n"
puts s = " _.-=\"\"=-._\n .'\\\\\\\\-++++-//'.\n ( || || )\n '.// \\\\\\\\.'\n `'-=..=-'`\n"
puts "--------------------------------------------------------------------------------"
puts "You are currently using the headlines api from here you can do the follow:\n\n"
puts "\t#{'Method'.ljust(25)} Description\n\n"
puts str
end
|