├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── Makefile ├── NAMESPACE ├── R ├── deps.R ├── download.R ├── metadata.R ├── restore.R ├── snapshot.R ├── urls.R └── utils.R ├── README.md ├── appveyor.yml ├── inst ├── NEWS.md ├── README.Rmd └── README.md ├── man ├── OR.Rd ├── add_R_core.Rd ├── check_R_core.Rd ├── cran_file.Rd ├── data_frame.Rd ├── default_cran_mirror.Rd ├── dep_types.Rd ├── dir_exists.Rd ├── download_urls.Rd ├── drop_internal.Rd ├── drop_missing_deps.Rd ├── filename_from_url.Rd ├── get_deps.Rd ├── get_description.Rd ├── get_package_sources.Rd ├── get_pkg_type.Rd ├── install_order.Rd ├── parse_deps.Rd ├── pkg_download.Rd ├── pkg_from_filename.Rd ├── r_minor_version.Rd ├── restore.Rd ├── snap.Rd ├── str_trim.Rd └── try_download.Rd └── tests ├── testthat.R └── testthat ├── helper.R ├── test-metadata.R ├── test-restore.R ├── test-urls.R └── test.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2015 2 | COPYRIGHT HOLDER: Mango Solutions 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/deps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/R/deps.R -------------------------------------------------------------------------------- /R/download.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/R/download.R -------------------------------------------------------------------------------- /R/metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/R/metadata.R -------------------------------------------------------------------------------- /R/restore.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/R/restore.R -------------------------------------------------------------------------------- /R/snapshot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/R/snapshot.R -------------------------------------------------------------------------------- /R/urls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/R/urls.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | inst/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/appveyor.yml -------------------------------------------------------------------------------- /inst/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/inst/NEWS.md -------------------------------------------------------------------------------- /inst/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/inst/README.Rmd -------------------------------------------------------------------------------- /inst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/inst/README.md -------------------------------------------------------------------------------- /man/OR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/OR.Rd -------------------------------------------------------------------------------- /man/add_R_core.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/add_R_core.Rd -------------------------------------------------------------------------------- /man/check_R_core.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/check_R_core.Rd -------------------------------------------------------------------------------- /man/cran_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/cran_file.Rd -------------------------------------------------------------------------------- /man/data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/data_frame.Rd -------------------------------------------------------------------------------- /man/default_cran_mirror.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/default_cran_mirror.Rd -------------------------------------------------------------------------------- /man/dep_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/dep_types.Rd -------------------------------------------------------------------------------- /man/dir_exists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/dir_exists.Rd -------------------------------------------------------------------------------- /man/download_urls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/download_urls.Rd -------------------------------------------------------------------------------- /man/drop_internal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/drop_internal.Rd -------------------------------------------------------------------------------- /man/drop_missing_deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/drop_missing_deps.Rd -------------------------------------------------------------------------------- /man/filename_from_url.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/filename_from_url.Rd -------------------------------------------------------------------------------- /man/get_deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/get_deps.Rd -------------------------------------------------------------------------------- /man/get_description.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/get_description.Rd -------------------------------------------------------------------------------- /man/get_package_sources.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/get_package_sources.Rd -------------------------------------------------------------------------------- /man/get_pkg_type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/get_pkg_type.Rd -------------------------------------------------------------------------------- /man/install_order.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/install_order.Rd -------------------------------------------------------------------------------- /man/parse_deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/parse_deps.Rd -------------------------------------------------------------------------------- /man/pkg_download.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/pkg_download.Rd -------------------------------------------------------------------------------- /man/pkg_from_filename.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/pkg_from_filename.Rd -------------------------------------------------------------------------------- /man/r_minor_version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/r_minor_version.Rd -------------------------------------------------------------------------------- /man/restore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/restore.Rd -------------------------------------------------------------------------------- /man/snap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/snap.Rd -------------------------------------------------------------------------------- /man/str_trim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/str_trim.Rd -------------------------------------------------------------------------------- /man/try_download.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/man/try_download.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/test-metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/tests/testthat/test-metadata.R -------------------------------------------------------------------------------- /tests/testthat/test-restore.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/tests/testthat/test-restore.R -------------------------------------------------------------------------------- /tests/testthat/test-urls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/tests/testthat/test-urls.R -------------------------------------------------------------------------------- /tests/testthat/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/pkgsnap/HEAD/tests/testthat/test.R --------------------------------------------------------------------------------