Bundler Flashcards
1
Q
What is Bundler?
A
A gem to manage the dependencies of a project (gem) in a structured way.
2
Q
Gemfile
A
Gemfile contains the list of dependencies of a project (gem).
3
Q
Installing dependencies with Bundler
A
bundle install
This will install the dependencies specified by Gemfile.
4
Q
Locating a bundled gem
A
bundle show gem_name
5
Q
Ensuring the right versions are loaded
A
The statement; require ‘bundler/setup’, ensures that the right versions are loaded.