Skip to content

Commit 9a2262f

Browse files
committed
Bootstrap R package
1 parent c538290 commit 9a2262f

File tree

6 files changed

+52
-0
lines changed

6 files changed

+52
-0
lines changed

.gitignore

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

R/.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$

R/DESCRIPTION

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Package: feather
2+
Title: R bindings to the feather API.
3+
Version: 0.0.0.9000
4+
Authors@R: c(
5+
person("Hadley", "Wickham", , "[email protected]", role = c("aut", "cre")),
6+
person("RStudio", role = "cph")
7+
)
8+
Description: Read and write feather files, a lightweight binary columnar
9+
datastore designed for maximum speed.
10+
Depends: R (>= 3.2.3)
11+
License: GPL-3
12+
LazyData: true
13+
URL: https://github.com/wesm/feather
14+
BugReports: https://github.com/wesm/feather/issues

R/NAMESPACE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Generated by roxygen2: fake comment so roxygen2 overwrites silently.
2+
exportPattern("^[^\\.]")

R/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
## R Feather Format API
2+
3+
## Installation
4+
5+
Install from Github with:
6+
7+
```{r}
8+
# install.packages("devtools")
9+
devtools::install_github("wesm/feather/R")
10+
```

R/feather.Rproj

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Version: 1.0
2+
3+
RestoreWorkspace: No
4+
SaveWorkspace: No
5+
AlwaysSaveHistory: Default
6+
7+
EnableCodeIndexing: Yes
8+
UseSpacesForTab: Yes
9+
NumSpacesForTab: 2
10+
Encoding: UTF-8
11+
12+
RnwWeave: knitr
13+
LaTeX: XeLaTeX
14+
15+
AutoAppendNewline: Yes
16+
StripTrailingWhitespace: Yes
17+
18+
BuildType: Package
19+
PackageUseDevtools: Yes
20+
PackageInstallArgs: --no-multiarch --with-keep.source
21+
PackageRoxygenize: rd,collate,namespace

0 commit comments

Comments
 (0)