Skip to content
Snippets Groups Projects
Commit 2011a3ee authored by Walmes Marques Zeviani's avatar Walmes Marques Zeviani
Browse files

Adiciona arquivos ocultos de IC e *ignore.

parent ab90de02
No related branches found
No related tags found
No related merge requests found
\#*\#
^\.\#*
^.*\.Rproj$
^\.Rproj\.user$
^\.gitlab-ci.yml$
^data-raw$
Rplots.pdf
README.*
STYLEGUIDE.*
CONTRIBUTING.*
LICENSE
_output.yaml
ci-c3sl.R
roteiro.R
style.css
\ No newline at end of file
#!/usr/bin/env Rscript
#--------------------------------------------
# Carregar pacotes.
library(devtools)
library(roxygen2)
sessionInfo()
#--------------------------------------------
# Carregar objetos do pacote.
load_all()
ls("package:labestData")
packageVersion("labestData")
#--------------------------------------------
# Gerar a documentação dos objetos.
document()
check_doc()
#--------------------------------------------
# Chegar conteúdo e organização do pacote.
check(cleanup = FALSE,
manual = TRUE,
vignettes = FALSE,
check_dir = "../")
#--------------------------------------------
# Gerar as vinhetas.
if (length(list.files("./vignettes"))) {
build_vignettes()
}
#--------------------------------------------
# Construir pacote.
build(manual = TRUE, vignettes = TRUE)
#--------------------------------------------
# Instalar o pacote.
lib <- path.expand("~/R-test/")
dir.create(lib)
.libPaths(new = lib)
.libPaths()
install()
unlink(lib, recursive = TRUE)
#--------------------------------------------
*~
.#*
#*
.Rhistory
.Rproj.user
*.Rout
*.aux
*.log
*.out
README.html
CONTRIBUTING.html
STYLEGUIDE.html
\ No newline at end of file
before_script:
- mkdir -p ~/R-tests/
R_build_package:
script:
- ./.build_package.R
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment