├── .Rbuildignore ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── detect_dependencies.R ├── pkg.R ├── prompt_install.R ├── using.R ├── using_install_package.R └── zzz.R ├── README.md ├── man ├── detect_dependencies.Rd ├── pkg.Rd └── using.Rd └── tests ├── testthat.R └── testthat ├── test-detect-using-dependencies.R └── test_inputs ├── deps_md.md ├── deps_parse_fail.R ├── deps_using.R ├── deps_using_dupes.R ├── deps_using_rmd.Rmd └── deps_vanilla.R /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^LICENSE\.md$ 2 | 3 | # dot-files 4 | ^\..*$ 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/detect_dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/R/detect_dependencies.R -------------------------------------------------------------------------------- /R/pkg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/R/pkg.R -------------------------------------------------------------------------------- /R/prompt_install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/R/prompt_install.R -------------------------------------------------------------------------------- /R/using.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/R/using.R -------------------------------------------------------------------------------- /R/using_install_package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/R/using_install_package.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/README.md -------------------------------------------------------------------------------- /man/detect_dependencies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/man/detect_dependencies.Rd -------------------------------------------------------------------------------- /man/pkg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/man/pkg.Rd -------------------------------------------------------------------------------- /man/using.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/man/using.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-detect-using-dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/tests/testthat/test-detect-using-dependencies.R -------------------------------------------------------------------------------- /tests/testthat/test_inputs/deps_md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/tests/testthat/test_inputs/deps_md.md -------------------------------------------------------------------------------- /tests/testthat/test_inputs/deps_parse_fail.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/tests/testthat/test_inputs/deps_parse_fail.R -------------------------------------------------------------------------------- /tests/testthat/test_inputs/deps_using.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/tests/testthat/test_inputs/deps_using.R -------------------------------------------------------------------------------- /tests/testthat/test_inputs/deps_using_dupes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/tests/testthat/test_inputs/deps_using_dupes.R -------------------------------------------------------------------------------- /tests/testthat/test_inputs/deps_using_rmd.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/tests/testthat/test_inputs/deps_using_rmd.Rmd -------------------------------------------------------------------------------- /tests/testthat/test_inputs/deps_vanilla.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonynorth/using/HEAD/tests/testthat/test_inputs/deps_vanilla.R --------------------------------------------------------------------------------