Skip to content

Commit

Permalink
Fixed line number in link THE GEMFILE.LOCK section
Browse files Browse the repository at this point in the history
  • Loading branch information
x3rAx committed Jul 31, 2014
1 parent 389d6c1 commit 8efcd0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gem-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The benefit of putting this dependency specification inside of _foodie.gemspec_

When we run `bundle install`, rspec will be installed for this library and any other library we use with Bundler, but not for the system. This is an important distinction to make: any gem installed by Bundler will not muck about with gems installed by `gem install`. It is effectively a sandboxed environment. It is best practice to use Bundler to manage our gems so that we do not have gem version conflicts.

By running `bundle install`, Bundler will generate the **extremely important** _Gemfile.lock_ file. This file is responsible for ensuring that every system this library is developed on has the *exact same* gems so it should always be checked into version control. For more information on this file [read "THE GEMFILE.LOCK" section of the `bundle install` manpage](https://github.com/carlhuda/bundler/blob/1-0-stable/man/bundle-install.ronn#L226-246).
By running `bundle install`, Bundler will generate the **extremely important** _Gemfile.lock_ file. This file is responsible for ensuring that every system this library is developed on has the *exact same* gems so it should always be checked into version control. For more information on this file [read "THE GEMFILE.LOCK" section of the `bundle install` manpage](https://github.com/carlhuda/bundler/blob/1-0-stable/man/bundle-install.ronn#L233-L253).

Additionally in the `bundle install` output, we will see this line:

Expand Down

0 comments on commit 8efcd0c

Please sign in to comment.