2015-10-28 20:39:46 -04:00
|
|
|
# Contributing to shoulda-matchers
|
|
|
|
|
2014-10-16 11:59:07 -04:00
|
|
|
We love contributions from the community! Here's a quick guide to making a pull
|
2015-04-02 22:04:18 -04:00
|
|
|
request.
|
2012-03-18 20:39:15 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
1. If you haven't contributed before, please read and understand the [Code of
|
|
|
|
Conduct].
|
|
|
|
|
|
|
|
1. Ensure that you have a [working Ruby environment].
|
|
|
|
|
|
|
|
1. Fork the repo on GitHub, then clone it to your machine.
|
|
|
|
|
|
|
|
1. Now that you've cloned the repo, navigate to it and install dependencies by
|
|
|
|
running:
|
2015-03-15 18:16:18 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
```
|
|
|
|
bundle install
|
|
|
|
```
|
2015-04-15 11:57:03 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
1. All tests should be passing, but it's a good idea to run them anyway
|
|
|
|
before starting any work:
|
|
|
|
|
|
|
|
```
|
|
|
|
bundle exec rake
|
|
|
|
```
|
2012-03-18 20:39:15 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
1. If you're adding functionality or fixing a bug, you'll want to add a
|
|
|
|
failing test for the issue first.
|
2015-03-15 18:16:18 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
1. Now you can implement the feature or bugfix.
|
2012-03-18 20:39:15 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
1. Since we only accept pull requests with passing tests, it's a good idea to
|
|
|
|
run the tests again. Since you're probably working on a single file, you can
|
|
|
|
run the tests for that file with the following command:
|
2012-03-18 20:39:15 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
```
|
|
|
|
appraisal 4.2 rspec <path of test file to run>
|
|
|
|
```
|
2012-03-18 20:39:15 -04:00
|
|
|
|
2015-11-29 20:57:45 -05:00
|
|
|
You can also run unit tests by running `zeus start` in one shell, and then
|
|
|
|
running the following in another:
|
|
|
|
|
|
|
|
```
|
|
|
|
zeus rspec <path of test file to run>
|
|
|
|
```
|
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
And to run the entire test suite again:
|
|
|
|
|
|
|
|
```
|
|
|
|
bundle exec rake
|
|
|
|
```
|
|
|
|
|
|
|
|
1. Finally, push to your fork and submit a pull request.
|
2012-03-18 20:39:15 -04:00
|
|
|
|
2014-10-16 11:59:07 -04:00
|
|
|
At this point you're waiting on us. We try to respond to issues and pull
|
|
|
|
requests within a few business days. We may suggest some changes to make to your
|
|
|
|
code to fit with our [code style] or the project style, or discuss alternate
|
|
|
|
ways of addressing the issue in question. When we're happy with everything,
|
|
|
|
we'll bring your changes into master. Now you're a contributor!
|
2012-03-18 20:39:15 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
## Addendum: Setting up your environment
|
2015-03-15 18:16:18 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
### Installing dependencies (Linux only)
|
2015-03-15 18:16:18 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
#### Debian/Ubuntu
|
2015-03-15 18:16:18 -04:00
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
Run this command to install necessary dependencies:
|
2015-03-15 18:16:18 -04:00
|
|
|
|
|
|
|
```
|
2015-10-28 20:39:46 -04:00
|
|
|
sudo apt-get install -y ruby-dev libpq-dev libsqlite3-dev nodejs
|
2015-03-15 18:16:18 -04:00
|
|
|
```
|
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
#### RedHat
|
|
|
|
|
|
|
|
Run this command to install necessary dependencies:
|
2015-03-15 18:16:18 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
sudo yum install -y ruby-devel postgresql-devel sqlite-devel zlib-devel
|
|
|
|
```
|
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
Then, install one of the JavaScript runtimes supported by [execjs]. For
|
2015-03-15 18:16:18 -04:00
|
|
|
instance, to install node.js:
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo su
|
|
|
|
curl -sL https://rpm.nodesource.com/setup | bash -
|
|
|
|
yum install -y nodejs
|
|
|
|
```
|
|
|
|
|
2015-10-28 20:39:46 -04:00
|
|
|
### Installing Ruby (all platforms)
|
|
|
|
|
|
|
|
shoulda-matchers is only compatible with Ruby 2.x. A `.ruby-version` is included
|
|
|
|
in the repo, so if you're using one of the Ruby version manager tools, then you
|
|
|
|
should be using (or have been prompted to install) the latest version of Ruby.
|
|
|
|
If not, you'll want to do that.
|
|
|
|
|
|
|
|
[working Ruby environment]: #addendum-setting-up-your-environment
|
2015-04-15 11:57:03 -04:00
|
|
|
[Code of Conduct]: https://thoughtbot.com/open-source-code-of-conduct
|
2014-10-16 11:59:07 -04:00
|
|
|
[code style]: https://github.com/thoughtbot/guides/tree/master/style
|
2015-03-15 18:16:18 -04:00
|
|
|
[execjs]: https://github.com/sstephenson/execjs
|
|
|
|
[install rvm]: https://rvm.io/rvm/install
|