- Use Kaminari to paginate songs.
In this lab, we're going to augment our song library to paginate our songs index.
The base models, controllers, views and other files have been provided. There's seed data to get you started, and there are tests for the lab in the spec
directory.
Since we are adding new features to an existing application, there will already be some passing tests. Part of your job is to make sure they're still passing after you're done!
- Use Kaminari to limit the songs index to 20 songs per page.
- Add paging controls to the songs index.
- Ensure tests pass.
- High five a million angels, 20 at a time.
Note There are tests that are already passing. That's intentional.