Method: Travel::CLI#restaurants

Defined in:
lib/travel/cli.rb

#restaurantsObject



136
137
138
139
140
141
# File 'lib/travel/cli.rb', line 136

def restaurants
   Travel::Scraper.scrape_restaurants.each.with_index(1) do |winner, index|
     puts "#{index}: #{winner.name}- #{winner.location} - #{winner.cuisine}"
   end
   return nil
end