Fix broken gem instructions.

Signed-off-by: John Harris <john@johnharris.io>
Upstream-commit: 7f2a2b22fc1e81fc366531af1f598af563b96e09
Component: engine
This commit is contained in:
johnharris85
2016-07-17 10:58:06 -07:00
parent 0a6571e2e9
commit 8c1cecb625

View File

@ -187,9 +187,13 @@ you'd like to update.
> Take note of the container ID that has been created, `0b2616b0e5a8`, as you'll
> need it in a moment.
Inside our running container let's add the `json` gem.
Inside our running container first let's update Ruby:
root@0b2616b0e5a8:/# gem install json
root@0b2616b0e5a8:/# apt-get install -y ruby2.0-dev
Now let's add the `json` gem.
root@0b2616b0e5a8:/# gem2.0 install json
Once this has completed let's exit our container using the `exit`
command.