├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS ├── R └── ghapps.R ├── README.md ├── ghapps.Rproj ├── inst └── keys │ └── demo-app-for-r.2022-10-31.private-key.pem └── man └── ghapps.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/NEWS -------------------------------------------------------------------------------- /R/ghapps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/R/ghapps.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/README.md -------------------------------------------------------------------------------- /ghapps.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/ghapps.Rproj -------------------------------------------------------------------------------- /inst/keys/demo-app-for-r.2022-10-31.private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/inst/keys/demo-app-for-r.2022-10-31.private-key.pem -------------------------------------------------------------------------------- /man/ghapps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/ghapps/HEAD/man/ghapps.Rd --------------------------------------------------------------------------------