Awesome
skeletor: An R Package Skeleton Generator
Skeletor is a tool for bootstrapping new packages with useful defaults and scaffolding. Package skeletons it creates contain a test suite outline and hooks for adding documentation. They also are created with a Makefile to facilitate running tests, checking test coverage, building vignettes, and more. Skeletor also sets up packages to use git/GitHub for version control and Travis-CI to build and test your packages whenever you push to GitHub. Integrations with Codecov.io and Appveyor are also made effortless, and with one additional argument, you can get additional boilerplate and testing setup for writing an R package that wraps an API.
While other R package skeletons exist, I found that I never used them. The defaults of the base R's package.skeleton()
, copying functions from the current R session, never are what I want, and what devtools::create()
makes is too bare. I found that I was starting every package by copying the last package I made, deleting its code and tests, and renaming everything. skeletor
automates that.
Installing
skeletor
is available on CRAN:
install.packages("skeletor")
The pre-CRAN-release version of the package can be pulled from GitHub using the devtools package:
# install.packages("devtools")
devtools::install_github("nealrichardson/skeletor")
Using
Skeletor provides two functions: (1) skeletor()
, which makes package skeletons, and (2) configure()
, which sets a few parameters in your .Rprofile so that you don't need to provide them each time. These parameters, which are inserted into the package skeleton template, are:
- name: your name
- email: your email address
- github: your GitHub username
After installing, run configure()
once to set these, like:
> library(skeletor)
> configure(name="Neal Richardson", email="neal.p.richardson@gmail.com",
github="nealrichardson")
Thereafter, simply running
$ R -e 'skeletor::skeletor("wittynamehere")'
from the shell will create a package called "wittynamehere" in a same-named subdirectory of your current working directory, and it will insert your name, email, and GitHub account into the appropriate parts of the package. Then you can open that directory's contents in your favorite IDE or text editor. You also can immediately run tests on your new package with make test
or by running R CMD check
on it. See the new package's README.md file for further instructions on how to finish setting it up with GitHub and other hosted services.
skeletor()
takes one additional argument, api
, which if TRUE
will add to the skeleton an R/api.R
with basic functions for wrapping an API, and the test suite will use the httptest
package.
For developers
The repository---and the repositories it creates---include a Makefile to facilitate some common tasks.
Running tests
$ make test
. Requires the testthat package. You can also specify a specific test file or files to run by adding a "file=" argument, like $ make test file=configure
. test_package
will do a regular-expression pattern match within the file names. See its documentation in the testthat
package.
Updating documentation
$ make doc
. Requires the roxygen2 package.