├── .Rbuildignore ├── .github └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── files.R ├── markers.R ├── patterns.R └── todor.R ├── README.md ├── coveralls.yml ├── images ├── hexstick.png ├── hexstick.svg ├── pic1.png └── pic2.png ├── inst └── rstudio │ └── addins.dcf ├── man ├── build_markdown_report.Rd ├── build_rstudio_markers.Rd ├── clean_comments.Rd ├── create_markers.Rd ├── extract_markers_to_md.Rd ├── find_package.Rd ├── find_pattern.Rd ├── list_files_with_extension.Rd ├── process_file.Rd ├── todor.Rd ├── todor_file.Rd ├── todor_file_addin.Rd ├── todor_package.Rd ├── todor_package_addin.Rd └── todor_project_addin.Rd ├── tests ├── testthat.R └── testthat │ ├── demo.R │ ├── test_internal.R │ └── test_todor.R └── todor.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Dominik Krzemiński 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/R/files.R -------------------------------------------------------------------------------- /R/markers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/R/markers.R -------------------------------------------------------------------------------- /R/patterns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/R/patterns.R -------------------------------------------------------------------------------- /R/todor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/R/todor.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/README.md -------------------------------------------------------------------------------- /coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/coveralls.yml -------------------------------------------------------------------------------- /images/hexstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/images/hexstick.png -------------------------------------------------------------------------------- /images/hexstick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/images/hexstick.svg -------------------------------------------------------------------------------- /images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/images/pic1.png -------------------------------------------------------------------------------- /images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/images/pic2.png -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/build_markdown_report.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/build_markdown_report.Rd -------------------------------------------------------------------------------- /man/build_rstudio_markers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/build_rstudio_markers.Rd -------------------------------------------------------------------------------- /man/clean_comments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/clean_comments.Rd -------------------------------------------------------------------------------- /man/create_markers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/create_markers.Rd -------------------------------------------------------------------------------- /man/extract_markers_to_md.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/extract_markers_to_md.Rd -------------------------------------------------------------------------------- /man/find_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/find_package.Rd -------------------------------------------------------------------------------- /man/find_pattern.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/find_pattern.Rd -------------------------------------------------------------------------------- /man/list_files_with_extension.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/list_files_with_extension.Rd -------------------------------------------------------------------------------- /man/process_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/process_file.Rd -------------------------------------------------------------------------------- /man/todor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/todor.Rd -------------------------------------------------------------------------------- /man/todor_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/todor_file.Rd -------------------------------------------------------------------------------- /man/todor_file_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/todor_file_addin.Rd -------------------------------------------------------------------------------- /man/todor_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/todor_package.Rd -------------------------------------------------------------------------------- /man/todor_package_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/todor_package_addin.Rd -------------------------------------------------------------------------------- /man/todor_project_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/man/todor_project_addin.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/tests/testthat/demo.R -------------------------------------------------------------------------------- /tests/testthat/test_internal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/tests/testthat/test_internal.R -------------------------------------------------------------------------------- /tests/testthat/test_todor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/tests/testthat/test_todor.R -------------------------------------------------------------------------------- /todor.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokato/todor/HEAD/todor.Rproj --------------------------------------------------------------------------------