Fetches the currently authenticated user's public gists.
API docs: https://developer.github.com/v3/gists/#list-gists
Stream<Gist> listCurrentUserPublicGists() { return PaginationHelper( github, ).objects('GET', '/gists/public', Gist.fromJson); }