Skip to content

Commit

Permalink
Merge pull request #455 from bastelfreak/docs
Browse files Browse the repository at this point in the history
enhance contrib section for gem handling
  • Loading branch information
bastelfreak authored Mar 26, 2018
2 parents 9c380e1 + d885ae0 commit 7e472bf
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions moduleroot/.github/CONTRIBUTING.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,24 @@ you must set an environment variable such as:

export PUPPET_VERSION="~> 4.2.0"

Install the dependencies like so...
You can install all needed gems for spec tests into the modules directory by
running:

bundle install
```sh
bundle install --path .vendor/ --without development --without system_tests --without release
```

If you also want to run acceptance tests:

```sh
bundle install --path .vendor/ --without development --with system_tests --without release
```

Our all in one solution if you don't know if you need to install or update gems:

```sh
bundle install --path .vendor/ --without development --with system_tests --without release; bundle update; bundle clean
```

## Syntax and style

Expand Down

0 comments on commit 7e472bf

Please sign in to comment.