class Github::Gists::Comments

def get(*args)


github.gists.comments.get 'gist-id', 'comment-id'
github = Github.new
= Examples

Get a single comment
def get(*args)
  arguments(args, :required => [:gist_id, :comment_id])
  get_request("/gists/#{gist_id}/comments/#{comment_id}", arguments.params)
end