Skip to content

Commit

Permalink
Initial commit of Mason template
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Sep 30, 2015
0 parents commit c4acc68
Show file tree
Hide file tree
Showing 14 changed files with 157 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .Rbuildignore
@@ -0,0 +1,6 @@
^.*\.Rproj$
^\.Rproj\.user$
^Makefile$
^README.Rmd$
^.travis.yml$
^appveyor.yml$
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
.Rproj.user
.Rhistory
.RData
31 changes: 31 additions & 0 deletions .travis.yml
@@ -0,0 +1,31 @@
## Sample .travis.yml file for use with metacran/r-builder
## See https://github.com/metacran/r-builder for details.

language: c
sudo: required

before_install:
- curl -OL https://raw.githubusercontent.com/metacran/r-builder/master/pkg-build.sh
- chmod 755 pkg-build.sh
- ./pkg-build.sh bootstrap

install:
- ./pkg-build.sh install_deps

script:
- ./pkg-build.sh run_tests

after_failure:
- ./pkg-build.sh dump_logs

notifications:
email:
on_success: change
on_failure: change

env:
matrix:
- RVERSION=oldrel
- RVERSION=release
- RVERSION=devel

12 changes: 12 additions & 0 deletions DESCRIPTION
@@ -0,0 +1,12 @@
Package: timelineR
Title: Interactive Timelines
Version: 0.0.1
Author: Kenton Russell
Maintainer: Kenton Russell <kent.russell@timelyportfolio.com>
Description: Create interactive d3.js timelines from R using d3.layout.timeline.
License: MIT + file LICENSE
LazyData: true
URL: https://github.com/timelyportfolio/timelineR
BugReports: https://github.com/timelyportfolio/timelineR/issues
Suggests:
testthat
2 changes: 2 additions & 0 deletions LICENSE
@@ -0,0 +1,2 @@
YEAR:
COPYRIGHT HOLDER: Kenton Russell
5 changes: 5 additions & 0 deletions Makefile
@@ -0,0 +1,5 @@

all: README.md

README.md: README.Rmd
Rscript -e "library(knitr); knit('$<', output = '$@', quiet = TRUE)"
1 change: 1 addition & 0 deletions NAMESPACE
@@ -0,0 +1 @@
# Generated by roxygen2 (4.1.1): do not edit by hand
4 changes: 4 additions & 0 deletions NEWS.md
@@ -0,0 +1,4 @@

# 0.0.1

First public release.
8 changes: 8 additions & 0 deletions R/package.R
@@ -0,0 +1,8 @@

#' Interactive Timelines
#'
#' Create interactive d3.js timelines from R using d3.layout.timeline.
#'
#' @docType package
#' @name timelineR
NULL
36 changes: 36 additions & 0 deletions README.Rmd
@@ -0,0 +1,36 @@

```{r, setup, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
comment = "#>",
tidy = FALSE,
error = FALSE,
fig.width = 8,
fig.height = 8)
```

# timelineR

> Interactive Timelines
[![Linux Build Status](https://travis-ci.org//timelineR.svg?branch=master)](https://travis-ci.org//timelineR)
[![](http://www.r-pkg.org/badges/version/timelineR)](http://www.r-pkg.org/pkg/timelineR)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/timelineR)](http://www.r-pkg.org/pkg/timelineR)


Create interactive d3.js timelines from R using d3.layout.timeline.

## Installation

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

## Usage

```{r}
library(timelineR)
```

## License

MIT + file LICENSE © [Kenton Russell](https://github.com/).
27 changes: 27 additions & 0 deletions README.md
@@ -0,0 +1,27 @@

# timelineR

> Interactive Timelines
[![Linux Build Status](https://travis-ci.org//timelineR.svg?branch=master)](https://travis-ci.org//timelineR)
[![](http://www.r-pkg.org/badges/version/timelineR)](http://www.r-pkg.org/pkg/timelineR)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/timelineR)](http://www.r-pkg.org/pkg/timelineR)


Create interactive d3.js timelines from R using d3.layout.timeline.

## Installation

```r
devtools::install_github("/timelineR")
```

## Usage

```r
library(timelineR)
```

## License

MIT + file LICENSE © [Kenton Russell](https://github.com/).
10 changes: 10 additions & 0 deletions man/package.Rd
@@ -0,0 +1,10 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/package.R
\docType{package}
\name{ timelineR }
\alias{ timelineR }
\alias{ timelineR }
\title{ Interactive Timelines }
\description{
Create interactive d3.js timelines from R using d3.layout.timeline.
}
4 changes: 4 additions & 0 deletions tests/testthat.R
@@ -0,0 +1,4 @@
library(testthat)
library(timelineR)

test_check("timelineR")
8 changes: 8 additions & 0 deletions tests/testthat/test.R
@@ -0,0 +1,8 @@

context("timelineR")

test_that("timelineR works", {

expect_true(TRUE)

})

0 comments on commit c4acc68

Please sign in to comment.