class Github::Repos::Watching

def start_watching(user_name, repo_name, params={})


github.repos.watching.start_watching 'user-name', 'repo-name'
github = Github.new
= Examples

You need to be authenticated to watch a repository

Watch a repository
def start_watching(user_name, repo_name, params={})
  _validate_presence_of user_name, repo_name
  _normalize_params_keys(params)
  put_request("/user/watched/#{user_name}/#{repo_name}", params)
end