Enhance jira ruby gem to support pagination on nested collections or make direct rest calls with pagination params
Currently for MVC we are using jira-ruby gem to make rest api calls to jira api to fetch issues and comments. However jira ruby gem does not allow for passing in pagination parameters for issue comments, but would rather pull all comments in one request, which can be turn out to be very big for issues with a lot of comments.
We would need a way to fetch comments for an issue in batches, rather than all at once.