Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
R
 
 
man
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

vstsr

Build Status AppVeyor Build Status

The aim of vstsr is to make it easier to connect between R and Visual Studio Team Services.

Commands will include getting repository information, git services and work item information.

Installation

install_github('ashbaldry/vstsr')
library(vstsr)

Initialisation

There are two ways to use the vstsr package:

  1. Creating an R6 object using vsts_account that contains simple methods to do all of the functions that are available in the package.
  2. Create an authorisation key using vsts_auth_key and then using that to run each of the functions within the package.

Method 1:

proj <- vsts_account$new(user = '<USER NAME>', pass= '<PASSWORD>', 
                         domain = '<VS DOMAIN>', project = '<VS PROJECT>')

Method 2:

auth_key <- vsts_auth_key(user = '<USER NAME>', pass= '<PASSWORD>')

About

Visual Studio Team Services and R

Resources

Packages

No packages published

Languages

You can’t perform that action at this time.