class CLI
Public Instance Methods
run()
click to toggle source
# File lib/top_free_apps_itunes/cli.rb, line 3 def run puts "Welcome to iTunes' Top Free Apps List!" Scraper.scrape_itunes App.all.each.with_index(1) do |app, i| puts "#{i}. #{app.title}" end menu end