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_keys(params)
  _validate_presence_of(gist_id)
  get_request("/gists/#{gist_id}", params)
end