├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── buildCall.R └── tidyData.R ├── README.md ├── inst └── rstudio │ └── addins.dcf ├── man └── tidyData.Rd └── tests ├── testthat.R └── testthat └── test-buildCall.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Mango Solutions 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | export(tidyData) 4 | -------------------------------------------------------------------------------- /R/buildCall.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/R/buildCall.R -------------------------------------------------------------------------------- /R/tidyData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/R/tidyData.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/README.md -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/tidyData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/man/tidyData.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-buildCall.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/tidyshiny/HEAD/tests/testthat/test-buildCall.R --------------------------------------------------------------------------------