-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf40b27
commit 0b1acc8
Showing
4 changed files
with
29 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: rocker/verse:4.0.3 | ||
environment: | ||
_R_CHECK_FORCE_SUGGESTS_: false | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install package dependencies | ||
command: | | ||
Rscript \ | ||
-e 'if (!requireNamespace("devtools", quietly = TRUE)) install.packages("devtools")' \ | ||
-e 'devtools::install_deps(dependencies = NA)' | ||
- run: | ||
name: Build package | ||
command: R CMD build . | ||
- run: | ||
name: Check package | ||
command: R CMD check --no-manual *tar.gz | ||
- store_test_results: | ||
path: tmp/tests |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: ggrastr | ||
Type: Package | ||
Title: Rasterize Layers for 'ggplot2' | ||
Version: 0.2.3 | ||
Version: 1.0.0 | ||
Authors@R: c(person("Viktor", "Petukhov", email = "[email protected]", role = c("aut", "cph")), person("Teun", "van den Brand", email = "[email protected]", role=c("aut")), person("Evan", "Biederstedt", email = "[email protected]", role=c("cre", "aut"))) | ||
Description: Rasterize only specific layers of a 'ggplot2' plot while simultaneously keeping all labels and text in vector format. This allows users to keep plots within the reasonable size limit without loosing vector properties of the scale-sensitive information. | ||
License: MIT + file LICENSE | ||
|
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