-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Pass vignette warnings check * try with devel easystats * Update DESCRIPTION * fixes warning? * fix warning again
- Loading branch information
1 parent
501e00a
commit 1c6ca60
Showing
7 changed files
with
39 additions
and
38 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 |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
^CRAN-RELEASE$ | ||
^CRAN-SUBMISSION$ | ||
^LICENSE\.md$ | ||
^Makefile$ | ||
^Meta$ | ||
^NEWS$ | ||
^README-.*\.png$ | ||
|
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
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 |
---|---|---|
|
@@ -278,7 +278,7 @@ references: | |
abstract: 'insight: Easy Access to Model Information for Various Model Objects' | ||
notes: Imports | ||
url: https://easystats.github.io/insight/ | ||
repository: https://CRAN.R-project.org/package=insight | ||
repository: https://easystats.r-universe.dev | ||
authors: | ||
- family-names: Lüdecke | ||
given-names: Daniel | ||
|
@@ -375,7 +375,7 @@ references: | |
abstract: 'performance: Assessment of Regression Models Performance' | ||
notes: Imports | ||
url: https://easystats.github.io/performance/ | ||
repository: https://easystats.r-universe.dev | ||
repository: https://CRAN.R-project.org/package=performance | ||
authors: | ||
- family-names: Lüdecke | ||
given-names: Daniel | ||
|
@@ -581,18 +581,6 @@ references: | |
given-names: Brian | ||
email: [email protected] | ||
year: '2024' | ||
- type: software | ||
title: metaBMA | ||
abstract: 'metaBMA: Bayesian Model Averaging for Random and Fixed Effects Meta-Analysis' | ||
notes: Suggests | ||
url: https://danheck.github.io/metaBMA/ | ||
repository: https://CRAN.R-project.org/package=metaBMA | ||
authors: | ||
- family-names: Heck | ||
given-names: Daniel W. | ||
email: [email protected] | ||
orcid: https://orcid.org/0000-0002-6302-9252 | ||
year: '2024' | ||
- type: software | ||
title: metafor | ||
abstract: 'metafor: Meta-Analysis Package for R' | ||
|
@@ -612,20 +600,6 @@ references: | |
value: https://wviechtb.github.io/metafor/ | ||
- type: url | ||
value: https://www.wvbauer.com | ||
- type: software | ||
title: metaplus | ||
abstract: 'metaplus: Robust Meta-Analysis and Meta-Regression' | ||
notes: Suggests | ||
repository: https://CRAN.R-project.org/package=metaplus | ||
authors: | ||
- family-names: Beath | ||
given-names: Ken | ||
email: [email protected] | ||
- family-names: Bolker | ||
given-names: Ben | ||
email: [email protected] | ||
- name: R Development Core Team | ||
year: '2024' | ||
- type: software | ||
title: psych | ||
abstract: 'psych: Procedures for Psychological, Psychometric, and Personality Research' | ||
|
@@ -638,9 +612,6 @@ references: | |
email: [email protected] | ||
orcid: https://orcid.org/0000-0003-4880-9610 | ||
year: '2024' | ||
identifiers: | ||
- type: url | ||
value: https://personality-project.org/r/psych-manual.pdf | ||
- type: software | ||
title: rmarkdown | ||
abstract: 'rmarkdown: Dynamic Documents for R' | ||
|
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,29 @@ | ||
PKGNAME = `sed -n "s/Package: *\([^ ]*\)/\1/p" DESCRIPTION` | ||
PKGVERS = `sed -n "s/Version: *\([^ ]*\)/\1/p" DESCRIPTION` | ||
|
||
all: check | ||
|
||
build: install_deps | ||
R CMD build . | ||
|
||
check: build | ||
R CMD check --no-manual $(PKGNAME)_$(PKGVERS).tar.gz | ||
|
||
install_deps: | ||
Rscript \ | ||
-e 'if (!requireNamespace("remotes")) install.packages("remotes")' \ | ||
-e 'remotes::install_deps(dependencies = TRUE)' | ||
|
||
install: build | ||
R CMD INSTALL $(PKGNAME)_$(PKGVERS).tar.gz | ||
|
||
clean: | ||
@rm -rf $(PKGNAME)_$(PKGVERS).tar.gz $(PKGNAME).Rcheck | ||
|
||
update_deps: | ||
Rscript \ | ||
-e 'options(repos = c(CRAN = "https://cran.r-project.org"))' \ | ||
-e 'usethis::use_latest_dependencies(source = "CRAN")' \ | ||
-e 'roxygen2::roxygenise()' \ | ||
-e 'codemetar::write_codemeta()' \ | ||
-e 'cffr::cff_write()' |
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