class Github::Client::Activity::Starring

def unstar(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/activity/starring/#unstar-a-repository -
def unstar(*args)
  arguments(args, required: [:user, :repo])
  delete_request("/user/starred/#{arguments.user}/#{arguments.repo}", arguments.params)
end