class Github::Repos::Comments
def get(*args)
github.repos.comments.get 'user-name', 'repo-name', 'comment-id'
github = Github.new
= Examples
Gets a single commit comment
def get(*args) arguments(args, :required => [:user, :repo, :comment_id]) params = arguments.params get_request("/repos/#{user}/#{repo}/comments/#{comment_id}", params) end