class Github::Activity::Watching

def unwatch(*args)


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(*args)
  arguments(args, :required => [:user, :repo])
  delete_request("/user/subscriptions/#{user}/#{repo}", arguments.params)
end