Implements the Github Gists API: http://developer.github.com/v3/gists/
Implements the Github Gists API: http://developer.github.com/v3/gists/
(comments id & [options])
List comments for a gist.
List comments for a gist.
(create-comment id body options)
Create a comment.
Create a comment.
(create-gist files & [options])
Create a gist. files is a map of filenames to contents. Options are: description -- A string description of the gist. public -- true (default) or false; whether or not the gist is public.
Create a gist. files is a map of filenames to contents. Options are: description -- A string description of the gist. public -- true (default) or false; whether or not the gist is public.
(delete-comment comment-id options)
Delete a comment.
Delete a comment.
(edit-comment comment-id body options)
Edit a comment.
Edit a comment.
(edit-gist id & [options])
Edit a gist. Options are: description -- A string to update the description to. files -- A map of filenames to maps. These submaps may contain either of the following, or both: a :contents key that will replace the gist's contents, and a :filename key that will replace the name of the file. If one of the file keys in the map is associated with 'nil', it'll be deleted.
Edit a gist. Options are: description -- A string to update the description to. files -- A map of filenames to maps. These submaps may contain either of the following, or both: a :contents key that will replace the gist's contents, and a :filename key that will replace the name of the file. If one of the file keys in the map is associated with 'nil', it'll be deleted.
(file-contents gist)
Extract a file->content map from a gist
Extract a file->content map from a gist
(gists & [options])
If authenticated, list the authenticated user's gists. Otherwise, return all public gists.
If authenticated, list the authenticated user's gists. Otherwise, return all public gists.
(specific-comment comment-id & [options])
Get a specific comment.
Get a specific comment.
(specific-gist id & [options])
Get a specific gist.
Get a specific gist.
(starred-gists options)
List the authenticated user's starred gists.
List the authenticated user's starred gists.
(starred? id & [options])
Check if a gist is starred.
Check if a gist is starred.
(user-gists user & [options])
List a user's gists.
List a user's gists.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close