class Github::Gists
def get(*args)
github.gists.get 'gist-id'
github = Github.new
= Examples
Get a single gist
def get(*args) arguments(args, :required => [:gist_id]) get_request("/gists/#{gist_id}", arguments.params) end
def get(*args) arguments(args, :required => [:gist_id]) get_request("/gists/#{gist_id}", arguments.params) end