Skip to content

Instantly share code, notes, and snippets.

@HopperMCS
Created July 20, 2020 22:21
Show Gist options
  • Save HopperMCS/bfd413027e1d662e1786bd3e17a3616c to your computer and use it in GitHub Desktop.
Save HopperMCS/bfd413027e1d662e1786bd3e17a3616c to your computer and use it in GitHub Desktop.
def article_navigator
while @input != "exit" && @input != "query"
puts "Choose a number"
@input = gets.chomp
index = @input.to_i - 1
if index > 9
puts "Wrong input, try again"
else
break if index < 0
selected_article = Article.all[index]
puts "Title: #{selected_article.title}"
puts "Description: #{selected_article.description}"
puts "URL: #{selected_article.url}"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment