Skip to content

Commit

Permalink
Merge pull request #35 from inbo/appveyor
Browse files Browse the repository at this point in the history
Add AppVeyor support
  • Loading branch information
ThierryO committed Dec 11, 2017
2 parents 8cddb54 + 9753759 commit 97e3168
Show file tree
Hide file tree
Showing 13 changed files with 623 additions and 977 deletions.
3 changes: 3 additions & 0 deletions .Rbuildignore
@@ -1,3 +1,4 @@
^appveyor\.yml$
^wercker\.yml$
^.*\.Rproj$
^\.Rproj\.user$
Expand All @@ -12,3 +13,5 @@
^_builds$
^_steps$
^NEWS\.md$
^CODE_OF_CONDUCT\.md$
$CONTRIBUTING\.md$
25 changes: 25 additions & 0 deletions CODE_OF_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/
75 changes: 75 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,75 @@
# CONTRIBUTING #

### Please contribute!

Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.

You can contribute in many ways:

## Types of Contributions

### Bugs?

* Submit an issue on the Issues page [here](https://github.com/inbo/multimput/issues)

If you are reporting a bug, please include:

* Your operating system name and version.
* Any details about your local setup that might be helpful in troubleshooting.
* Detailed steps to reproduce the bug.

### Fix bugs

Look through the GitHub issues for bugs. Anything tagged with "bug" and "help wanted" is open to whoever wants to implement it.

### Write Documentation

`multimput` could always use more documentation, whether as part of the official `multimput` docs, in roxygen strings, or even on the web in blog posts, articles, and such.

### Submit Feedback

The best way to send feedback is to file an issue at https://github.com/inbo/multimput/issues.

If you are proposing a feature:

* Explain in detail how it would work.
* Keep the scope as narrow as possible, to make it easier to implement.
* Remember that this is a volunteer-driven project, and that contributions are welcome :)

## Get Started!

Ready to contribute? Here's how to set up `multimput` for local development.

1. Fork the `multimput` repo on GitHub.

2. Clone your fork locally:

```basic
$ git clone git@github.com:your_name_here/multimput.git
```

3. Create a branch for local development:

```basic
$ git checkout -b name-of-your-bugfix-or-feature
```

Now you can make your changes locally.

4. When you're done making changes (please include unit tests as well), make a check on the code behavior and aim for 0 errors and 0 warnings. In R, you can use the check of the `devtools` package:

```r
devtools::check(document = FALSE, cleanup = FALSE, args = c('--as-cran'))
```

5. Commit your changes and push your branch to GitHub:

```basic
$ git add .
$ git commit -m "Your detailed description of your changes."
$ git push origin name-of-your-bugfix-or-feature
```

6. Submit a pull request through the [GitHub website](https://github.com/inbo/multimput/pulls).

### Thanks for contributing!
10 changes: 7 additions & 3 deletions DESCRIPTION
@@ -1,9 +1,13 @@
Package: multimput
Type: Package
Title: Using Multiple Imputation to Address Missing Data
Version: 0.2.7.9000
Date: 2017-11-18
Authors@R: c(person("Thierry", "Onkelinx", role = c("aut", "cre"), email = "thierry.onkelinx@inbo.be"),
Version: 0.2.8
Date: 2017-12-10
Authors@R: c(
person(
"Thierry", "Onkelinx", role = c("aut", "cre"),
email = "thierry.onkelinx@inbo.be",
comment = "http://orcid.org/0000-0001-8804-4216"),
person("Koen", "Devos", role = "aut"),
person("Paul", "Quataert", role = "aut"))
Description: Accompaning package for the paper: "Working with population totals
Expand Down
Binary file removed README-model_aggregate_lm3-1.png
Binary file not shown.
Binary file removed README-model_glmnb-1.png
Binary file not shown.
Binary file removed README-model_inla-1.png
Binary file not shown.
Binary file removed README-plot_data-1.png
Binary file not shown.
36 changes: 0 additions & 36 deletions README.Rmd

This file was deleted.

0 comments on commit 97e3168

Please sign in to comment.