You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boB Rudis a0755d3480
initial commit
7 years ago
R initial commit 7 years ago
man initial commit 7 years ago
tests initial commit 7 years ago
.Rbuildignore initial commit 7 years ago
.codecov.yml initial commit 7 years ago
.gitignore initial commit 7 years ago
.travis.yml initial commit 7 years ago
DESCRIPTION initial commit 7 years ago
NAMESPACE initial commit 7 years ago
NEWS.md initial commit 7 years ago
README.Rmd initial commit 7 years ago
README.md initial commit 7 years ago
bismer.Rproj initial commit 7 years ago

README.md

bismer : Generate Shakespearean insults

The following functions are implemented:

  • insult: Generate a Shakespearean insult

Installation

devtools::install_github("hrbrmstr/bismer")

Usage

library(bismer)

# current verison
packageVersion("bismer")
## [1] '0.1.0'
purrr::walk(1:10, ~print(insult()))
## [1] "venomed beetle-headed death-token"
## [1] "impertinent clapper-clawed mumble-news"
## [1] "lumpish tardy-gaited hugger-mugger"
## [1] "mangled fool-born whey-face"
## [1] "beslubbering reeling-ripe ratsbane"
## [1] "mangled tickle-brained foot-licker"
## [1] "puking dismal-dreaning strumpet"
## [1] "dankish half-faced pumpion"
## [1] "puny pox-marked clotpole"
## [1] "yeasty dismal-dreaning vassal"

Test Results

library(bismer)
library(testthat)

date()
## [1] "Sat Mar 25 22:17:57 2017"
test_dir("tests/")
## testthat results ========================================================================================================
## OK: 0 SKIPPED: 0 FAILED: 0
## 
## DONE ===================================================================================================================