Skip to main content

Explain Gemfile and Gemfile.lock

Bundler allow you to specify exactly which third party software is required to run your program.

Gemfile will list
- all the dependencies/third party program required to run your program.
- where to source those gems


Gemfile.lock will list the exact version of the third party softwarre
Gemfile.lock will be generated the first time you run 'bundle install'

Comments