Idris-dev/CONTRIBUTING.md

171 lines
7.4 KiB
Markdown
Raw Normal View History

2013-12-10 21:11:21 +04:00
# Contributing to Idris-Dev
The Idris Community welcomes pull requests, bug reporting, and bug squashing!
However, we cannot do it all ourself, and want to make it as easy as possible to contribute changes to get things working.
Here are a few guidelines that we would like contributors to follow so that we can have a chance of keeping on top of things.
## Getting Started
1. Make sure you are familiar with [Git](http://git-scm.com/book).
1. Make sure you have a [GitHub account](https://github.com/signup/free).
1. Make sure you are familiar with: [Idris](http://eb.host.cs.st-andrews.ac.uk/writings/idris-tutorial.pdf).
2015-03-19 23:02:37 +03:00
1. Make sure you can install Idris:
2013-12-10 21:11:21 +04:00
* [Mac OS X](https://github.com/idris-lang/Idris-dev/wiki/Idris-on-OS-X-using-Homebrew)
* [Ubuntu](https://github.com/idris-lang/Idris-dev/wiki/Idris-on-Ubuntu)
* [Debian](https://github.com/idris-lang/Idris-dev/wiki/Idris-on-Debian)
* [Windows](https://github.com/idris-lang/Idris-dev/wiki/Idris-on-Windows)
## Issue Reporting
2013-12-10 21:11:21 +04:00
Before you report an issue, or wish to add cool functionality please try and check to see if there are existing [issues](https://github.com/idris-lang/Idris-dev/issues) and [pull requests](https://github.com/idris-lang/Idris-dev/pulls).
We do not want you wasting your time, duplicating somebody's work!
2013-12-18 23:02:33 +04:00
## The Campsite Rule
A basic rule when contributing to Idris is the **campsite rule**: leave the codebase in better condition than you found it.
Please clean up any messes that you find, and don't leave behind new messes for the next contributor.
## Contributing to the default libraries.
2015-03-19 23:02:37 +03:00
Idris ships with a set of packages in `libs/` that is provided as a default library.
+ `prelude` is the bare minimum required for any Idris program to run.
+ `base` is tried and tested code that may be useful, and has seen active use in multiple projects.
+ `contrib` is code that is experimental in design and want to test before possible inclusion in `base`.
+ `effects` is an implementation of algebraic effects that is packaged alongside Idris.
These packages should not be seen as the *standard* as when working with dependent types we do not necessarily know how best to work with dependent types.
2015-03-19 23:02:37 +03:00
These packages offer functionality that can be built on top of when constructing Idris programs.
2015-03-24 10:46:01 +03:00
When working with packages in `libs/`, it is important to realise that everything in prelude will be imported automatically, unless given the `--noprelude` option.
Likewise, the contents of base are available with no special options.
The other two packages that ship with Idris, contrib and effects, require the use of the `-p` command-line argument to bring their contents into the include path.
New contributions should probably be sent to contrib first, so that they can get maintained with the Idris distribution.
If they turn out to be widely applicable and useful, they may later be moved into base.
2015-03-19 23:02:37 +03:00
As Idris is still being developed we are open to suggestions and changes that make improvements to these default packages.
2015-03-24 10:46:01 +03:00
Major changes to the library (or Idris itself) should ideally be discussed first through the project's official channels of communication:
1. The mailing List.
1. On our IRC Channel `#idris` on freenode, or
1. As a [Dragon Egg](https://github.com/idris-lang/Idris-dev/wiki/Feature-proposals).
Developers then seeking to add content to Idris's prelude and default library, should do so through a PR where more discussion's and refinements can be made.
We do not want you wasting your time nor duplicating somebody's work!
Of note: developers should be prepared to wait until their PR has been discussed and authorized prior to the PRs inclusion.
2013-12-10 21:11:21 +04:00
## Making Changes
Idris developers and hackers try to adhere to something similar to the [successful git branching model](http://nvie.com/posts/a-successful-git-branching-model/).
The steps are straightforward.
### New contributors
2013-12-10 21:11:21 +04:00
For those new to the project:
1. Fork our [main development repository](https://github.com/idris-lang/Idris-dev) `idris-dev` on github e.g.
2. Clone your fork to your local machine:
```
$ git clone git@github.com/<your github user name>/Idris-dev.git
```
3. Add `idris-lang/Idris-dev` as a remote upstream
2013-12-10 21:11:21 +04:00
```
$ git remote add upstream git@github.com:idris-lang/Idris-dev.git
```
### Existing Contributors
2013-12-10 21:11:21 +04:00
For those already contributing to the project:
1. Ensure your existing clone is up-to-date with current `HEAD` e.g.
```
$ git fetch upstream
$ git merge upstream/master
```
2013-12-10 21:11:21 +04:00
### Remaining Steps
2013-12-10 21:11:21 +04:00
The remaining steps are the same for both new and existing contributors:
2013-12-10 21:11:21 +04:00
1. Create, and checkout onto, a topic branch on which to base you work.
* This is typically the master branch.
* For your own sanity, please avoid working on the `master` branch.
```
$ git branch fix/master/my_contrib master
$ git checkout fix/master/my_contrib
```
2013-12-10 21:11:21 +04:00
1. Make commits of logical units.
1. Check for unnecessary whitespace with
```
$ git diff --check
```
2013-12-10 21:11:21 +04:00
1. Make sure your commit messages are along the lines of:
Short (50 chars or less) summary of changes
More detailed explanatory text, if necessary. Wrap it to about 72
characters or so. In some contexts, the first line is treated as the
subject of an email and the rest of the text as the body. The blank
line separating the summary from the body is critical (unless you omit
the body entirely); tools like rebase can get confused if you run the
two together.
2013-12-10 21:11:21 +04:00
Further paragraphs come after blank lines.
2013-12-10 21:11:21 +04:00
- Bullet points are okay, too
2013-12-10 21:11:21 +04:00
- Typically a hyphen or asterisk is used for the bullet, preceded by a
single space, with blank lines in between, but conventions vary here
1. Make sure you have added any necessary tests for your changes.
1. Run all the tests to assure nothing else was accidentally broken.
```
$ make test
```
2013-12-10 21:11:21 +04:00
1. Push your changes to a topic branch in your fork of the repository.
```
$ git push origin fix/master/my_contrib
```
2013-12-10 21:11:21 +04:00
1. Go to GitHub and submit a pull request to `idris-dev`
From there you will have to wait on one of the `idris-dev` committers to respond to the request.
This response might be an accept or some changes/improvements/alternatives will be suggest.
We do not guarantee that all requests will be accepted.
## Increases chances of acceptance.
To help increase the chance of your pull request being accepted:
1. Run the tests.
1. Update the documentation, the surrounding one, examples elsewhere, guides, whatever is affected by your contribution
2015-03-19 23:02:37 +03:00
1. Use appropriate code formatting for both Idris and Haskell.
2013-12-10 21:11:21 +04:00
## Additional Resources
* [Idris Wiki](https://github.com/idris-lang/Idris-dev/wiki);
* [Zen Of Idris](https://github.com/idris-lang/Idris-dev/wiki/The-Zen-of-Idris);
* Idris FAQs: [Official](http://www.idris-lang.org/documentation/faq/); [Unofficial](https://github.com/idris-lang/Idris-dev/wiki/Unofficial-FAQ);
* [Idris Manual](https://github.com/idris-lang/Idris-dev/wiki/Manual);
* [Idris Tutorial](http://eb.host.cs.st-andrews.ac.uk/writings/idris-tutorial.pdf);
* [Idris News](http://www.idris-lang.org/news/);
* [other Idris docs](http://www.idris-lang.org/documentation/).
* [Using Pull Requests](https://help.github.com/articles/using-pull-requests)
* [General GitHub Documentation](https://help.github.com/).
Adapted from the most excellent contributing files from the [Puppet project](https://github.com/puppetlabs/puppet) and [Factroy Girl Rails](https://github.com/thoughtbot/factory_girl_rails/blob/master/CONTRIBUTING.md)