class ClubHopper

Public Instance Methods

call() click to toggle source
# File lib/club_hopper/cli.rb, line 3
def call
  start
  venue  
  what_venue
  menu
  goodbye  
end
start() click to toggle source
# File lib/club_hopper/cli.rb, line 11
def start
  puts "The weekend is finally upon us!!"
end
venue() click to toggle source
# File lib/club_hopper/cli.rb, line 18
   def venue
     puts "So you're lookin' to go out, huh... what club?"
     puts "----------------------------------------"
     puts <<-DOC 
     1. Output - Brooklyn
     2. Cielo - Manhattan
     DOC
   end
what_venue() click to toggle source
# File lib/club_hopper/cli.rb, line 27
def what_venue
 input = nil
 input = gets.strip.downcase
  if  input == "1" 
    puts "Ah...Output in Brooklyn huh, excellent!"
    what_day_output
  elsif input == "2"
    puts "Ah...Cielo in Manhattan huh, excellent!"
    what_day_cielo
  end
 end