V0.6.2 rc
Showing 1 of 16 files from the diff.
R/utilities.R
changed.
Other files ignored by Codecov
DESCRIPTION
has changed.
tests/testthat/test-utils.R
has changed.
vignettes/xlsx.Rmd
has changed.
vignettes/xlsx.bib
has changed.
revdep/revdep.R
is new.
.gitignore
has changed.
revdep/problems.md
is new.
.Rbuildignore
has changed.
revdep/README.md
is new.
R/xlsx-package.R
has changed.
revdep/.gitignore
is new.
NEWS
has changed.
xlsx.Rproj
is new.
revdep/failures.md
is new.
README.md
has changed.
@@ -43,7 +43,10 @@
Loading
43 | 43 | ||
44 | 44 | # what's your java version? Need > 1.5.0. |
|
45 | 45 | jversion <- .jcall('java.lang.System','S','getProperty','java.version') |
|
46 | - | if (utils::compareVersion(jversion,"1.5.0") < 0) |
|
46 | + | ||
47 | + | parse_version <- regexpr("[0-9]+\\.[0-9]+\\.[0-9]+", jversion) |
|
48 | + | clean_version <- substr(jversion, parse_version, attr(parse_version, "match.length")) |
|
49 | + | if (utils::compareVersion(clean_version,"1.5.0") < 0) |
|
47 | 50 | stop(paste("Your java version is ", jversion, |
|
48 | 51 | ". Need 1.5.0 or higher.", sep="")) |
|
49 | 52 |
Files | Coverage |
---|---|
R | 84.66% |
Project Totals (25 files) | 84.66% |
47.5
47.1
47.3
47.2
47.4
47.1
47.5
47.2
47.4
47.3
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.