├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CRANsearcher.Rproj ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── CRANsearcher.R └── data.R ├── README.md ├── cran-comments.md ├── data-raw └── getPackages.R ├── data └── cran_inventory.rda ├── inst ├── image │ ├── gif │ │ └── CRANsearcher_addin.gif │ └── hex │ │ ├── CRANsearcher_hexSticker.R │ │ └── CRANsearcher_hexSticker.png └── rstudio │ └── addins.dcf └── man ├── CRANsearcher.Rd └── cran_inventory.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /CRANsearcher.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/CRANsearcher.Rproj -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/CRANsearcher.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/R/CRANsearcher.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/R/data.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/getPackages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/data-raw/getPackages.R -------------------------------------------------------------------------------- /data/cran_inventory.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/data/cran_inventory.rda -------------------------------------------------------------------------------- /inst/image/gif/CRANsearcher_addin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/inst/image/gif/CRANsearcher_addin.gif -------------------------------------------------------------------------------- /inst/image/hex/CRANsearcher_hexSticker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/inst/image/hex/CRANsearcher_hexSticker.R -------------------------------------------------------------------------------- /inst/image/hex/CRANsearcher_hexSticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/inst/image/hex/CRANsearcher_hexSticker.png -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/CRANsearcher.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/man/CRANsearcher.Rd -------------------------------------------------------------------------------- /man/cran_inventory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhoInc/CRANsearcher/HEAD/man/cran_inventory.Rd --------------------------------------------------------------------------------