Scraper CLI Project

M*A*S*H Scraper Project Project Parameters: Build a CLI program using Ruby that utilizes website scraping or an API This was the first project we had to do, the first time we would utilize the things we had learned so far. The project goal was to use scraping or an API to gather information from a website of our choice and then use that information tp build a CLI(Command Line Interface) program. The first thing I had to learn was how to use a gem called "Nokogiri" to scrap the website. Nokogiri creates special nodes that are sorted into arrays that make it so they can be accessed and iterate over. The result being the information you wanted. This presented my first big challenge: CSS selectors. To filter through these Nokogiri nodes you use CSS selectors. To determine what selectors to use you have to use a combination of the pry method and inspecting the code of the website. I had difficulty at first with this as none of the selector...