class Github::Gists

def get_gist(gist_id, params={})


@github.gists.get_gist 'gist-id'
@github = Github.new :oauth_token => '...'
= Examples

Get a single gist
def get_gist(gist_id, params={})
  _normalize_params_keys(params)
  get("/gists/#{gist_id}", params)
end