Bundler Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is Bundler?

A

A gem to manage the dependencies of a project (gem) in a structured way.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Gemfile

A

Gemfile contains the list of dependencies of a project (gem).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Installing dependencies with Bundler

A

bundle install

This will install the dependencies specified by Gemfile.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Locating a bundled gem

A

bundle show gem_name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Ensuring the right versions are loaded

A

The statement; require ‘bundler/setup’, ensures that the right versions are loaded.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly