github-0.1.2: Access to the Github API, v3.

Github.Gists

Description

The gists API as described at http://developer.github.com/v3/gists/.

Synopsis

Documentation

gists :: String -> IO (Either Error [Gist])Source

The list of all public gists created by the user.

 gists "mike-burns"

gist :: String -> IO (Either Error Gist)Source

A specific gist, given its id.

 gist "225074"