Skip to content

Commit

Permalink
fixed issues with R-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyfischetti committed Feb 5, 2020
1 parent d28d780 commit d7fa35f
Show file tree
Hide file tree
Showing 14 changed files with 84 additions and 31 deletions.
2 changes: 0 additions & 2 deletions CRAN-RELEASE

This file was deleted.

2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ Suggests:
testthat,
magrittr
VignetteBuilder: knitr
RoxygenNote: 6.1.1
RoxygenNote: 7.0.2
Encoding: UTF-8
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# assertr 2.7

* added "inverse" option to predicates

* bugs due to changes in r-devel and package dependencies fixed

# assertr 2.6

* bugs due to changes in rlang 0.3.0 fixed.
Expand Down
2 changes: 1 addition & 1 deletion R/assertions.R
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ assert <- function(data, predicate, ..., success_fun=success_continue,
return(apply.predicate.to.vector(this.vector,
predicate))})

if(class(log.mat)=="logical"){
if("logical" %in% class(log.mat)){
log.mat <- matrix(log.mat)
colnames(log.mat) <- colnames(sub.frame)
}
Expand Down
4 changes: 2 additions & 2 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Test environments
* local macOS Sierra 10.14 install, R 3.5.2
* ubuntu (on travis-ci), R 3.5.1
* local macOS High Sierra 10.13 install, R 3.6.0
* local Debian 10, R-devel
* win-builder (devel and release)

## R CMD check results
Expand Down
19 changes: 15 additions & 4 deletions man/assert.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 17 additions & 4 deletions man/assert_rows.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion man/assertr.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/chaining_functions.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 15 additions & 4 deletions man/insist.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 17 additions & 4 deletions man/insist_rows.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/maha_dist.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/verify.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/within_bounds.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d7fa35f

Please sign in to comment.