class Github::Gists

def get(gist_id, params={})


github.gists.get 'gist-id'
github = Github.new
= Examples

Get a single gist
def get(gist_id, params={})
  normalize! params
  assert_presence_of gist_id
  get_request("/gists/#{gist_id}", params)
end