├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── funs.R └── logs.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── gargoyle.Rproj ├── inst └── example │ └── examples.R ├── man ├── Event.Rd ├── logs.Rd └── on.Rd ├── tests ├── testthat.R └── testthat │ ├── test-funs.R │ └── test-logs.R └── vignettes ├── .gitignore └── gargoyle.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Colin Fay 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/R/funs.R -------------------------------------------------------------------------------- /R/logs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/R/logs.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/cran-comments.md -------------------------------------------------------------------------------- /gargoyle.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/gargoyle.Rproj -------------------------------------------------------------------------------- /inst/example/examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/inst/example/examples.R -------------------------------------------------------------------------------- /man/Event.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/man/Event.Rd -------------------------------------------------------------------------------- /man/logs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/man/logs.Rd -------------------------------------------------------------------------------- /man/on.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/man/on.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/tests/testthat/test-funs.R -------------------------------------------------------------------------------- /tests/testthat/test-logs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/tests/testthat/test-logs.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/gargoyle.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/gargoyle/HEAD/vignettes/gargoyle.Rmd --------------------------------------------------------------------------------