First of all, to get everything set up
- Fork this repo to your GitHub account
- Clone your forked repo to your machine
cdinto the directory and install the dependencies by doingbundle- Set up the database by doing
rake setup - Seed the database with records by doing
rake seed_db - Start the server by doing
rackup - Explore the app in your browser!
- Open
country_data.rbin your text editor. This is the only file you need to edit. - Read the code in the first three methods
.all,.european_countriesand.all_data_sorted_by_population_increasing_order - Note down anything you don't understand and investigate what's going on. You could use some of your debugging tools here.
- Find the empty methods and add code to perform the queries described (by the names of the methods). Don't worry about testing this time – focus on implementing the DB queries.