From a5086e14cd0e42718b027da1c3379aa22d811b54 Mon Sep 17 00:00:00 2001 From: Eduardo Bautista Date: Wed, 8 Apr 2015 21:55:37 -0500 Subject: [PATCH] Mention version of Bundler that is being used --- gem-development.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gem-development.md b/gem-development.md index 4d4ffb3..56370d1 100644 --- a/gem-development.md +++ b/gem-development.md @@ -12,6 +12,12 @@ Also: Sharing is caring. ## Getting Started +This guide was made using version 1.9.0 of bundler. We can follow along with other versions, but we might not get the exact same output. To check which version of bundler we currently have, lets run the following command: + + bundle -v + +We should see something close to `Bundler version 1.9.0`. If necessary, we can update to the newest version of Bundler by running `gem update bundler`. + To begin to create a gem using Bundler, use the `bundle gem` command like this: bundle gem foodie