Skip to content

Commit 989f37d

Browse files
committed
more neutral default values for user + email in skeleton
1 parent 05e7804 commit 989f37d

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2014-09-15 Dirk Eddelbuettel <[email protected]>
2+
3+
* R/Rcpp.package.skeleton.R: Use more neutral default name, email settings
4+
* man/Rcpp.package.skeleton.Rd: Document these
5+
16
2014-09-14 Dirk Eddelbuettel <[email protected]>
27

38
* inst/unitTests/testRcppClass/man/Rcpp_class_examples.Rd: Similar

R/Rcpp.package.skeleton.R

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Rcpp.package.skeleton <- function(name = "anRpackage", list = character(),
2222
path = ".", force = FALSE,
2323
code_files = character(), cpp_files = character(),
2424
example_code = TRUE, attributes = TRUE, module = FALSE,
25-
author = "Who wrote it",
26-
maintainer = if (missing(author)) "Who to complain to"
25+
author = "Your Name",
26+
maintainer = if (missing(author)) "Your Name"
2727
else author,
28-
email = "[email protected]",
28+
email = "[email protected]",
2929
license = "GPL (>= 2)") {
3030

3131
havePkgKitten <- require("pkgKitten", quietly=TRUE, character.only=TRUE)
@@ -209,4 +209,3 @@ Rcpp.package.skeleton <- function(name = "anRpackage", list = character(),
209209

210210
invisible(NULL)
211211
}
212-

man/Rcpp.package.skeleton.Rd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Rcpp.package.skeleton(name = "anRpackage", list = character(),
1515
environment = .GlobalEnv, path = ".", force = FALSE,
1616
code_files = character(), cpp_files = character(),
1717
example_code = TRUE, attributes = TRUE, module = FALSE,
18-
author = "Who wrote it",
19-
maintainer = if(missing( author)) "Who to complain to" else author,
20-
email = "[email protected]",
18+
author = "Your Name",
19+
maintainer = if(missing( author)) "Your Name" else author,
20+
email = "[email protected]",
2121
license = "GPL (>= 2)"
2222
)
2323
}

0 commit comments

Comments
 (0)