├── .Rbuildignore ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── issue_template.md ├── SUPPORT.md └── workflows │ ├── R-CMD-check.yaml │ ├── live-api.yaml │ ├── pkgdown.yaml │ └── pr-commands.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── addin.R ├── assistant.R ├── context.R ├── gander-package.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── peek.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── cran-comments.md ├── gander.Rproj ├── inst ├── chat │ ├── chat.R │ └── chat.rds ├── figs │ └── gander.png └── rstudio │ └── addins.dcf ├── man ├── figures │ └── logo.png ├── gander-package.Rd ├── gander_addin.Rd ├── gander_options.Rd └── gander_peek.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── favicon.svg │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── assistant.md │ ├── context.md │ └── utils.md │ ├── helpers.R │ ├── test-assistant.R │ ├── test-context.R │ ├── test-peek.R │ ├── test-rstudioapi.R │ └── test-utils.R └── vignettes ├── .gitignore └── gander.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.github/ISSUE_TEMPLATE/issue_template.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/live-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.github/workflows/live-api.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: gander authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/R/addin.R -------------------------------------------------------------------------------- /R/assistant.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/R/assistant.R -------------------------------------------------------------------------------- /R/context.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/R/context.R -------------------------------------------------------------------------------- /R/gander-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/R/gander-package.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/peek.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/R/peek.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/cran-comments.md -------------------------------------------------------------------------------- /gander.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/gander.Rproj -------------------------------------------------------------------------------- /inst/chat/chat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/inst/chat/chat.R -------------------------------------------------------------------------------- /inst/chat/chat.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/inst/chat/chat.rds -------------------------------------------------------------------------------- /inst/figs/gander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/inst/figs/gander.png -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/gander-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/man/gander-package.Rd -------------------------------------------------------------------------------- /man/gander_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/man/gander_addin.Rd -------------------------------------------------------------------------------- /man/gander_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/man/gander_options.Rd -------------------------------------------------------------------------------- /man/gander_peek.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/man/gander_peek.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/pkgdown/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/pkgdown/favicon/favicon.svg -------------------------------------------------------------------------------- /pkgdown/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/pkgdown/favicon/site.webmanifest -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/pkgdown/favicon/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/pkgdown/favicon/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/assistant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/tests/testthat/_snaps/assistant.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/tests/testthat/_snaps/context.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/tests/testthat/_snaps/utils.md -------------------------------------------------------------------------------- /tests/testthat/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/tests/testthat/helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-assistant.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/tests/testthat/test-assistant.R -------------------------------------------------------------------------------- /tests/testthat/test-context.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/tests/testthat/test-context.R -------------------------------------------------------------------------------- /tests/testthat/test-peek.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/tests/testthat/test-peek.R -------------------------------------------------------------------------------- /tests/testthat/test-rstudioapi.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/gander.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/gander/HEAD/vignettes/gander.Rmd --------------------------------------------------------------------------------