-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #343 from ThinkR-open/dev
golem 0.2.0 — CRAN release candidate
- Loading branch information
Showing
108 changed files
with
3,703 additions
and
1,196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,5 @@ | |
^CRAN-RELEASE$ | ||
^appveyor\.yml$ | ||
^CONTRIBUTING\.md$ | ||
^doc$ | ||
^Meta$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto | ||
|
||
# Declare files that will always have CRLF line endings on checkout. | ||
*.Rd text eol=lf | ||
*.R text eol=lf | ||
*.Rmd text eol=lf | ||
*.md text eol=lf | ||
NAMESPACE text eol=lf | ||
DESCRIPTION text eol=lf | ||
|
||
# Denote all files that are truly binary and should not be modified. | ||
*.png binary | ||
*.jpg binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ inst/rstudio/.DS_Store | |
.Rproj.user | ||
.Rhistory | ||
.RData | ||
doc | ||
Meta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: golem | ||
Title: A Framework for Robust Shiny Applications | ||
Version: 0.1.0.9001 | ||
Version: 0.2.0 | ||
Authors@R: | ||
c(person(given = "Vincent", | ||
family = "Guyader", | ||
|
@@ -22,6 +22,10 @@ Authors@R: | |
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-4816-4624")), | ||
person(given = "Novica", | ||
family = "Nakov", | ||
role = "ctb", | ||
email = "[email protected]"), | ||
person(given = "ThinkR", | ||
role = "cph")) | ||
Description: An opinionated framework for building a | ||
|
@@ -36,40 +40,42 @@ Depends: | |
Imports: | ||
attempt (>= 0.3.0), | ||
cli, | ||
config, | ||
crayon, | ||
desc, | ||
dockerfiler, | ||
DT, | ||
glue, | ||
fs, | ||
here, | ||
htmltools, | ||
jsonlite, | ||
pkgload, | ||
processx, | ||
remotes, | ||
rlang, | ||
roxygen2, | ||
rsconnect, | ||
rstudioapi, | ||
shiny, | ||
stats, | ||
stringr, | ||
testthat, | ||
tools, | ||
usethis, | ||
utils, | ||
yesno | ||
yaml | ||
Suggests: | ||
spelling, | ||
covr, | ||
devtools, | ||
glue, | ||
knitr, | ||
pkgbuild, | ||
pkgdown, | ||
purrr, | ||
rcmdcheck, | ||
rmarkdown, | ||
rsconnect, | ||
spelling, | ||
stringr, | ||
withr | ||
VignetteBuilder: | ||
knitr | ||
Encoding: UTF-8 | ||
Language: en-US | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 6.1.1 | ||
Language: en-US | ||
RoxygenNote: 7.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
FROM rocker/r-ver:3.5.1 | ||
RUN echo "options(repos = c(CRAN = 'https://cran.rstudio.com/'), download.file.method = 'libcurl')" >> /usr/local/lib/R/etc/Rprofile.site | ||
RUN R -e 'install.packages("remotes")' | ||
RUN R -e 'remotes::install_github("r-lib/remotes", ref = "97bbf81")' | ||
RUN Rscript -e 'remotes::install_version("attempt", version = "0.3.0")' | ||
RUN Rscript -e 'remotes::install_version("cli", version = "1.1.0")' | ||
RUN Rscript -e 'remotes::install_version("crayon", version = "1.3.4")' | ||
RUN Rscript -e 'remotes::install_version("dockerfiler", version = "0.1.3")' | ||
RUN Rscript -e 'remotes::install_version("glue", version = "1.3.1")' | ||
RUN Rscript -e 'remotes::install_version("htmltools", version = "0.4.0")' | ||
RUN Rscript -e 'remotes::install_version("jsonlite", version = "1.6")' | ||
RUN Rscript -e 'remotes::install_version("magrittr", version = "1.5")' | ||
RUN Rscript -e 'remotes::install_version("pkgload", version = "1.0.2")' | ||
RUN Rscript -e 'remotes::install_version("remotes", version = "2.1.0")' | ||
RUN Rscript -e 'remotes::install_version("rlang", version = "0.4.0")' | ||
RUN Rscript -e 'remotes::install_version("roxygen2", version = "6.1.1")' | ||
RUN Rscript -e 'remotes::install_version("rsconnect", version = "0.8.15")' | ||
RUN Rscript -e 'remotes::install_version("rstudioapi", version = "0.10")' | ||
RUN Rscript -e 'remotes::install_version("shiny", version = "1.4.0")' | ||
RUN Rscript -e 'remotes::install_version("testthat", version = "2.2.1")' | ||
RUN Rscript -e 'remotes::install_version("usethis", version = "1.5.1")' | ||
RUN Rscript -e 'remotes::install_version("yesno", version = "0.1.0")' | ||
RUN Rscript -e 'remotes::install_version("purrr", version = "0.3.3")' | ||
RUN Rscript -e 'remotes::install_version("covr", version = "3.3.2")' | ||
RUN Rscript -e 'remotes::install_version("devtools", version = "2.2.1")' | ||
RUN Rscript -e 'remotes::install_version("DT", version = "0.9")' | ||
RUN Rscript -e 'remotes::install_version("knitr", version = "1.25")' | ||
RUN Rscript -e 'remotes::install_version("pkgdown", version = "1.4.1")' | ||
RUN Rscript -e 'remotes::install_version("rcmdcheck", version = "1.3.3")' | ||
RUN Rscript -e 'remotes::install_version("rmarkdown", version = "1.16")' | ||
RUN Rscript -e 'remotes::install_version("spelling", version = "2.1")' | ||
RUN Rscript -e 'remotes::install_version("stringr", version = "1.4.0")' | ||
RUN Rscript -e 'remotes::install_version("withr", version = "2.1.2")' | ||
RUN Rscript -e 'remotes::install_github("r-lib/desc@42b9578f374bf685610b1efb05315927ae236d5b")' | ||
RUN Rscript -e 'remotes::install_github("rstudio/packrat@c0a67564df0bff16c952117050f510f2c8eace0a")' | ||
COPY golem_*.tar.gz /app.tar.gz | ||
RUN R -e 'remotes::install_local("/app.tar.gz")' | ||
CMD R -e "options('shiny.port'=$PORT,shiny.host='0.0.0.0');golem::run_app()" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.