class Github::Gists::Comments

def create(*args)


github.gists.comments.create 'gist-id'
github = Github.new
= Examples

Create a comment
def create(*args)
  arguments(args, :required => [:gist_id]) do
    sift VALID_GIST_COMMENT_OPTIONS
    assert_required REQUIRED_GIST_COMMENT_OPTIONS
  end
  post_request("/gists/#{gist_id}/comments", arguments.params)
end