├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── build_plumber_file.R ├── create_pipework.R ├── dep_port.R ├── http_error.R ├── log.R ├── manage_endpoints.R ├── new_api.R └── utils.R ├── README.Rmd ├── README.md ├── dev └── dev_history.R ├── inst └── marioboxexample │ ├── .gitignore │ ├── DESCRIPTION │ ├── NAMESPACE │ ├── R │ ├── get_health.R │ └── run_plumber.R │ ├── REMOVEME.Rbuildignore │ ├── dev │ └── run_dev.R │ ├── inst │ └── mariobox.yml │ ├── man │ ├── get_health.Rd │ └── run_api.Rd │ └── tests │ ├── testthat.R │ └── testthat │ ├── test-health.R │ └── test-run_plumber.R ├── man ├── build_plumber_file.Rd ├── create_mariobox.Rd ├── http_error.Rd ├── manage_endpoints.Rd ├── mario_log.Rd ├── mario_try.Rd └── new_api.Rd ├── mariobox.Rproj └── tests ├── testthat.R └── testthat ├── setup.R ├── test-R.R ├── test-build_plumber_file.R ├── test-create_pipework.R ├── test-manage_endpoints.R └── test-utils.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: mariobox authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/build_plumber_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/R/build_plumber_file.R -------------------------------------------------------------------------------- /R/create_pipework.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/R/create_pipework.R -------------------------------------------------------------------------------- /R/dep_port.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/R/dep_port.R -------------------------------------------------------------------------------- /R/http_error.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/R/http_error.R -------------------------------------------------------------------------------- /R/log.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/R/log.R -------------------------------------------------------------------------------- /R/manage_endpoints.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/R/manage_endpoints.R -------------------------------------------------------------------------------- /R/new_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/R/new_api.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/README.md -------------------------------------------------------------------------------- /dev/dev_history.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/dev/dev_history.R -------------------------------------------------------------------------------- /inst/marioboxexample/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /inst/marioboxexample/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/DESCRIPTION -------------------------------------------------------------------------------- /inst/marioboxexample/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/NAMESPACE -------------------------------------------------------------------------------- /inst/marioboxexample/R/get_health.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/R/get_health.R -------------------------------------------------------------------------------- /inst/marioboxexample/R/run_plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/R/run_plumber.R -------------------------------------------------------------------------------- /inst/marioboxexample/REMOVEME.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/REMOVEME.Rbuildignore -------------------------------------------------------------------------------- /inst/marioboxexample/dev/run_dev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/dev/run_dev.R -------------------------------------------------------------------------------- /inst/marioboxexample/inst/mariobox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/inst/mariobox.yml -------------------------------------------------------------------------------- /inst/marioboxexample/man/get_health.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/man/get_health.Rd -------------------------------------------------------------------------------- /inst/marioboxexample/man/run_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/man/run_api.Rd -------------------------------------------------------------------------------- /inst/marioboxexample/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/tests/testthat.R -------------------------------------------------------------------------------- /inst/marioboxexample/tests/testthat/test-health.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/tests/testthat/test-health.R -------------------------------------------------------------------------------- /inst/marioboxexample/tests/testthat/test-run_plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/inst/marioboxexample/tests/testthat/test-run_plumber.R -------------------------------------------------------------------------------- /man/build_plumber_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/man/build_plumber_file.Rd -------------------------------------------------------------------------------- /man/create_mariobox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/man/create_mariobox.Rd -------------------------------------------------------------------------------- /man/http_error.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/man/http_error.Rd -------------------------------------------------------------------------------- /man/manage_endpoints.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/man/manage_endpoints.Rd -------------------------------------------------------------------------------- /man/mario_log.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/man/mario_log.Rd -------------------------------------------------------------------------------- /man/mario_try.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/man/mario_try.Rd -------------------------------------------------------------------------------- /man/new_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/man/new_api.Rd -------------------------------------------------------------------------------- /mariobox.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/mariobox.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test-R.R: -------------------------------------------------------------------------------- 1 | test_that("",{ 2 | expect_true( 3 | (1 + 1) == 2 4 | ) 5 | }) -------------------------------------------------------------------------------- /tests/testthat/test-build_plumber_file.R: -------------------------------------------------------------------------------- 1 | test_that("multiplication works", { 2 | expect_equal(2 * 2, 4) 3 | }) 4 | -------------------------------------------------------------------------------- /tests/testthat/test-create_pipework.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/tests/testthat/test-create_pipework.R -------------------------------------------------------------------------------- /tests/testthat/test-manage_endpoints.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/tests/testthat/test-manage_endpoints.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkR-open/mariobox/HEAD/tests/testthat/test-utils.R --------------------------------------------------------------------------------