Skip to content

libPhipp/Rjira

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rjira

Friendly JIRA REST API wrapper in R

This package is an extension of https://github.com/awalker89/Rjira written by Alexander Walker and splits off of his version 0.1.1

This package is created to work on the API version 2 of Atlassian Jira REST API

Installation

To install the package, use

  • devtools::install_github("libPhipp/Rjira", ref="dev"), and
  • library(RJira), to load the package into your R session.

Usage

At the moment, the most convenient way to connect to a JIRA instance is:


library(Rjira)
jira <- jira(scheme = "https", host = 'localhost', user='username', pass='secret')
jira %>% get_projects() %>% 
         select(...) %>% 
         mutate(...)

Changes

  • Version 0.2.1

  • Version 0.2.2

    • get_issues now has an automated depagination

    • default values for user/password/project/... are now stored in a connection object

Roadmap

  • Might like to add oauth soon
  • Write vignettes

License

GPL-3 as being inherited by the A. Walker version.

Releases

No releases published

Packages

 
 
 

Languages

  • R 100.0%