class Github::Activity::Starring

def unstar(*args)


github.activity.starring.unstar 'user-name', 'repo-name'
github = Github.new
= Examples

You need to be authenticated to unstar a repository.

Unstar a repository
def unstar(*args)
  arguments(args, :required => [:user, :repo])
  delete_request("/user/starred/#{user}/#{repo}", arguments.params)
end