1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
# Contributing to the Cucumber Aruba Project
## Introduction
We would love to get help from you as a **user** and a **contributor**.
### As a **User**
* Tell us how "Aruba" works for you
* Spread the word if you like our work and please tell us if something is (utterly) wrong
* Encourage people in testing their code and keep communicating their needs
### As a **Contributor**
* Send us bug fixes
* Add new features to the code
* Discuss changes
* Add missing documentation
* Improve our test coverage
The rest of this document is a guide for those maintaining Aruba, and others
who would like to submit patches.
## Contributing to the Aruba project
It would be great if all people who want to contribute to the Aruba project
— contributors and maintainers — follow the guidelines in this
section. There are also "Getting started" sections both for
[contributors](#getting-started-as-a-contributor) and
[maintainers](#getting-started-as-a-maintainer).
### Issues
About to create a new GitHub Issue? We appreciate that. But before you do,
please learn our basic rules:
* This is not a support forum. If you have a question, please go to
[The Cukes Google Group](http://groups.google.com/group/cukes).
* Do you have an idea for a new feature? Then don't expect it to be implemented
unless you or someone else submits a
[pull request](https://help.github.com/articles/using-pull-requests). It
might be better to start a discussion on
[the Google Group](http://groups.google.com/group/cukes).
* Reporting a bug? Follow our comments in the Issue Template, which is
pre-filled when you create the new GitHub Issue.
* We love [pull requests](https://help.github.com/articles/using-pull-requests).
The same here: Please consider our comments within the pull request template.
### Pull Requests
#### Contributors
Please...
* Fork the project. Make a branch for your change.
* Make your feature addition or bug fix — if you're unsure if your
addition will be accepted, open a GitHub Issue for discussion first
* Make sure your patch is well covered by tests. We don't accept changes that
aren't tested.
* Do not change the `Rakefile`, gem version number in `version.rb`, or
[`CHANGELOG.md`][].
(If you want to have your own version, that is fine but bump version in a
separate commit, so that we can ignore that commit when we merge your change.)
* Make sure your pull request complies with our development style guidelines.
* Rebase your branch if needed. This reduces clutter in our git history.
* Make sure you don't break other people's code. On major changes: First
deprecate, then bump major version, then make breaking changes,
* Split up your changes into reviewable git commits which combine all
lines/files relevant for a single change.
* Send us a pull request.
#### Maintainers
* Use pull requests for larger or controversial changes made by yourself or
changes you might expected to break the build.
* Commit smaller changes directly to `main`, e.g. fixing typos, adding tests or
adding documentation.
* Update [`CHANGELOG.md`][] when a pull request is merged.
* Make sure all tests are green before merging a pull request.
### Development style guidelines
* We try to follow the recommendations in the
[Ruby Community Style Guide][] and use
[`rubocop`][] to "enforce" it. Please see
[.rubocop.yml][] for exceptions.
* There should be `action` methods and `getter` methods in Aruba. Only the
latter should return values. Please expect the first ones to return `nil`.
* Add documentation — aka acceptance tests — for new features
using Aruba's Cucumber steps. Place them somewhere suitable in [features/].
* Add unit tests where needed to cover edge cases which are not (directly)
relevant for users.
* Add [YARD] developer documentation to all relevant methods added.
* Format your commit messages following these seven rules — see
the ["How to Write a Git Commit Message"] blog post for a well-written
explanation about the why.
1. Separate subject from body with a blank line
2. Limit the subject line to 50 characters
3. Capitalize the subject line
4. Do not end the subject line with a period
5. Use the imperative mood in the subject line
6. Wrap the body at 72 characters
7. Use the body to explain what and why vs. how (optional if subject is self-explanatory)
## Getting started as a "Contributor"
### Requirements
To get started with Aruba, you only need [Bundler].
Install Aruba's dependencies:
```bash
bundle install
```
### Running tests
Run the following command to run the test suite.
```bash
# Run the whole test suite
bundle exec rake
# Run RSpec tests
bundle exec rake spec
# Run Cucumber features
bundle exec rake cucumber
# Run Cucumber features which are "WORK IN PROGRESS" and are allowed to fail
bundle exec rake cucumber:wip
```
If you have problems because our assumptions about your local setup are wrong,
perhaps you can use this Docker workflow. This requires [Docker] to be
installed on your local system.
```bash
# Build the docker container
docker build -t test-aruba .
# Open a bash shell inside the container with attached volume so changes to the
# code will be picked up automatically.
docker run -v $PWD:/aruba --rm -it test-aruba:latest bash
# Run the test suite
bundle exec rake
```
If you want to run the test suite against specific versions of Aruba's
dependencies, you can use [appraisal](https://github.com/thoughtbot/appraisal):
```bash
bundle exec appraisal cucumber_6 bundle install
bundle exec appraisal cucumber_6 bundle exec rake
```
### Installing your own gems used for development
A `Gemfile.local` file can be used, to have your own gems installed to support
your normal development workflow.
Example `Gemfile.local`:
```ruby
gem 'byebug'
```
### Running a developer console
The interactive Aruba console starts an IRB console with Aruba's API loaded:
```bash
bin/console
```
### Linting
Aruba's Rakefile provides the following linting tasks
```bash
bundle exec rake lint # Run all linters
bundle exec rake lint:coding_guidelines # Lint our code with "rubocop"
bundle exec rake lint:licenses # Check for relevant licenses in project
```
### Building and installing your local Aruba version
You can use the following Rake tasks to build and install your work-in-progress locally:
```bash
# Build your copy
bundle exec rake build
# Build and install your copy
bundle exec rake install
# Build and install your copy without network access
bundle exec rake install:local
```
## Getting started as a "Maintainer"
### Release Process
* Bump the version number in `lib/aruba/version.rb`
* Make sure [`CHANGELOG.md`] is updated with the upcoming version number, and has
entries for all fixes.
* No need to add a [`CHANGELOG.md`] header at this point - this should be done
later, when a new change is made.
Now release it:
```bash
# update dependencies
bundle update
# Run test suite
bundle exec rake
# Release gem
git commit -m "Version bump"
bundle exec rake release
```
Now send a PR to [cucumber/website] adding an article
with details of the new release. Then merge it - an aruba maintainer should
normally be allowed to merge PRs on [cucumber/website]. A copy of an old
announcement can be used as basis for the new article.
Now, send an email with the link to the article to `cukes@googlegroups.com`.
### Gaining Release Karma
To become a release manager, create a pull request adding your name to the list
below, and include your Rubygems email address in the ticket. One of the
existing Release managers will then add you.
Current release managers:
* Aslak Hellesøy ([@aslakhellesoy](https://github.com/aslakhellesoy))
* Matt Wynne ([@mattwynne](https://github.com/mattwynne))
* Matijs van Zuijlen ([@mvz](https://github.com/mvz))
To grant release karma, issue the following command:
```bash
gem owner aruba --add <NEW OWNER RUBYGEMS EMAIL>
```
[`CHANGELOG.md`]: CHANGELOG.md
[CHANGELOG.md]: CHANGELOG.md
[`rubocop`]: https://github.com/bbatsov/rubocop
[Ruby Community Style Guide]: https://github.com/bbatsov/ruby-style-guide
[.rubocop.yml]: .rubocop.yml
[features/]: features/
[Bundler]: https://bundler.io/
[Docker]: https://docs.docker.com/
[YARD]: http://yardoc.org/
["How to Write a Git Commit Message"]: http://chris.beams.io/posts/git-commit/
[cucumber/website]: https://github.com/cucumber/website
|