├── .Rbuildignore ├── .github ├── CONTRIBUTING.md ├── issue_template.md ├── pull_request_template.md └── workflows │ ├── R-CMD-check.yaml │ ├── container.yml │ └── preview.yaml ├── .gitignore ├── DESCRIPTION ├── Dockerfile ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── build-site.R ├── test.R └── utils-registry.R ├── README.md ├── _pkgdown.yml ├── action.yml ├── inst ├── CITATION ├── logo.png └── pkgdown │ ├── _pkgdown.yml │ ├── assets │ ├── hexlogo.png │ ├── icon_lettering_color.svg │ └── labs.png │ ├── extra.scss │ └── templates │ ├── footer.html │ └── head.html ├── man ├── build_ropensci_docs.Rd ├── figures │ └── logo.png ├── test.Rd ├── test2.Rd ├── test3.Rd └── test4.Rd ├── rotemplate.Rproj ├── tests ├── testthat.R └── testthat │ └── test-bootswatch.R └── vignettes ├── .gitignore └── test.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/.github/workflows/container.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/.github/workflows/preview.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Maëlle Salmon 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/build-site.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/R/build-site.R -------------------------------------------------------------------------------- /R/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/R/test.R -------------------------------------------------------------------------------- /R/utils-registry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/R/utils-registry.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/action.yml -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/inst/logo.png -------------------------------------------------------------------------------- /inst/pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/inst/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /inst/pkgdown/assets/hexlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/inst/pkgdown/assets/hexlogo.png -------------------------------------------------------------------------------- /inst/pkgdown/assets/icon_lettering_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/inst/pkgdown/assets/icon_lettering_color.svg -------------------------------------------------------------------------------- /inst/pkgdown/assets/labs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/inst/pkgdown/assets/labs.png -------------------------------------------------------------------------------- /inst/pkgdown/extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/inst/pkgdown/extra.scss -------------------------------------------------------------------------------- /inst/pkgdown/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/inst/pkgdown/templates/footer.html -------------------------------------------------------------------------------- /inst/pkgdown/templates/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/inst/pkgdown/templates/head.html -------------------------------------------------------------------------------- /man/build_ropensci_docs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/man/build_ropensci_docs.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/test.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/man/test.Rd -------------------------------------------------------------------------------- /man/test2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/man/test2.Rd -------------------------------------------------------------------------------- /man/test3.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/man/test3.Rd -------------------------------------------------------------------------------- /man/test4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/man/test4.Rd -------------------------------------------------------------------------------- /rotemplate.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/rotemplate.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-bootswatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/tests/testthat/test-bootswatch.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/test.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-org/rotemplate/HEAD/vignettes/test.Rmd --------------------------------------------------------------------------------