Skip to content

Commit

Permalink
Merge pull request #57 from voxpupuli/modulesync
Browse files Browse the repository at this point in the history
modulesync 7.4.0
  • Loading branch information
bastelfreak committed Apr 12, 2024
2 parents aeed48b + d2b5c98 commit bb6ef17
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 28 deletions.
16 changes: 13 additions & 3 deletions .github/CONTRIBUTING.md
Expand Up @@ -131,19 +131,29 @@ You can install all needed gems for spec tests into the modules directory by
running:

```sh
bundle install --path .vendor/ --without development system_tests release --jobs "$(nproc)"
bundle config set --local path '.vendor/'
bundle config set --local without 'development system_tests release'
bundle install --jobs "$(nproc)"
```

If you also want to run acceptance tests:

```sh
bundle install --path .vendor/ --with system_tests --without development release --jobs "$(nproc)"
bundle config set --local path '.vendor/'
bundle config set --local without 'development release'
bundle config set --local with 'system_tests'
bundle install --jobs "$(nproc)"
```

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

```sh
bundle install --path .vendor/ --with system_tests --without development release --jobs "$(nproc)"; bundle update; bundle clean
bundle config set --local path '.vendor/'
bundle config set --local without 'development release'
bundle config set --local with 'system_tests'
bundle install --jobs "$(nproc)"
bundle update
bundle clean
```

As an alternative to the `--jobs "$(nproc)` parameter, you can set an
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -21,3 +21,5 @@
.*.sw?
/.yardoc/
/Guardfile
bolt-debug.log
.rerun.json
2 changes: 1 addition & 1 deletion .msync.yml
Expand Up @@ -2,4 +2,4 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

modulesync_config_version: '7.3.0'
modulesync_config_version: '7.4.0'
24 changes: 0 additions & 24 deletions Dockerfile

This file was deleted.

0 comments on commit bb6ef17

Please sign in to comment.