https://gitlab.com/fvafrcu/packager
Official site: https://cran.r-project.org/package=packager
https://gitlab.com/fvafrcu/packager
Last synced: 2 months ago
JSON representation
Official site: https://cran.r-project.org/package=packager
- Host: gitlab.com
- URL: https://gitlab.com/fvafrcu/packager
- Owner: fvafrcu
- Created: 2018-07-17T09:55:52.664Z (almost 7 years ago)
- Default Branch: master
- Last Synced: 2023-10-25T13:32:58.122Z (over 1 year ago)
- Stars: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- awesome-r-pkgtools - `{packager}`
README
[](https://gitlab.com/fvafrcu/packager/-/commits/master)
[](https://gitlab.com/fvafrcu/packager/-/commits/master)[](https://cran.r-project.org/package=packager)
[](https://cran.r-project.org/package=packager)
[](https://cran.r-project.org/package=packager)```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```# packager
## Introduction
Please read the
[vignette](https://fvafrcu.gitlab.io/packager/doc/An_Introduction_to_packager.html).Or, after installation, the help page:
```{r, eval = FALSE}
help("packager-package", package = "packager")
``````{r, echo = FALSE}
# insert developement page
help_file <- file.path("man", "packager-package.Rd")
captured <- gsub('_\b', '', capture.output(tools:::Rd2txt(help_file) ))
cat(captured, sep = "\n")
```## Installation
You can install packager from gitlab via:
```{r gh-installation, eval = FALSE}
if (! require("remotes")) install.packages("remotes")
remotes::install_gitlab("fvafrcu/packager")
```