├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── blogify.R └── utils.R └── README.md /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnathv/poirot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnathv/poirot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnathv/poirot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnathv/poirot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/blogify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnathv/poirot/HEAD/R/blogify.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnathv/poirot/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnathv/poirot/HEAD/README.md --------------------------------------------------------------------------------