├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R └── googleID.R ├── README.md ├── googleID.Rproj ├── inst └── shiny │ └── demo.R └── man ├── get_user_info.Rd └── whitelist.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/googleID.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/R/googleID.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/README.md -------------------------------------------------------------------------------- /googleID.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/googleID.Rproj -------------------------------------------------------------------------------- /inst/shiny/demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/inst/shiny/demo.R -------------------------------------------------------------------------------- /man/get_user_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/man/get_user_info.Rd -------------------------------------------------------------------------------- /man/whitelist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/googleID/HEAD/man/whitelist.Rd --------------------------------------------------------------------------------