Skip to content

Commit

Permalink
docs: add notes on installing bundler correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
defaye authored Mar 4, 2021
1 parent d1b363f commit cb8ef6d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,24 @@ sudo apt install libssl1.0-dev
rbenv install 2.3.1
```

Note also that the version of bundler used `cat Gemfile.lock` is 1.12.5:

```
BUNDLED WITH
1.12.5
```

So, (if you don't already have 2.3.1 installed) you should install that version:

```
gem install bundler -v 1.12.5
```

If you already have multiple versions of bundler installed, you can specify the version when using it like so:

```
bundle _1.12.5_ install
```

```
$ git clone https://github.com/unepwcmc/grasp
Expand Down

0 comments on commit cb8ef6d

Please sign in to comment.