generated from pharmaverse/admiraltemplate
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathREADME.Rmd
70 lines (46 loc) · 1.81 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
title: "admiraldev"
output: md_document
date: '2022-06-27'
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
link <- function(text, url) {
return(
paste0(
"[", text, "]",
"(", url, ")"
)
)
}
dyn.link <- function(text, base_url, relative_url = "") {
branch <- Sys.getenv("BRANCH_NAME", "main")
return(
link(
text,
paste(base_url, branch, relative_url, sep = "/")
)
)
}
# Other variables
admiral_homepage <- "https://pharmaverse.github.io/admiral"
```
<!-- Please do not edit the README.md file as it is auto-generated. Only edit the README.Rmd file -->
# admiraldev <img src="man/figures/logo.png" align="right" alt="" width="120" />
ADaM in R Asset Library Development Utilities
<!-- badges: start -->
<!-- badges: end -->
## Purpose
Tools for developing functions and maintaining a healthy code base within the family of admiral R packages. `{admiraldev}` is intended to be used when developing `{admiral}` or `{admiral}` extension packages.
**NOTE:** This package is not intended for standalone use but rather as a central dependency for all developer utilities of `{admiral}` and its extension packages
## Installation
The package is available from CRAN and can be installed by running install.packages("admiraldev").
To install the latest development version of the package directly from GitHub use the following code:
```{r, eval = FALSE}
if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")
}
remotes::install_github("pharmaverse/admiraldev", ref = "devel")
```
## Release Schedule
`{admiraldev}` is to be officially released to CRAN one week before an official release of `{admiral}`. You can find the release schedule for `{admiral}` packages [here](https://github.com/pharmaverse/admiral/tree/devel#release-schedule).