├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── fork.R └── onload.R ├── README.md ├── appveyor.yml ├── bortles.Rproj ├── codecov.yml ├── inst ├── figures │ ├── hex.R │ ├── imgfile.png │ └── molotov.png └── gifs │ ├── fork1.gif │ ├── fork2.gif │ ├── fork3.gif │ ├── fork4.gif │ ├── fork5.gif │ ├── fork6.gif │ └── fork7.gif ├── man └── fork.Rd └── tests ├── testthat.R └── testthat └── test-onload.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .DS_Store 3 | .Rhistory 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Adam Gruer 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | export(fork) 4 | -------------------------------------------------------------------------------- /R/fork.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/R/fork.R -------------------------------------------------------------------------------- /R/onload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/R/onload.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bortles.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/bortles.Rproj -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/codecov.yml -------------------------------------------------------------------------------- /inst/figures/hex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/figures/hex.R -------------------------------------------------------------------------------- /inst/figures/imgfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/figures/imgfile.png -------------------------------------------------------------------------------- /inst/figures/molotov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/figures/molotov.png -------------------------------------------------------------------------------- /inst/gifs/fork1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/gifs/fork1.gif -------------------------------------------------------------------------------- /inst/gifs/fork2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/gifs/fork2.gif -------------------------------------------------------------------------------- /inst/gifs/fork3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/gifs/fork3.gif -------------------------------------------------------------------------------- /inst/gifs/fork4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/gifs/fork4.gif -------------------------------------------------------------------------------- /inst/gifs/fork5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/gifs/fork5.gif -------------------------------------------------------------------------------- /inst/gifs/fork6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/gifs/fork6.gif -------------------------------------------------------------------------------- /inst/gifs/fork7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/inst/gifs/fork7.gif -------------------------------------------------------------------------------- /man/fork.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/man/fork.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-onload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/bortles/HEAD/tests/testthat/test-onload.R --------------------------------------------------------------------------------