Create a page to display list of colleges.
Create a rake task to scrape top colleges data from US News college page (all pages)
The scraped data needs to stored in a json file in this structure
[
{
"name" : "Example college/school name",
"rank" : 1,
"tuition_fees" : "$5000",
"total_enrollment" : 50000,
"acceptance_rate" : "50%",
"average_retention_rates" : "98%",
"graduation_rate" : "98%"
}
]
Once you have the json file, create a html page to display the data in a tablular format with paging (10 records per page)