├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R └── dandy.R ├── README.Rmd ├── README.md ├── data-raw └── devstuffs.R ├── handydandy.Rproj ├── readme-fig └── handydandy.png └── tests ├── testthat.R └── testthat └── test-r6.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Colin FAY 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/dandy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/R/dandy.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/devstuffs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/data-raw/devstuffs.R -------------------------------------------------------------------------------- /handydandy.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/handydandy.Rproj -------------------------------------------------------------------------------- /readme-fig/handydandy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/readme-fig/handydandy.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-r6.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinFay/handydandy/HEAD/tests/testthat/test-r6.R --------------------------------------------------------------------------------