class Github::Activity::Starring
def starring?(*args)
github.activity.starring.starring? 'user-name', 'repo-name'
github = Github.new
= Examples
Returns true if this repo is starred by you,false otherwise
Check if you are starring a repository
def starring?(*args) arguments(args, :required => [:user, :repo]) get_request("/user/starred/#{user}/#{repo}", arguments.params) true rescue Github::Error::NotFound false end