gist: A gist object or something coerceable to a gist
description: (character) Brief description of gist (optional)
...: Curl options passed on to verb-GET
Returns
an object of class gist
Examples
## Not run:file1 <- system.file("examples","alm.md", package ="gistr")file2 <- system.file("examples","zoo.json", package ="gistr")# add new filesgists(what ="minepublic")[[3]]%>% add_files(file1, file2)%>% update()# update existing files### file name has to match to current namegists(what ="minepublic")[[3]]%>% update_files(file1)%>% update()# delete existing files### again, file name has to match to current namegists(what ="minepublic")[[3]]%>% delete_files(file1, file2)%>% update()# rename existing files# For some reason, this operation has to upload the content too### first name is old file name with path (must match), and second is ### new file name (w/o path)## add firstgists(what ="minepublic")[[3]]%>% add_files(file1, file2)%>% update()## then renamegists(what ="minepublic")[[3]]%>% rename_files(list(file1,"newfile.md"))%>% update()### you can pass in many renamesgists(what ="minepublic")[[3]]%>% rename_files(list(file1,"what.md"), list(file2,"new.json"))%>% update()## End(Not run)