Skip to content

Commit 6ee44e9

Browse files
committed
Initial commit
0 parents  commit 6ee44e9

File tree

5 files changed

+43
-0
lines changed

5 files changed

+43
-0
lines changed

.Rbuildignore

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

.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

DESCRIPTION

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Package: blob
2+
Title: A Simple S3 Class for Representing Vectors of Binary Data ('BLOBS')
3+
Version: 0.0.0.9000
4+
Authors@R: c(
5+
person("Hadley", "Wickham", , "hadley@rstudio.com", role = c("aut", "cre")),
6+
person("RStudio", role = "cph")
7+
)
8+
Description: R's raw vector is useful for storing a single binary object.
9+
What if you want to put a vector of them in a data frame? The blob
10+
package provides the blob object, a list of raw vectors, suitable for
11+
use as a column in data frame.
12+
Imports: tibble
13+
License: GPL-3
14+
Encoding: UTF-8
15+
LazyData: true

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("^[^\\.]")

blob.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)