class Github::Activity::Watching

def watch(*args)


github.activity.watching.watch 'user-name', 'repo-name'
github = Github.new
= Examples

You need to be authenticated to watch a repository

Watch a repository
def watch(*args)
  arguments(args, :required => [:user, :repo])
  put_request("/user/subscriptions/#{user}/#{repo}", arguments.params)
end