Skip to content

Commit 9d870c9

Browse files
Merge branch 'release/0.3.0'
2 parents 5614db8 + 84982dc commit 9d870c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+4490
-4
lines changed

.Rbuildignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#----------------------------
2+
# Git and SVN related
3+
#----------------------------
4+
^.svn
5+
^.git
6+
^.make
7+
INSTALL[.]md
8+
OVERVIEW[.]md
9+
README[.]md
10+
CONDUCT[.]md
11+
12+
#----------------------------
13+
# Travis-CI et al.
14+
#----------------------------
15+
^[.]travis[.]yml$
16+
^travis-tool[.]sh$
17+
^pkg-build[.]sh$
18+
^appveyor[.]yml$
19+
^covr-utils.R$
20+
^[.]covr[.]R$
21+
^[.]covr[.]rds$
22+
23+
#----------------------------
24+
# R related
25+
#----------------------------
26+
Rplots.pdf$
27+
^cran-comments[.].*$
28+
^vignettes/.*[.](pdf|PDF)$
29+
^vignettes/.*[.](r|R)$
30+
^vignettes/[.]install_extras$
31+
^Makefile$
32+
^incl
33+
^NAMESPACE,.*[.]txt$
34+
^nohup.*$
35+
^[.]R
36+
^[.]benchmark
37+
^[.]devel
38+
^[.]test
39+
^[.]check
40+
^.*[.]tar[.]gz$
41+
42+
#----------------------------
43+
# Package specific
44+
#----------------------------
45+
^[.]batchtools[.]R$
46+
[.]future
47+

.Rinstignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Certain LaTeX files (e.g. bib, bst, sty) must be part of the build
2+
# such that they are available for R CMD check. These are excluded
3+
# from the install using .Rinstignore in the top-level directory
4+
# such as this one.
5+
doc/.*[.](bib|bst|sty)$

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.Rhistory
2+
*~
3+
**/*~
4+
.R
5+
.benchmark
6+
.check
7+
.devel
8+
.test
9+
*.o
10+
*.dll
11+
*.Rout
12+
.RData
13+
*.Rproj*
14+
*.swp
15+
.covr.rds
16+
.future

0 commit comments

Comments
 (0)