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 26, 2018
1 parent 2a7fc88 commit 8feaf21
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 8feaf21

Please sign in to comment.