├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── render-readme.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── all.already.attached.R ├── cache_functions.R ├── check.snowball.conflict.R ├── cross.toc.R ├── estimate.seconds.left.R ├── file.rename.robust.R ├── file.rename.robust2.R ├── get.active.R ├── get.baton.R ├── get.current.packages.R ├── get.dependencies.R ├── get.gran.binary.date.R ├── get.groundhog.folder.R ├── get.installation.time.R ├── get.installed_path.R ├── get.pkg_search_paths.R ├── get.snowball.R ├── get.snowball.remote.R ├── get.snowflakes.R ├── get.version.R ├── groundhog.library.R ├── install.binaries.R ├── install.one.R ├── install.snowball.R ├── install.source.R ├── installation.feedback.R ├── interlibrary.functions.R ├── load.cran.toc.R ├── localize.R ├── message.batch.installation.feedback.R ├── meta.groundhog.R ├── msg.R.switch.R ├── r.version.check.R ├── remote_functions.R ├── restore.library.R ├── toc.R ├── try.renaming.method.again.R ├── update_cran.toc_if.needed.R ├── utils.R ├── validate.clone_date.R ├── validate.groundhog.library.R ├── validate.pkg_vrs.R ├── validate_R.R ├── verify.snowball.loaded.R └── zzz.R ├── README.Rmd ├── README.md ├── codecov.yml ├── cran-comments.md ├── groundhogR.Rproj ├── man ├── cross.toc.Rd ├── get.groundhog.folder.Rd ├── get.snowball.Rd ├── groundhog.library.Rd ├── meta.groundhog.Rd ├── restore.library.Rd ├── set.groundhog.folder.Rd ├── toc.Rd └── try.renaming.method.again.Rd └── test_groundhog.r /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/render-readme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/.github/workflows/render-readme.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/all.already.attached.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/all.already.attached.R -------------------------------------------------------------------------------- /R/cache_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/cache_functions.R -------------------------------------------------------------------------------- /R/check.snowball.conflict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/check.snowball.conflict.R -------------------------------------------------------------------------------- /R/cross.toc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/cross.toc.R -------------------------------------------------------------------------------- /R/estimate.seconds.left.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/estimate.seconds.left.R -------------------------------------------------------------------------------- /R/file.rename.robust.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/file.rename.robust.R -------------------------------------------------------------------------------- /R/file.rename.robust2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/file.rename.robust2.R -------------------------------------------------------------------------------- /R/get.active.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.active.R -------------------------------------------------------------------------------- /R/get.baton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.baton.R -------------------------------------------------------------------------------- /R/get.current.packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.current.packages.R -------------------------------------------------------------------------------- /R/get.dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.dependencies.R -------------------------------------------------------------------------------- /R/get.gran.binary.date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.gran.binary.date.R -------------------------------------------------------------------------------- /R/get.groundhog.folder.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.groundhog.folder.R -------------------------------------------------------------------------------- /R/get.installation.time.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.installation.time.R -------------------------------------------------------------------------------- /R/get.installed_path.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.installed_path.R -------------------------------------------------------------------------------- /R/get.pkg_search_paths.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.pkg_search_paths.R -------------------------------------------------------------------------------- /R/get.snowball.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.snowball.R -------------------------------------------------------------------------------- /R/get.snowball.remote.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.snowball.remote.R -------------------------------------------------------------------------------- /R/get.snowflakes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.snowflakes.R -------------------------------------------------------------------------------- /R/get.version.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/get.version.R -------------------------------------------------------------------------------- /R/groundhog.library.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/groundhog.library.R -------------------------------------------------------------------------------- /R/install.binaries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/install.binaries.R -------------------------------------------------------------------------------- /R/install.one.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/install.one.R -------------------------------------------------------------------------------- /R/install.snowball.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/install.snowball.R -------------------------------------------------------------------------------- /R/install.source.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/install.source.R -------------------------------------------------------------------------------- /R/installation.feedback.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/installation.feedback.R -------------------------------------------------------------------------------- /R/interlibrary.functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/interlibrary.functions.R -------------------------------------------------------------------------------- /R/load.cran.toc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/load.cran.toc.R -------------------------------------------------------------------------------- /R/localize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/localize.R -------------------------------------------------------------------------------- /R/message.batch.installation.feedback.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/message.batch.installation.feedback.R -------------------------------------------------------------------------------- /R/meta.groundhog.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/meta.groundhog.R -------------------------------------------------------------------------------- /R/msg.R.switch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/msg.R.switch.R -------------------------------------------------------------------------------- /R/r.version.check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/r.version.check.R -------------------------------------------------------------------------------- /R/remote_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/remote_functions.R -------------------------------------------------------------------------------- /R/restore.library.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/restore.library.R -------------------------------------------------------------------------------- /R/toc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/toc.R -------------------------------------------------------------------------------- /R/try.renaming.method.again.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/try.renaming.method.again.R -------------------------------------------------------------------------------- /R/update_cran.toc_if.needed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/update_cran.toc_if.needed.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/validate.clone_date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/validate.clone_date.R -------------------------------------------------------------------------------- /R/validate.groundhog.library.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/validate.groundhog.library.R -------------------------------------------------------------------------------- /R/validate.pkg_vrs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/validate.pkg_vrs.R -------------------------------------------------------------------------------- /R/validate_R.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/validate_R.R -------------------------------------------------------------------------------- /R/verify.snowball.loaded.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/verify.snowball.loaded.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/cran-comments.md -------------------------------------------------------------------------------- /groundhogR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/groundhogR.Rproj -------------------------------------------------------------------------------- /man/cross.toc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/man/cross.toc.Rd -------------------------------------------------------------------------------- /man/get.groundhog.folder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/man/get.groundhog.folder.Rd -------------------------------------------------------------------------------- /man/get.snowball.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/man/get.snowball.Rd -------------------------------------------------------------------------------- /man/groundhog.library.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/man/groundhog.library.Rd -------------------------------------------------------------------------------- /man/meta.groundhog.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/man/meta.groundhog.Rd -------------------------------------------------------------------------------- /man/restore.library.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/man/restore.library.Rd -------------------------------------------------------------------------------- /man/set.groundhog.folder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/man/set.groundhog.folder.Rd -------------------------------------------------------------------------------- /man/toc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/man/toc.Rd -------------------------------------------------------------------------------- /man/try.renaming.method.again.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/man/try.renaming.method.again.Rd -------------------------------------------------------------------------------- /test_groundhog.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CredibilityLab/groundhog/HEAD/test_groundhog.r --------------------------------------------------------------------------------