summaryrefslogtreecommitdiff
path: root/posts/2010-10-04-how-to-contribute-to-dancer.org
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-08-10 14:33:04 -0700
committerFranck Cuny <franck.cuny@gmail.com>2016-08-10 20:17:56 -0700
commit8d7d02f42c3947f756c18cb4d37d9d97fbd0d27d (patch)
treea6cecddaaea7e87d901a6c28bebe3a531438f24b /posts/2010-10-04-how-to-contribute-to-dancer.org
parentMerge branch 'convert-to-org' (diff)
downloadlumberjaph-8d7d02f42c3947f756c18cb4d37d9d97fbd0d27d.tar.gz
convert back to md
Diffstat (limited to '')
-rw-r--r--posts/2010-10-04-how-to-contribute-to-dancer.org57
1 files changed, 0 insertions, 57 deletions
diff --git a/posts/2010-10-04-how-to-contribute-to-dancer.org b/posts/2010-10-04-how-to-contribute-to-dancer.org
deleted file mode 100644
index 2e8a3a2..0000000
--- a/posts/2010-10-04-how-to-contribute-to-dancer.org
+++ /dev/null
@@ -1,57 +0,0 @@
-For our development projects, we rely a lot on Github. Lately, more and
-more people started contributing to Dancer, but not all of them are
-familiar with Github or git. Here is a little step-by-step guide on how
-to contribute. You don't need to be a Perl expert to contribute, you can
-provide help by correcting documentation error, or adding a new recipe
-to our cookbook.
-
-** the code
-
-The main repository is hosted
-[[http://github.com/perldancer/dancer][here]]. There are two main
-branches:
-
-- master
-- devel
-
-In the master branch we accept only bug fixes and doc fixes/updates. The
-current master branch will be the future 1.2 version.
-
-The devel branch is where we add new features, or improve existing
-features.
-
-** contributing
-
-First, go to
-[[http://github.com/perldancer/dancer][github.com/perldancer/dancer]]
-and click on the "fork" button. Now, here is a little tutorial on how to
-fetch the repository, list the local and remote branches, and track the
-remote devel branch.
-
-Now that you know what the purpose of each branch is, you can decide to
-work on master or devel (=git checkout devel= to switch branch).
-
-** sending your patch
-
-As I've previously stated, we rely a lot on the github features and
-interface. So now you've written your patch. First, be sure to provide
-one or more tests, and to run the test suite (with =make test= or
-=prove -r t/=). If all the tests pass, you can send a pull request. For
-this, you go on your own fork on github
-(http://github.com/$user/dancer), and you click on the "Pull Request"
-button.
-
-You can at any time see all the commits done by others that have not yet
-been merged into one of our branches at
-[[http://github.com/perldancer/Dancer/forkqueue][this url]].
-
-** reporting and/or fixing bugs
-
-We prefer to use the github issue tracker instead of RT. So if you want
-to report a bug, go
-[[http://github.com/perldancer/dancer/issues][there]].
-
-If your commit fixes a bug reported there, please add in your commit
-message something like 'fixing GH #xxx" where xxx is the bug id.
-
-Thank you to everyone who have contributed so far!