class Github::Gists::Comments
def list(*args)
github.gists.comments.list 'gist-id'
github = Github.new
= Examples
List comments on a gist
def list(*args) arguments(args, :required => [:gist_id]) response = get_request("/gists/#{gist_id}/comments", arguments.params) return response unless block_given? response.each { |el| yield el } end