├── .github └── workflows │ ├── conts-workflow.yml │ ├── conts.yml │ ├── deb-repo.yaml │ ├── test.yaml │ └── winget.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── Makefile ├── NEWS.md ├── README.Rmd ├── README.md ├── Rig.app ├── Rig.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── gaborcsardi.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── Rig │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 256.png │ │ ├── 32.png │ │ ├── 512.png │ │ ├── 64.png │ │ ├── Contents.json │ │ └── source.txt │ ├── Contents.json │ └── gear.symbolset │ │ ├── Contents.json │ │ └── gear.svg │ ├── DirectoryWatcher.swift │ ├── Info.plist │ ├── RStudio.swift │ ├── Rig.entitlements │ ├── Rig.xcdatamodeld │ ├── .xccurrentversion │ └── Rig.xcdatamodel │ │ └── contents │ ├── RigPreferences.swift │ ├── main.swift │ ├── rig-Bridging-Header.h │ ├── rig.h │ └── rigapi.swift ├── choco └── rig │ ├── rig.nuspec │ └── tools │ └── chocolateyinstall.ps1 ├── containers ├── fedora │ └── Dockerfile ├── matrix.json ├── matrix.py ├── suse │ └── Dockerfile └── ubuntu │ ├── Dockerfile │ ├── multi │ └── Dockerfile │ └── rig.gpg ├── docker-compose.yaml ├── rig.iss ├── rustfmt.toml ├── src ├── alias.rs ├── args.rs ├── args │ └── windows_arch.rs ├── common.rs ├── config.rs ├── download.rs ├── escalate.rs ├── hardcoded.rs ├── help-common.in ├── help-linux.in ├── help-macos.in ├── help-windows.in ├── json │ ├── rtools-versions-aarch64.json │ └── rtools-versions.json ├── lib.rs ├── library.rs ├── linux.rs ├── macos.rs ├── main.rs ├── renv.rs ├── resolve.rs ├── run.rs ├── rversion.rs ├── scrun.rs ├── sysreqs.rs ├── utils.rs ├── windows.rs └── windows_arch.rs ├── tests ├── bats │ ├── .codespellrc │ ├── .devcontainer │ │ └── devcontainer.json │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── check_pr_label.sh │ │ │ ├── codespell.yml │ │ │ ├── dependency-review.yml │ │ │ ├── release.yml │ │ │ ├── release_dockerhub.yml │ │ │ ├── scorecard.yml │ │ │ ├── set_nounset.bash │ │ │ └── tests.yml │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .readthedocs.yml │ ├── AUTHORS │ ├── LICENSE.md │ ├── README.md │ ├── SECURITY.md │ ├── bin │ │ └── bats │ ├── contrib │ │ ├── release.sh │ │ ├── rpm │ │ │ └── bats.spec │ │ └── semver │ ├── docker-compose.override.dist │ ├── docker-compose.yml │ ├── docker │ │ ├── install_libs.sh │ │ ├── install_tini.sh │ │ └── tini.pubkey.gpg │ ├── install.sh │ ├── lib │ │ └── bats-core │ │ │ ├── common.bash │ │ │ ├── formatter.bash │ │ │ ├── preprocessing.bash │ │ │ ├── semaphore.bash │ │ │ ├── test_functions.bash │ │ │ ├── tracing.bash │ │ │ ├── validator.bash │ │ │ └── warnings.bash │ ├── libexec │ │ └── bats-core │ │ │ ├── bats │ │ │ ├── bats-exec-file │ │ │ ├── bats-exec-suite │ │ │ ├── bats-exec-test │ │ │ ├── bats-format-cat │ │ │ ├── bats-format-junit │ │ │ ├── bats-format-pretty │ │ │ ├── bats-format-tap │ │ │ ├── bats-format-tap13 │ │ │ └── bats-preprocess │ ├── package.json │ ├── shellcheck.sh │ └── uninstall.sh ├── fixtures │ ├── app-api │ │ └── plumber.R │ ├── app-quarto-shiny │ │ ├── _quarto.yml │ │ └── index.qmd │ ├── app-quarto-static │ │ └── hello.qmd │ ├── app-rmd-shiny │ │ └── index.Rmd │ ├── app-rmd-static │ │ └── example.Rmd │ ├── app-shiny │ │ └── app.R │ └── app-static │ │ └── index.html ├── rig-add.rs ├── rig-system.rs ├── test-linux-docker.sh ├── test-linux.sh ├── test-macos.sh └── test-windows.sh └── tools ├── RELEASE.md ├── distribution.xml.in ├── entrypoint.sh ├── faq.Rmd ├── gon.hcl.in ├── header.md ├── linux ├── make-deb.sh └── make-rpm.sh └── rig-app.png /.github/workflows/conts-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/.github/workflows/conts-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/conts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/.github/workflows/conts.yml -------------------------------------------------------------------------------- /.github/workflows/deb-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/.github/workflows/deb-repo.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/winget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/.github/workflows/winget.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/README.md -------------------------------------------------------------------------------- /Rig.app/Rig.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Rig.app/Rig.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Rig.app/Rig.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Rig.app/Rig.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Rig.app/Rig.xcodeproj/xcuserdata/gaborcsardi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig.xcodeproj/xcuserdata/gaborcsardi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Rig.app/Rig/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/AppDelegate.swift -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/AppIcon.appiconset/source.txt: -------------------------------------------------------------------------------- 1 | https://unsplash.com/photos/7jZNgIuJrCM 2 | -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/gear.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/gear.symbolset/Contents.json -------------------------------------------------------------------------------- /Rig.app/Rig/Assets.xcassets/gear.symbolset/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Assets.xcassets/gear.symbolset/gear.svg -------------------------------------------------------------------------------- /Rig.app/Rig/DirectoryWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/DirectoryWatcher.swift -------------------------------------------------------------------------------- /Rig.app/Rig/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Info.plist -------------------------------------------------------------------------------- /Rig.app/Rig/RStudio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/RStudio.swift -------------------------------------------------------------------------------- /Rig.app/Rig/Rig.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Rig.entitlements -------------------------------------------------------------------------------- /Rig.app/Rig/Rig.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Rig.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Rig.app/Rig/Rig.xcdatamodeld/Rig.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/Rig.xcdatamodeld/Rig.xcdatamodel/contents -------------------------------------------------------------------------------- /Rig.app/Rig/RigPreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/RigPreferences.swift -------------------------------------------------------------------------------- /Rig.app/Rig/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/main.swift -------------------------------------------------------------------------------- /Rig.app/Rig/rig-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/rig-Bridging-Header.h -------------------------------------------------------------------------------- /Rig.app/Rig/rig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/rig.h -------------------------------------------------------------------------------- /Rig.app/Rig/rigapi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/Rig.app/Rig/rigapi.swift -------------------------------------------------------------------------------- /choco/rig/rig.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/choco/rig/rig.nuspec -------------------------------------------------------------------------------- /choco/rig/tools/chocolateyinstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/choco/rig/tools/chocolateyinstall.ps1 -------------------------------------------------------------------------------- /containers/fedora/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/containers/fedora/Dockerfile -------------------------------------------------------------------------------- /containers/matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/containers/matrix.json -------------------------------------------------------------------------------- /containers/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/containers/matrix.py -------------------------------------------------------------------------------- /containers/suse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/containers/suse/Dockerfile -------------------------------------------------------------------------------- /containers/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/containers/ubuntu/Dockerfile -------------------------------------------------------------------------------- /containers/ubuntu/multi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/containers/ubuntu/multi/Dockerfile -------------------------------------------------------------------------------- /containers/ubuntu/rig.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/containers/ubuntu/rig.gpg -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /rig.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/rig.iss -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/alias.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/alias.rs -------------------------------------------------------------------------------- /src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/args.rs -------------------------------------------------------------------------------- /src/args/windows_arch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/args/windows_arch.rs -------------------------------------------------------------------------------- /src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/common.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/download.rs -------------------------------------------------------------------------------- /src/escalate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/escalate.rs -------------------------------------------------------------------------------- /src/hardcoded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/hardcoded.rs -------------------------------------------------------------------------------- /src/help-common.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/help-common.in -------------------------------------------------------------------------------- /src/help-linux.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/help-linux.in -------------------------------------------------------------------------------- /src/help-macos.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/help-macos.in -------------------------------------------------------------------------------- /src/help-windows.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/help-windows.in -------------------------------------------------------------------------------- /src/json/rtools-versions-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/json/rtools-versions-aarch64.json -------------------------------------------------------------------------------- /src/json/rtools-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/json/rtools-versions.json -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/library.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/library.rs -------------------------------------------------------------------------------- /src/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/linux.rs -------------------------------------------------------------------------------- /src/macos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/macos.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/renv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/renv.rs -------------------------------------------------------------------------------- /src/resolve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/resolve.rs -------------------------------------------------------------------------------- /src/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/run.rs -------------------------------------------------------------------------------- /src/rversion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/rversion.rs -------------------------------------------------------------------------------- /src/scrun.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/scrun.rs -------------------------------------------------------------------------------- /src/sysreqs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/sysreqs.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/utils.rs -------------------------------------------------------------------------------- /src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/windows.rs -------------------------------------------------------------------------------- /src/windows_arch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/src/windows_arch.rs -------------------------------------------------------------------------------- /tests/bats/.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.codespellrc -------------------------------------------------------------------------------- /tests/bats/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /tests/bats/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.editorconfig -------------------------------------------------------------------------------- /tests/bats/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.gitattributes -------------------------------------------------------------------------------- /tests/bats/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /tests/bats/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /tests/bats/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/dependabot.yml -------------------------------------------------------------------------------- /tests/bats/.github/workflows/check_pr_label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/workflows/check_pr_label.sh -------------------------------------------------------------------------------- /tests/bats/.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /tests/bats/.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /tests/bats/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/workflows/release.yml -------------------------------------------------------------------------------- /tests/bats/.github/workflows/release_dockerhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/workflows/release_dockerhub.yml -------------------------------------------------------------------------------- /tests/bats/.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /tests/bats/.github/workflows/set_nounset.bash: -------------------------------------------------------------------------------- 1 | set -u 2 | -------------------------------------------------------------------------------- /tests/bats/.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.github/workflows/tests.yml -------------------------------------------------------------------------------- /tests/bats/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.gitignore -------------------------------------------------------------------------------- /tests/bats/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/bats/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/.readthedocs.yml -------------------------------------------------------------------------------- /tests/bats/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/AUTHORS -------------------------------------------------------------------------------- /tests/bats/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/LICENSE.md -------------------------------------------------------------------------------- /tests/bats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/README.md -------------------------------------------------------------------------------- /tests/bats/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/SECURITY.md -------------------------------------------------------------------------------- /tests/bats/bin/bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/bin/bats -------------------------------------------------------------------------------- /tests/bats/contrib/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/contrib/release.sh -------------------------------------------------------------------------------- /tests/bats/contrib/rpm/bats.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/contrib/rpm/bats.spec -------------------------------------------------------------------------------- /tests/bats/contrib/semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/contrib/semver -------------------------------------------------------------------------------- /tests/bats/docker-compose.override.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/docker-compose.override.dist -------------------------------------------------------------------------------- /tests/bats/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/docker-compose.yml -------------------------------------------------------------------------------- /tests/bats/docker/install_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/docker/install_libs.sh -------------------------------------------------------------------------------- /tests/bats/docker/install_tini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/docker/install_tini.sh -------------------------------------------------------------------------------- /tests/bats/docker/tini.pubkey.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/docker/tini.pubkey.gpg -------------------------------------------------------------------------------- /tests/bats/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/install.sh -------------------------------------------------------------------------------- /tests/bats/lib/bats-core/common.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/lib/bats-core/common.bash -------------------------------------------------------------------------------- /tests/bats/lib/bats-core/formatter.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/lib/bats-core/formatter.bash -------------------------------------------------------------------------------- /tests/bats/lib/bats-core/preprocessing.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/lib/bats-core/preprocessing.bash -------------------------------------------------------------------------------- /tests/bats/lib/bats-core/semaphore.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/lib/bats-core/semaphore.bash -------------------------------------------------------------------------------- /tests/bats/lib/bats-core/test_functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/lib/bats-core/test_functions.bash -------------------------------------------------------------------------------- /tests/bats/lib/bats-core/tracing.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/lib/bats-core/tracing.bash -------------------------------------------------------------------------------- /tests/bats/lib/bats-core/validator.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/lib/bats-core/validator.bash -------------------------------------------------------------------------------- /tests/bats/lib/bats-core/warnings.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/lib/bats-core/warnings.bash -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/libexec/bats-core/bats -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats-exec-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/libexec/bats-core/bats-exec-file -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats-exec-suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/libexec/bats-core/bats-exec-suite -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats-exec-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/libexec/bats-core/bats-exec-test -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats-format-cat: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | trap '' INT 5 | 6 | cat 7 | -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats-format-junit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/libexec/bats-core/bats-format-junit -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats-format-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/libexec/bats-core/bats-format-pretty -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats-format-tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/libexec/bats-core/bats-format-tap -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats-format-tap13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/libexec/bats-core/bats-format-tap13 -------------------------------------------------------------------------------- /tests/bats/libexec/bats-core/bats-preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/libexec/bats-core/bats-preprocess -------------------------------------------------------------------------------- /tests/bats/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/package.json -------------------------------------------------------------------------------- /tests/bats/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/shellcheck.sh -------------------------------------------------------------------------------- /tests/bats/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/bats/uninstall.sh -------------------------------------------------------------------------------- /tests/fixtures/app-api/plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/fixtures/app-api/plumber.R -------------------------------------------------------------------------------- /tests/fixtures/app-quarto-shiny/_quarto.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app-quarto-shiny/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/fixtures/app-quarto-shiny/index.qmd -------------------------------------------------------------------------------- /tests/fixtures/app-quarto-static/hello.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/fixtures/app-quarto-static/hello.qmd -------------------------------------------------------------------------------- /tests/fixtures/app-rmd-shiny/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/fixtures/app-rmd-shiny/index.Rmd -------------------------------------------------------------------------------- /tests/fixtures/app-rmd-static/example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/fixtures/app-rmd-static/example.Rmd -------------------------------------------------------------------------------- /tests/fixtures/app-shiny/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/fixtures/app-shiny/app.R -------------------------------------------------------------------------------- /tests/fixtures/app-static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/fixtures/app-static/index.html -------------------------------------------------------------------------------- /tests/rig-add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/rig-add.rs -------------------------------------------------------------------------------- /tests/rig-system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/rig-system.rs -------------------------------------------------------------------------------- /tests/test-linux-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/test-linux-docker.sh -------------------------------------------------------------------------------- /tests/test-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/test-linux.sh -------------------------------------------------------------------------------- /tests/test-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/test-macos.sh -------------------------------------------------------------------------------- /tests/test-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tests/test-windows.sh -------------------------------------------------------------------------------- /tools/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tools/RELEASE.md -------------------------------------------------------------------------------- /tools/distribution.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tools/distribution.xml.in -------------------------------------------------------------------------------- /tools/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tools/entrypoint.sh -------------------------------------------------------------------------------- /tools/faq.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tools/faq.Rmd -------------------------------------------------------------------------------- /tools/gon.hcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tools/gon.hcl.in -------------------------------------------------------------------------------- /tools/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tools/header.md -------------------------------------------------------------------------------- /tools/linux/make-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tools/linux/make-deb.sh -------------------------------------------------------------------------------- /tools/linux/make-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tools/linux/make-rpm.sh -------------------------------------------------------------------------------- /tools/rig-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/rig/HEAD/tools/rig-app.png --------------------------------------------------------------------------------