Skip to content

Instantly share code, notes, and snippets.

@HopperMCS
Created July 20, 2020 22:12
Show Gist options
  • Save HopperMCS/21070b08f76f8855c39de65a9a67f966 to your computer and use it in GitHub Desktop.
Save HopperMCS/21070b08f76f8855c39de65a9a67f966 to your computer and use it in GitHub Desktop.
def article_search
@input = gets.chomp
Article.search(@input) unless @input == "exit"
Article.all.each.with_index(1) do |art, index|
puts "#{index}. #{art.title}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment