Update README regarding the use of bundler [ci skip]

This commit is contained in:
Lars Kanis 2018-03-14 10:04:56 +01:00 committed by GitHub
parent 83a59119ea
commit 49a03915a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,8 +49,9 @@ Install pg-ldap-sync and required dependencies:
```sh ```sh
git clone https://github.com/larskanis/pg-ldap-sync.git git clone https://github.com/larskanis/pg-ldap-sync.git
cd pg-ldap-sync cd pg-ldap-sync
bundle gem install bundler
rake install bundle install
bundle exec rake install
``` ```
## USAGE: ## USAGE:
@ -73,7 +74,8 @@ Run in modify-mode:
There is a small test suite in the `test` directory that runs against an internal LDAP server and a PostgreSQL server. Ensure `pg_ctl`, `initdb` and `psql` commands are in the `PATH` like so: There is a small test suite in the `test` directory that runs against an internal LDAP server and a PostgreSQL server. Ensure `pg_ctl`, `initdb` and `psql` commands are in the `PATH` like so:
```sh ```sh
cd pg-ldap-sync cd pg-ldap-sync
PATH=$PATH:/usr/lib/postgresql/10/bin/ rake test bundle install
PATH=$PATH:/usr/lib/postgresql/10/bin/ bundle exec rake test
``` ```
## ISSUES: ## ISSUES: