No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
6a60fdd
... +1 ...
169bd50
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
13 | 13 | ###################################################################### |
|
14 | 14 | ||
15 | 15 | .onAttach <- function(libname, pkgname){ |
|
16 | - | temp<-packageDescription("network") |
|
17 | - | msg<-paste(temp$Package,": ",temp$Title,"\n", |
|
18 | - | "Version ",temp$Version, |
|
19 | - | " created on ", |
|
20 | - | temp$Date,".\n", sep="") |
|
21 | - | msg<-paste(msg,"copyright (c) 2005, Carter T. Butts, University of California-Irvine\n", |
|
22 | - | " Mark S. Handcock, University of California -- Los Angeles\n", |
|
23 | - | " David R. Hunter, Penn State University\n", |
|
24 | - | " Martina Morris, University of Washington\n", |
|
25 | - | " Skye Bender-deMoll, University of Washington\n",sep="") |
|
26 | - | msg<-paste(msg,'For citation information, type citation("network").\n') |
|
27 | - | msg<-paste(msg,'Type help("network-package") to get started.\n') |
|
28 | - | packageStartupMessage(msg) |
|
16 | + | #' @importFrom statnet.common statnetStartupMessage |
|
17 | + | sm <- statnetStartupMessage("network", c("statnet","ergm","ergm.count","tergm"), TRUE) |
|
18 | + | if(!is.null(sm)) packageStartupMessage(sm) |
|
29 | 19 | } |
169bd50
a111f26
6a60fdd