├── .DS_Store ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── detect_dependencies.R ├── easyMake.R ├── easy_make.R ├── graph_dependencies.R └── sysdata.rda ├── README.md ├── README.rmd ├── README_files └── figure-markdown_github │ └── unnamed-chunk-2-1.png ├── data_raw ├── .DS_Store ├── data_cleaning.R └── import_export_function.csv ├── easyMake.Rproj ├── images ├── Xzibit.jpg └── file_graph.jpg ├── inst ├── rstudio │ └── addins.dcf └── test_project │ ├── Makefile │ ├── data.RData │ ├── mtcars1.csv │ ├── report.Rmd │ ├── report.html │ ├── script1.R │ └── script2.R ├── man ├── detect_dependencies.Rd ├── detect_file.Rd ├── easy_make.Rd └── graph_dependencies.Rd └── tests ├── testthat.R └── testthat ├── .DS_Store ├── expected_Makefile ├── expected_dependencies.RData ├── test_detect_dependencies.R └── test_easy_make.R /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | inst/doc 5 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/detect_dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/R/detect_dependencies.R -------------------------------------------------------------------------------- /R/easyMake.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/R/easyMake.R -------------------------------------------------------------------------------- /R/easy_make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/R/easy_make.R -------------------------------------------------------------------------------- /R/graph_dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/R/graph_dependencies.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/README.md -------------------------------------------------------------------------------- /README.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/README.rmd -------------------------------------------------------------------------------- /README_files/figure-markdown_github/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/README_files/figure-markdown_github/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /data_raw/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/data_raw/.DS_Store -------------------------------------------------------------------------------- /data_raw/data_cleaning.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/data_raw/data_cleaning.R -------------------------------------------------------------------------------- /data_raw/import_export_function.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/data_raw/import_export_function.csv -------------------------------------------------------------------------------- /easyMake.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/easyMake.Rproj -------------------------------------------------------------------------------- /images/Xzibit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/images/Xzibit.jpg -------------------------------------------------------------------------------- /images/file_graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/images/file_graph.jpg -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /inst/test_project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/inst/test_project/Makefile -------------------------------------------------------------------------------- /inst/test_project/data.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/inst/test_project/data.RData -------------------------------------------------------------------------------- /inst/test_project/mtcars1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/inst/test_project/mtcars1.csv -------------------------------------------------------------------------------- /inst/test_project/report.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/inst/test_project/report.Rmd -------------------------------------------------------------------------------- /inst/test_project/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/inst/test_project/report.html -------------------------------------------------------------------------------- /inst/test_project/script1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/inst/test_project/script1.R -------------------------------------------------------------------------------- /inst/test_project/script2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/inst/test_project/script2.R -------------------------------------------------------------------------------- /man/detect_dependencies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/man/detect_dependencies.Rd -------------------------------------------------------------------------------- /man/detect_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/man/detect_file.Rd -------------------------------------------------------------------------------- /man/easy_make.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/man/easy_make.Rd -------------------------------------------------------------------------------- /man/graph_dependencies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/man/graph_dependencies.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/tests/testthat/.DS_Store -------------------------------------------------------------------------------- /tests/testthat/expected_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/tests/testthat/expected_Makefile -------------------------------------------------------------------------------- /tests/testthat/expected_dependencies.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/tests/testthat/expected_dependencies.RData -------------------------------------------------------------------------------- /tests/testthat/test_detect_dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/tests/testthat/test_detect_dependencies.R -------------------------------------------------------------------------------- /tests/testthat/test_easy_make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gshotwell/easyMake/HEAD/tests/testthat/test_easy_make.R --------------------------------------------------------------------------------