Your task for tonight is to write a Puppy Scraper. Your scraper will search craigslist for all pets in the SF area and use regex to return the link (href) and text for any posting that matches the words "pup", ""puppy", "puppies" and "dog". In addition, make sure the puppy scraper only returns results from June 11.
- Use Nokogiri to scrape craigslist using
today.html
- Use regex to match the text you search for ("pup", "puppy", "dog") and make sure you are only returning results from June 11th
- Test your methods and regular expressions with rspec