#POKEMON CHALLENGE 1: Data Persistence, pt1
Scraping Bulbapedia everytime we want to make pokemon is probably not a good idea. It's a better idea to scrape just once, and store that data somewhere.
A way we can store that data is a type of data format called YAML. YAML stands for YAML ain't markup language, which isn't super important to know or understand right now.
What's important to know is that we can store our data in a way that looks a little bit like a nested, bulleted, list.
A good example of what this might look like is our student site: https://github.com/ashleygwilliams/webdev_fellowhome/blob/master/data/students.yml
Your challenge, should you choose to accept it, is to store all the information you are scraping from Bulbapedia into a YAML file that your app can now use to make pokemon.
Here are some resources and tutorials to get you started:
- YAML ruby cookbook: http://yaml.org/YAML_for_ruby.html
- Tutorial: http://rhnh.net/2011/01/31/yaml-tutorial
- Video: http://manwithcode.com/205/programming-with-ruby-episode-14-yaml/