Skip to content

Commit

Permalink
enhance contrib section for gem handling
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Mar 18, 2018
1 parent 2a7fc88 commit ab9a389
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions moduleroot/.github/CONTRIBUTING.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,18 @@ 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; bundle update; bundle clean
```

If you also want to run acceptance tests:

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

## Syntax and style

Expand Down

0 comments on commit ab9a389

Please sign in to comment.