From bca51a5abc59c4032a11152aa22a8a09d6b9c25f Mon Sep 17 00:00:00 2001 From: singmann Date: Fri, 8 Apr 2016 17:30:54 +0200 Subject: [PATCH] added Travis, badges, code of conduct --- .Rbuildignore | 3 ++- .travis.yml | 5 +++++ CONDUCT.md | 25 +++++++++++++++++++++++++ README.md | 8 ++++++++ 4 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 .travis.yml create mode 100644 CONDUCT.md diff --git a/.Rbuildignore b/.Rbuildignore index d34b893..9632de1 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -1,7 +1,8 @@ ^.*\.Rproj$ ^\.Rproj\.user$ afex-Ex.R -afex-Ex.R examples dev.R README.md +^CONDUCT\.md$ +^\.travis\.yml$ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..bfdac82 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +# Sample .travis.yml for R projects + +language: r +warnings_are_errors: true +sudo: required diff --git a/CONDUCT.md b/CONDUCT.md new file mode 100644 index 0000000..52a673e --- /dev/null +++ b/CONDUCT.md @@ -0,0 +1,25 @@ +# Contributor Code of Conduct + +As contributors and maintainers of this project, we pledge to respect all people who +contribute through reporting issues, posting feature requests, updating documentation, +submitting pull requests or patches, and other activities. + +We are committed to making participation in this project a harassment-free experience for +everyone, regardless of level of experience, gender, gender identity and expression, +sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion. + +Examples of unacceptable behavior by participants include the use of sexual language or +imagery, derogatory comments or personal attacks, trolling, public or private harassment, +insults, or other unprofessional conduct. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, +commits, code, wiki edits, issues, and other contributions that are not aligned to this +Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed +from the project team. + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by +opening an issue or contacting one or more of the project maintainers. + +This Code of Conduct is adapted from the Contributor Covenant +(http:contributor-covenant.org), version 1.0.0, available at +http://contributor-covenant.org/version/1/0/0/ diff --git a/README.md b/README.md index 1ad5d08..b9945dd 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ +[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/afex)](http://cran.r-project.org/package=afex) +![](http://cranlogs.r-pkg.org/badges/acss) +[![Travis-CI Build Status](https://travis-ci.org/singmann/afex.svg?branch=master)](https://travis-ci.org/singmann/afex) + + afex: Analysis of Factorial EXperiments ==== @@ -46,3 +51,6 @@ As of version `0.14` several changes to the interface were introduced: - first element in mixed object renamed to `anova_table`. - `summary` method for `mixed` objects now calls `summary.merMod` on full model. + +---- +Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). By participating in this project you agree to abide by its terms.