class Github::Activity::Watching
def unwatch(user_name, repo_name, params={})
github.activity.watching.unwatch 'user-name', 'repo-name'
github = Github.new
= Examples
You need to be authenticated to stop watching a repository.
Stop watching a repository
def unwatch(user_name, repo_name, params={}) assert_presence_of user_name, repo_name normalize! params delete_request("/user/subscriptions/#{user_name}/#{repo_name}", params) end