├── .Rbuildignore ├── .covrignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── Pipeline.R ├── Segment.R ├── make.R ├── make_register.R ├── make_with_dir.R ├── out_of_date.R ├── package_datetime.R ├── params.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── codecov.yml ├── cran-comments.md ├── inst └── tests │ ├── Segment │ ├── source1.R │ └── source2.R │ ├── make_with_dir_ok │ ├── redundant.R │ ├── source1.R │ ├── source2.R │ └── subdir │ │ └── source2.R │ ├── make_with_dir_warn │ ├── source1.R │ └── source2.R │ ├── source1.R │ └── source2.R ├── makepipe.Rproj ├── man ├── Pipeline.Rd ├── Segment.Rd ├── SegmentRecipe.Rd ├── SegmentSource.Rd ├── figures │ ├── README.md │ ├── logo-dark.png │ ├── logo.png │ ├── pipeline_nomnoml_outofdate.png │ ├── pipeline_nomnoml_uptodate.png │ ├── pipeline_visnetwork_outofdate.png │ └── pipeline_visnetwork_uptodate.png ├── make_params.Rd ├── make_register.Rd ├── make_with_dir.Rd ├── make_with_recipe.Rd ├── make_with_source.Rd ├── out_of_date.Rd ├── pipeline-accessors.Rd └── pipeline-vis.Rd ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── Pipeline │ │ └── pipeline.png │ └── make.md │ ├── test-Pipeline.R │ ├── test-Segment.R │ ├── test-make.R │ ├── test-make_with_dir.R │ └── test-utils.R └── vignettes ├── .gitignore └── makepipe.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.covrignore: -------------------------------------------------------------------------------- 1 | R/zzz.R 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/Pipeline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/Pipeline.R -------------------------------------------------------------------------------- /R/Segment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/Segment.R -------------------------------------------------------------------------------- /R/make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/make.R -------------------------------------------------------------------------------- /R/make_register.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/make_register.R -------------------------------------------------------------------------------- /R/make_with_dir.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/make_with_dir.R -------------------------------------------------------------------------------- /R/out_of_date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/out_of_date.R -------------------------------------------------------------------------------- /R/package_datetime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/package_datetime.R -------------------------------------------------------------------------------- /R/params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/params.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/tests/Segment/source1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/inst/tests/Segment/source1.R -------------------------------------------------------------------------------- /inst/tests/Segment/source2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/inst/tests/Segment/source2.R -------------------------------------------------------------------------------- /inst/tests/make_with_dir_ok/redundant.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/inst/tests/make_with_dir_ok/redundant.R -------------------------------------------------------------------------------- /inst/tests/make_with_dir_ok/source1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/inst/tests/make_with_dir_ok/source1.R -------------------------------------------------------------------------------- /inst/tests/make_with_dir_ok/source2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/inst/tests/make_with_dir_ok/source2.R -------------------------------------------------------------------------------- /inst/tests/make_with_dir_ok/subdir/source2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/inst/tests/make_with_dir_ok/subdir/source2.R -------------------------------------------------------------------------------- /inst/tests/make_with_dir_warn/source1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/inst/tests/make_with_dir_warn/source1.R -------------------------------------------------------------------------------- /inst/tests/make_with_dir_warn/source2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/inst/tests/make_with_dir_warn/source2.R -------------------------------------------------------------------------------- /inst/tests/source1.R: -------------------------------------------------------------------------------- 1 | makepipe::make_register(5, 'five') 2 | -------------------------------------------------------------------------------- /inst/tests/source2.R: -------------------------------------------------------------------------------- 1 | 2+2 2 | -------------------------------------------------------------------------------- /makepipe.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/makepipe.Rproj -------------------------------------------------------------------------------- /man/Pipeline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/Pipeline.Rd -------------------------------------------------------------------------------- /man/Segment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/Segment.Rd -------------------------------------------------------------------------------- /man/SegmentRecipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/SegmentRecipe.Rd -------------------------------------------------------------------------------- /man/SegmentSource.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/SegmentSource.Rd -------------------------------------------------------------------------------- /man/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/figures/README.md -------------------------------------------------------------------------------- /man/figures/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/figures/logo-dark.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/pipeline_nomnoml_outofdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/figures/pipeline_nomnoml_outofdate.png -------------------------------------------------------------------------------- /man/figures/pipeline_nomnoml_uptodate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/figures/pipeline_nomnoml_uptodate.png -------------------------------------------------------------------------------- /man/figures/pipeline_visnetwork_outofdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/figures/pipeline_visnetwork_outofdate.png -------------------------------------------------------------------------------- /man/figures/pipeline_visnetwork_uptodate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/figures/pipeline_visnetwork_uptodate.png -------------------------------------------------------------------------------- /man/make_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/make_params.Rd -------------------------------------------------------------------------------- /man/make_register.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/make_register.Rd -------------------------------------------------------------------------------- /man/make_with_dir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/make_with_dir.Rd -------------------------------------------------------------------------------- /man/make_with_recipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/make_with_recipe.Rd -------------------------------------------------------------------------------- /man/make_with_source.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/make_with_source.Rd -------------------------------------------------------------------------------- /man/out_of_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/out_of_date.Rd -------------------------------------------------------------------------------- /man/pipeline-accessors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/pipeline-accessors.Rd -------------------------------------------------------------------------------- /man/pipeline-vis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/man/pipeline-vis.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/Pipeline/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/tests/testthat/_snaps/Pipeline/pipeline.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/make.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/tests/testthat/_snaps/make.md -------------------------------------------------------------------------------- /tests/testthat/test-Pipeline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/tests/testthat/test-Pipeline.R -------------------------------------------------------------------------------- /tests/testthat/test-Segment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/tests/testthat/test-Segment.R -------------------------------------------------------------------------------- /tests/testthat/test-make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/tests/testthat/test-make.R -------------------------------------------------------------------------------- /tests/testthat/test-make_with_dir.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/tests/testthat/test-make_with_dir.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/makepipe.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinto-b/makepipe/HEAD/vignettes/makepipe.Rmd --------------------------------------------------------------------------------