Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.44 KB

File metadata and controls

57 lines (36 loc) · 1.44 KB

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.