Skip to content

Commit db41eea

Browse files
committed
Initial commit of Mason template
0 parents  commit db41eea

File tree

15 files changed

+202
-0
lines changed

15 files changed

+202
-0
lines changed

.Rbuildignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$
3+
^Makefile$
4+
^README.Rmd$
5+
^.travis.yml$
6+
^appveyor.yml$

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData

.travis.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## Sample .travis.yml file for use with metacran/r-builder
2+
## See https://github.com/metacran/r-builder for details.
3+
4+
language: c
5+
sudo: required
6+
7+
before_install:
8+
- curl -OL https://raw.githubusercontent.com/metacran/r-builder/master/pkg-build.sh
9+
- chmod 755 pkg-build.sh
10+
- ./pkg-build.sh bootstrap
11+
12+
install:
13+
- ./pkg-build.sh install_deps
14+
15+
script:
16+
- ./pkg-build.sh run_tests
17+
18+
after_failure:
19+
- ./pkg-build.sh dump_logs
20+
21+
notifications:
22+
email:
23+
on_success: change
24+
on_failure: change
25+
26+
env:
27+
matrix:
28+
- RVERSION=oldrel
29+
- RVERSION=release
30+
- RVERSION=devel
31+

DESCRIPTION

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Package: praise
2+
Title: Praise Users
3+
Version: 1.0.0
4+
Author: Gabor Csardi
5+
Maintainer: Gabor Csardi <[email protected]>
6+
Description: TODO
7+
License: MIT + file LICENSE
8+
LazyData: true
9+
URL: https://github.com/gaborcsardi/praise
10+
BugReports: https://github.com/gaborcsardi/praise/issues
11+
Suggests:
12+
testthat

LICENSE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
YEAR:
2+
COPYRIGHT HOLDER: Gabor Csardi

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
all: README.md
3+
4+
README.md: README.Rmd
5+
Rscript -e "library(knitr); knit('$<', output = '$@', quiet = TRUE)"

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Generated by roxygen2 (4.1.1): do not edit by hand

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
# 1.0.0
3+
4+
First public release.

R/package.R

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
#' Praise Users
3+
#'
4+
#' TODO
5+
#'
6+
#' @docType package
7+
#' @name praise
8+
NULL

README.Rmd

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
```{r, setup, echo = FALSE, message = FALSE}
3+
knitr::opts_chunk$set(
4+
comment = "#>",
5+
tidy = FALSE,
6+
error = FALSE,
7+
fig.width = 8,
8+
fig.height = 8)
9+
```
10+
11+
# praise
12+
13+
> Praise Users
14+
15+
[![Linux Build Status](https://travis-ci.org/gaborcsardi/praise.svg?branch=master)](https://travis-ci.org/gaborcsardi/praise)
16+
17+
[![Windows Build status](https://ci.appveyor.com/api/projects/status/github/gaborcsardi/praise?svg=true)](https://ci.appveyor.com/project/gaborcsardi/praise)
18+
[![](http://www.r-pkg.org/badges/version/praise)](http://www.r-pkg.org/pkg/praise)
19+
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/praise)](http://www.r-pkg.org/pkg/praise)
20+
21+
22+
TODO
23+
24+
## Installation
25+
26+
```{r eval = FALSE}
27+
devtools::install_github("gaborcsardi/praise")
28+
```
29+
30+
## Usage
31+
32+
```{r}
33+
library(praise)
34+
```
35+
36+
## License
37+
38+
MIT + file LICENSE © [Gabor Csardi](https://github.com/gaborcsardi).

0 commit comments

Comments
 (0)