Liking cljdoc? Tell your friends :D

tentacles.gists

Implements the Github Gists API: http://developer.github.com/v3/gists/

Implements the Github Gists API: http://developer.github.com/v3/gists/
raw docstring

commentsclj

(comments id & [options])

List comments for a gist.

List comments for a gist.
sourceraw docstring

create-commentclj

(create-comment id body options)

Create a comment.

Create a comment.
sourceraw docstring

create-gistclj

(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.
sourceraw docstring

delete-commentclj

(delete-comment comment-id options)

Delete a comment.

Delete a comment.
sourceraw docstring

delete-gistclj

(delete-gist id & [options])

Delete a gist.

Delete a gist.
sourceraw docstring

edit-commentclj

(edit-comment comment-id body options)

Edit a comment.

Edit a comment.
sourceraw docstring

edit-gistclj

(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.
sourceraw docstring

file-contentsclj

(file-contents gist)

Extract a file->content map from a gist

Extract a file->content map from a gist
sourceraw docstring

fork-gistclj

(fork-gist id & [options])

Fork a gist.

Fork a gist.
sourceraw docstring

gistsclj

(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.
sourceraw docstring

public-gistsclj

(public-gists)

List all public gists.

List all public gists.
sourceraw docstring

specific-commentclj

(specific-comment comment-id & [options])

Get a specific comment.

Get a specific comment.
sourceraw docstring

specific-gistclj

(specific-gist id & [options])

Get a specific gist.

Get a specific gist.
sourceraw docstring

star-gistclj

(star-gist id & [options])

Star a gist.

Star a gist.
sourceraw docstring

starred-gistsclj

(starred-gists options)

List the authenticated user's starred gists.

List the authenticated user's starred gists.
sourceraw docstring

starred?clj

(starred? id & [options])

Check if a gist is starred.

Check if a gist is starred.
sourceraw docstring

unstar-gistclj

(unstar-gist id & [options])

Unstar a gist.

Unstar a gist.
sourceraw docstring

user-gistsclj

(user-gists user & [options])

List a user's gists.

List a user's gists.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close