Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hrbrmstr committed Mar 3, 2017
0 parents commit 821023a
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
.Rproj.user
.Rhistory
.RData
14 changes: 14 additions & 0 deletions DESCRIPTION
@@ -0,0 +1,14 @@
Package: scimple
Title: scimple TITLE
Version: 0.1.0
Encoding: UTF-8
Authors@R: c(person("Bob", "Rudis", role = c("aut", "cre"), email = "bob@rud.is"))
Maintainer: Bob Rudis <bob@rud.is>
Description: scimple DESCRIPTION
Depends: R (>= 3.2.0)
License: AGPL
URL: https://github.com/hrbrmstr/scimple
BugReports: https://github.com/hrbrmstr/scimple/issues
LazyData: true
Suggests: testthat
Imports: purrr
2 changes: 2 additions & 0 deletions NEWS.md
@@ -0,0 +1,2 @@
0.1.0
* Initial release
7 changes: 7 additions & 0 deletions R/package.r
@@ -0,0 +1,7 @@
#' Tools to ...
#'
#' @name scimple
#' @docType package
#' @author Bob Rudis (bob@@rud.is)
#' @import purrr
NULL
40 changes: 40 additions & 0 deletions README.Rmd
@@ -0,0 +1,40 @@
---
output: rmarkdown::github_document
---

scimple : Tools to ...

The following functions are implemented:

The following data sets are included:

### Installation

```{r eval=FALSE}
devtools::install_github("hrbrmstr/scimple")
```

```{r message=FALSE, warning=FALSE, error=FALSE}
options(width=120)
```

### Usage

```{r message=FALSE, warning=FALSE, error=FALSE}
library(scimple)
# current verison
packageVersion("scimple")
```

### Test Results

```{r message=FALSE, warning=FALSE, error=FALSE}
library(scimple)
library(testthat)
date()
test_dir("tests/")
```
2 changes: 2 additions & 0 deletions tests/test-all.R
@@ -0,0 +1,2 @@
library(testthat)
test_check("scimple")
6 changes: 6 additions & 0 deletions tests/testthat/test-PACKAGE.R
@@ -0,0 +1,6 @@
context("basic functionality")
test_that("we can do something", {

#expect_that(some_function(), is_a("data.frame"))

})

0 comments on commit 821023a

Please sign in to comment.