class Pronto::Github

def commit_comments(sha)

def commit_comments(sha)
  @comment_cache[sha.to_s] ||= begin
    client.commit_comments(slug, sha).map do |comment|
      Comment.new(sha, comment.body, comment.path, comment.line)
    end
  end
end