Pull requests of all sizes are very much appreciated, below is a quick guide on how you can help:
-
Fork the repository
-
minicron uses Git Flow so preferably make sure you have that installed, here is a good explanation of how to use it
-
Check out the
develop
branch,git flow init
(w/ default prompt values), and start a featuregit flow feature start yourfeature
. -
Install a local copy of minicron like so:
bundle
&rake install
-
Run the tests to be sure everything is working before you begin like so:
rake spec
-
Make your changes.
-
With the exception of documentation changes, any changes should ideally have accompanying tests.
-
Finish your feature
git flow feature finish
-
Submit your pull request from your
develop
branch to minicron'sdevelop
branch
Where possible I'm trying to adhere to the Ruby Community Styleguide so please try to do so when making your changes. Install a plugin for EditorConfig and your IDE should do a lot of this for you automatically!
Thanks!