'get' method removed, 'all' is now used to fetch data
Previously, you would use the 'get' method to fetch a specific page of data (does not automatically page through data). Now, the 'all' method will page through data for you, but also only fetch a specific page if the page parameter is specified. Example:
MTG::Card.where(page: 1).all
That will only return the first page of data.