bundler 1.16.2 → 1.16.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bundler might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/lib/bundler.rb +8 -5
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/current_ruby.rb +1 -0
- data/lib/bundler/installer/gem_installer.rb +5 -3
- data/lib/bundler/process_lock.rb +1 -1
- data/lib/bundler/shared_helpers.rb +13 -2
- data/lib/bundler/source/rubygems.rb +6 -2
- data/lib/bundler/source/rubygems/remote.rb +4 -1
- data/lib/bundler/templates/newgem/travis.yml.tt +2 -0
- data/lib/bundler/version.rb +1 -1
- data/man/bundle-add.1 +1 -1
- data/man/bundle-add.1.txt +1 -1
- data/man/bundle-binstubs.1 +2 -2
- data/man/bundle-binstubs.1.txt +2 -2
- data/man/bundle-binstubs.ronn +1 -1
- data/man/bundle-check.1 +1 -1
- data/man/bundle-check.1.txt +1 -1
- data/man/bundle-clean.1 +1 -1
- data/man/bundle-clean.1.txt +1 -1
- data/man/bundle-config.1 +4 -4
- data/man/bundle-config.1.txt +11 -11
- data/man/bundle-config.ronn +4 -4
- data/man/bundle-doctor.1 +1 -1
- data/man/bundle-doctor.1.txt +1 -1
- data/man/bundle-exec.1 +3 -3
- data/man/bundle-exec.1.txt +7 -7
- data/man/bundle-exec.ronn +2 -2
- data/man/bundle-gem.1 +2 -2
- data/man/bundle-gem.1.txt +2 -2
- data/man/bundle-gem.ronn +1 -1
- data/man/bundle-info.1 +1 -1
- data/man/bundle-info.1.txt +1 -1
- data/man/bundle-init.1 +1 -1
- data/man/bundle-init.1.txt +1 -1
- data/man/bundle-inject.1 +1 -1
- data/man/bundle-inject.1.txt +1 -1
- data/man/bundle-install.1 +2 -2
- data/man/bundle-install.1.txt +2 -2
- data/man/bundle-install.ronn +1 -1
- data/man/bundle-list.1 +1 -1
- data/man/bundle-list.1.txt +1 -1
- data/man/bundle-lock.1 +2 -2
- data/man/bundle-lock.1.txt +2 -2
- data/man/bundle-lock.ronn +1 -1
- data/man/bundle-open.1 +1 -1
- data/man/bundle-open.1.txt +1 -1
- data/man/bundle-outdated.1 +2 -2
- data/man/bundle-outdated.1.txt +2 -2
- data/man/bundle-outdated.ronn +1 -1
- data/man/bundle-package.1 +3 -3
- data/man/bundle-package.1.txt +6 -6
- data/man/bundle-package.ronn +3 -3
- data/man/bundle-platform.1 +1 -1
- data/man/bundle-platform.1.txt +1 -1
- data/man/bundle-pristine.1 +1 -1
- data/man/bundle-pristine.1.txt +1 -1
- data/man/bundle-show.1 +1 -1
- data/man/bundle-show.1.txt +1 -1
- data/man/bundle-update.1 +8 -8
- data/man/bundle-update.1.txt +62 -61
- data/man/bundle-update.ronn +8 -8
- data/man/bundle-viz.1 +2 -2
- data/man/bundle-viz.1.txt +3 -3
- data/man/bundle-viz.ronn +1 -1
- data/man/bundle.1 +19 -19
- data/man/bundle.1.txt +19 -19
- data/man/bundle.ronn +18 -18
- data/man/gemfile.5 +9 -3
- data/man/gemfile.5.ronn +15 -2
- data/man/gemfile.5.txt +36 -23
- metadata +3 -3
data/man/bundle-update.1.txt
CHANGED
@@ -13,7 +13,7 @@ SYNOPSIS
|
|
13
13
|
DESCRIPTION
|
14
14
|
Update the gems specified (all gems, if none are specified), ignoring
|
15
15
|
the previously installed gems specified in the Gemfile.lock. In gen-
|
16
|
-
eral,
|
16
|
+
eral, you should use bundle install(1) bundle-install.1.html to install
|
17
17
|
the same exact gems and versions across machines.
|
18
18
|
|
19
19
|
You would use bundle update to explicitly update the version of a gem.
|
@@ -91,7 +91,7 @@ UPDATING ALL GEMS
|
|
91
91
|
|
92
92
|
|
93
93
|
|
94
|
-
When you run
|
94
|
+
When you run bundle install(1) bundle-install.1.html the first time,
|
95
95
|
bundler will resolve all of the dependencies, all the way down, and
|
96
96
|
install what you need:
|
97
97
|
|
@@ -134,39 +134,40 @@ UPDATING ALL GEMS
|
|
134
134
|
As you can see, even though you have two gems in the Gemfile(5), your
|
135
135
|
application needs 26 different gems in order to run. Bundler remembers
|
136
136
|
the exact versions it installed in Gemfile.lock. The next time you run
|
137
|
-
|
137
|
+
bundle install(1) bundle-install.1.html, bundler skips the dependency
|
138
138
|
resolution and installs the same gems as it installed last time.
|
139
139
|
|
140
140
|
After checking in the Gemfile.lock into version control and cloning it
|
141
|
-
on
|
142
|
-
still install the gems that you installed
|
143
|
-
worry that a new release of erubis or mail changes the gems you
|
141
|
+
on another machine, running bundle install(1) bundle-install.1.html
|
142
|
+
will still install the gems that you installed last time. You don't
|
143
|
+
need to worry that a new release of erubis or mail changes the gems you
|
144
|
+
use.
|
144
145
|
|
145
|
-
However,
|
146
|
-
using
|
146
|
+
However, from time to time, you might want to update the gems you are
|
147
|
+
using to the newest versions that still match the gems in your Gem-
|
147
148
|
file(5).
|
148
149
|
|
149
|
-
To
|
150
|
-
resolve
|
151
|
-
result
|
152
|
-
requirements
|
150
|
+
To do this, run bundle update, which will ignore the Gemfile.lock, and
|
151
|
+
resolve all the dependencies again. Keep in mind that this process can
|
152
|
+
result in a significantly different set of the 25 gems, based on the
|
153
|
+
requirements of new gems that the gem authors released since the last
|
153
154
|
time you ran bundle update.
|
154
155
|
|
155
156
|
UPDATING A LIST OF GEMS
|
156
157
|
Sometimes, you want to update a single gem in the Gemfile(5), and leave
|
157
|
-
the
|
158
|
+
the rest of the gems that you specified locked to the versions in the
|
158
159
|
Gemfile.lock.
|
159
160
|
|
160
|
-
For
|
161
|
+
For instance, in the scenario above, imagine that nokogiri releases
|
161
162
|
version 1.4.4, and you want to update it without updating Rails and all
|
162
163
|
of its dependencies. To do this, run bundle update nokogiri.
|
163
164
|
|
164
|
-
Bundler
|
165
|
+
Bundler will update nokogiri and any of its dependencies, but leave
|
165
166
|
alone Rails and its dependencies.
|
166
167
|
|
167
168
|
OVERLAPPING DEPENDENCIES
|
168
|
-
Sometimes,
|
169
|
-
the
|
169
|
+
Sometimes, multiple gems declared in your Gemfile(5) are satisfied by
|
170
|
+
the same second-level dependency. For instance, consider the case of
|
170
171
|
thin and rack-perftools-profiler.
|
171
172
|
|
172
173
|
|
@@ -178,7 +179,7 @@ OVERLAPPING DEPENDENCIES
|
|
178
179
|
|
179
180
|
|
180
181
|
|
181
|
-
The
|
182
|
+
The thin gem depends on rack >= 1.0, while rack-perftools-profiler
|
182
183
|
depends on rack ~> 1.0. If you run bundle install, you get:
|
183
184
|
|
184
185
|
|
@@ -196,32 +197,32 @@ OVERLAPPING DEPENDENCIES
|
|
196
197
|
|
197
198
|
|
198
199
|
In this case, the two gems have their own set of dependencies, but they
|
199
|
-
share
|
200
|
-
update
|
201
|
-
but
|
202
|
-
rack-perftools_profiler.
|
200
|
+
share rack in common. If you run bundle update thin, bundler will
|
201
|
+
update daemons, eventmachine and rack, which are dependencies of thin,
|
202
|
+
but not open4 or perftools.rb, which are dependencies of
|
203
|
+
rack-perftools_profiler. Note that bundle update thin will update rack
|
203
204
|
even though it's also a dependency of rack-perftools_profiler.
|
204
205
|
|
205
|
-
In
|
206
|
-
bundler
|
206
|
+
In short, by default, when you update a gem using bundle update,
|
207
|
+
bundler will update all dependencies of that gem, including those that
|
207
208
|
are also dependencies of another gem.
|
208
209
|
|
209
210
|
To prevent updating shared dependencies, prior to version 1.14 the only
|
210
|
-
option
|
211
|
-
|
211
|
+
option was the CONSERVATIVE UPDATING behavior in bundle install(1) bun-
|
212
|
+
dle-install.1.html:
|
212
213
|
|
213
214
|
In this scenario, updating the thin version manually in the Gemfile(5),
|
214
|
-
and
|
215
|
-
update
|
216
|
-
see the CONSERVATIVE UPDATING section of
|
217
|
-
dle-install
|
215
|
+
and then running bundle install(1) bundle-install.1.html will only
|
216
|
+
update daemons and eventmachine, but not rack. For more information,
|
217
|
+
see the CONSERVATIVE UPDATING section of bundle install(1) bun-
|
218
|
+
dle-install.1.html.
|
218
219
|
|
219
220
|
Starting with 1.14, specifying the --conservative option will also pre-
|
220
221
|
vent shared dependencies from being updated.
|
221
222
|
|
222
223
|
PATCH LEVEL OPTIONS
|
223
|
-
Version
|
224
|
-
gem
|
224
|
+
Version 1.14 introduced 4 patch-level options that will influence how
|
225
|
+
gem versions are resolved. One of the following options can be used:
|
225
226
|
--patch, --minor or --major. --strict can be added to further influence
|
226
227
|
resolution.
|
227
228
|
|
@@ -238,41 +239,41 @@ PATCH LEVEL OPTIONS
|
|
238
239
|
Do not allow any gem to be updated past latest --patch | --minor
|
239
240
|
| --major.
|
240
241
|
|
241
|
-
When
|
242
|
-
requirements
|
242
|
+
When Bundler is resolving what versions to use to satisfy declared
|
243
|
+
requirements in the Gemfile or in parent gems, it looks up all avail-
|
243
244
|
able versions, filters out any versions that don't satisfy the require-
|
244
245
|
ment, and then, by default, sorts them from newest to oldest, consider-
|
245
246
|
ing them in that order.
|
246
247
|
|
247
|
-
Providing
|
248
|
-
sort
|
248
|
+
Providing one of the patch level options (e.g. --patch) changes the
|
249
|
+
sort order of the satisfying versions, causing Bundler to consider the
|
249
250
|
latest --patch or --minor version available before other versions. Note
|
250
251
|
that versions outside the stated patch level could still be resolved to
|
251
252
|
if necessary to find a suitable dependency graph.
|
252
253
|
|
253
|
-
For
|
254
|
-
defined
|
254
|
+
For example, if gem 'foo' is locked at 1.0.2, with no gem requirement
|
255
|
+
defined in the Gemfile, and versions 1.0.3, 1.0.4, 1.1.0, 1.1.1, 2.0.0
|
255
256
|
all exist, the default order of preference by default (--major) will be
|
256
257
|
"2.0.0, 1.1.1, 1.1.0, 1.0.4, 1.0.3, 1.0.2".
|
257
258
|
|
258
|
-
If
|
259
|
+
If the --patch option is used, the order of preference will change to
|
259
260
|
"1.0.4, 1.0.3, 1.0.2, 1.1.1, 1.1.0, 2.0.0".
|
260
261
|
|
261
|
-
If
|
262
|
+
If the --minor option is used, the order of preference will change to
|
262
263
|
"1.1.1, 1.1.0, 1.0.4, 1.0.3, 1.0.2, 2.0.0".
|
263
264
|
|
264
|
-
Combining
|
265
|
-
remove
|
265
|
+
Combining the --strict option with any of the patch level options will
|
266
|
+
remove any versions beyond the scope of the patch level option, to
|
266
267
|
ensure that no gem is updated that far.
|
267
268
|
|
268
|
-
To
|
269
|
+
To continue the previous example, if both --patch and --strict options
|
269
270
|
are used, the available versions for resolution would be "1.0.4, 1.0.3,
|
270
|
-
1.0.2".
|
271
|
+
1.0.2". If --minor and --strict are used, it would be "1.1.1, 1.1.0,
|
271
272
|
1.0.4, 1.0.3, 1.0.2".
|
272
273
|
|
273
|
-
Gem
|
274
|
+
Gem requirements as defined in the Gemfile will still be the first
|
274
275
|
determining factor for what versions are available. If the gem require-
|
275
|
-
ment
|
276
|
+
ment for foo in the Gemfile is '~> 1.0', that will accomplish the same
|
276
277
|
thing as providing the --minor and --strict options.
|
277
278
|
|
278
279
|
PATCH LEVEL EXAMPLES
|
@@ -321,26 +322,26 @@ PATCH LEVEL EXAMPLES
|
|
321
322
|
|
322
323
|
|
323
324
|
|
324
|
-
In
|
325
|
+
In case 1, bar is upgraded to 2.1.1, a minor version increase, because
|
325
326
|
the dependency from foo 1.4.5 required it.
|
326
327
|
|
327
|
-
In
|
328
|
-
allowed
|
328
|
+
In case 2, only foo is requested to be unlocked, but bar is also
|
329
|
+
allowed to move because it's not a declared dependency in the Gemfile.
|
329
330
|
|
330
|
-
In
|
331
|
-
is
|
331
|
+
In case 3, bar goes up a whole major release, because a minor increase
|
332
|
+
is preferred now for foo, and when it goes to 1.5.1, it requires 3.0.0
|
332
333
|
of bar.
|
333
334
|
|
334
335
|
In case 4, foo is preferred up to a minor version, but 1.5.1 won't work
|
335
|
-
because
|
336
|
+
because the --strict flag removes bar 3.0.0 from consideration since
|
336
337
|
it's a major increment.
|
337
338
|
|
338
|
-
In
|
339
|
-
from
|
339
|
+
In case 5, both foo and bar have any minor or major increments removed
|
340
|
+
from consideration because of the --strict flag, so the most they can
|
340
341
|
move is up to 1.4.4 and 2.0.4.
|
341
342
|
|
342
343
|
RECOMMENDED WORKFLOW
|
343
|
-
In
|
344
|
+
In general, when working with an application managed with bundler, you
|
344
345
|
should use the following workflow:
|
345
346
|
|
346
347
|
o After you create your Gemfile(5) for the first time, run
|
@@ -351,7 +352,7 @@ RECOMMENDED WORKFLOW
|
|
351
352
|
|
352
353
|
$ git add Gemfile.lock
|
353
354
|
|
354
|
-
o When
|
355
|
+
o When checking out this repository on another development machine,
|
355
356
|
run
|
356
357
|
|
357
358
|
$ bundle install
|
@@ -360,7 +361,7 @@ RECOMMENDED WORKFLOW
|
|
360
361
|
|
361
362
|
$ bundle install --deployment
|
362
363
|
|
363
|
-
o After
|
364
|
+
o After changing the Gemfile(5) to reflect a new or update depen-
|
364
365
|
dency, run
|
365
366
|
|
366
367
|
$ bundle install
|
@@ -369,12 +370,12 @@ RECOMMENDED WORKFLOW
|
|
369
370
|
|
370
371
|
$ git add Gemfile.lock
|
371
372
|
|
372
|
-
o If
|
373
|
-
|
373
|
+
o If bundle install(1) bundle-install.1.html reports a conflict, man-
|
374
|
+
ually update the specific gems that you changed in the Gemfile(5)
|
374
375
|
|
375
376
|
$ bundle update rails thin
|
376
377
|
|
377
|
-
o If
|
378
|
+
o If you want to update all the gems to the latest possible versions
|
378
379
|
that still match the gems listed in the Gemfile(5), run
|
379
380
|
|
380
381
|
$ bundle update
|
@@ -384,4 +385,4 @@ RECOMMENDED WORKFLOW
|
|
384
385
|
|
385
386
|
|
386
387
|
|
387
|
-
|
388
|
+
July 2018 BUNDLE-UPDATE(1)
|
data/man/bundle-update.ronn
CHANGED
@@ -20,7 +20,7 @@ bundle-update(1) -- Update your gems to the latest available versions
|
|
20
20
|
|
21
21
|
Update the gems specified (all gems, if none are specified), ignoring
|
22
22
|
the previously installed gems specified in the `Gemfile.lock`. In
|
23
|
-
general, you should use [bundle install(1)]
|
23
|
+
general, you should use [bundle install(1)](bundle-install.1.html) to install the same exact
|
24
24
|
gems and versions across machines.
|
25
25
|
|
26
26
|
You would use `bundle update` to explicitly update the version of a
|
@@ -91,7 +91,7 @@ Consider the following Gemfile(5):
|
|
91
91
|
gem "rails", "3.0.0.rc"
|
92
92
|
gem "nokogiri"
|
93
93
|
|
94
|
-
When you run [bundle install(1)]
|
94
|
+
When you run [bundle install(1)](bundle-install.1.html) the first time, bundler will resolve
|
95
95
|
all of the dependencies, all the way down, and install what you need:
|
96
96
|
|
97
97
|
Fetching gem metadata from https://rubygems.org/.........
|
@@ -128,11 +128,11 @@ all of the dependencies, all the way down, and install what you need:
|
|
128
128
|
|
129
129
|
As you can see, even though you have two gems in the Gemfile(5), your application
|
130
130
|
needs 26 different gems in order to run. Bundler remembers the exact versions
|
131
|
-
it installed in `Gemfile.lock`. The next time you run [bundle install(1)]
|
131
|
+
it installed in `Gemfile.lock`. The next time you run [bundle install(1)](bundle-install.1.html), bundler skips
|
132
132
|
the dependency resolution and installs the same gems as it installed last time.
|
133
133
|
|
134
134
|
After checking in the `Gemfile.lock` into version control and cloning it on another
|
135
|
-
machine, running [bundle install(1)]
|
135
|
+
machine, running [bundle install(1)](bundle-install.1.html) will _still_ install the gems that you installed
|
136
136
|
last time. You don't need to worry that a new release of `erubis` or `mail` changes
|
137
137
|
the gems you use.
|
138
138
|
|
@@ -192,12 +192,12 @@ update all dependencies of that gem, including those that are also dependencies
|
|
192
192
|
of another gem.
|
193
193
|
|
194
194
|
To prevent updating shared dependencies, prior to version 1.14 the only option
|
195
|
-
was the `CONSERVATIVE UPDATING` behavior in [bundle install(1)]
|
195
|
+
was the `CONSERVATIVE UPDATING` behavior in [bundle install(1)](bundle-install.1.html):
|
196
196
|
|
197
197
|
In this scenario, updating the `thin` version manually in the Gemfile(5),
|
198
|
-
and then running [bundle install(1)]
|
198
|
+
and then running [bundle install(1)](bundle-install.1.html) will only update `daemons` and `eventmachine`,
|
199
199
|
but not `rack`. For more information, see the `CONSERVATIVE UPDATING` section
|
200
|
-
of [bundle install(1)]
|
200
|
+
of [bundle install(1)](bundle-install.1.html).
|
201
201
|
|
202
202
|
Starting with 1.14, specifying the `--conservative` option will also prevent shared
|
203
203
|
dependencies from being updated.
|
@@ -335,7 +335,7 @@ use the following workflow:
|
|
335
335
|
|
336
336
|
$ git add Gemfile.lock
|
337
337
|
|
338
|
-
* If [bundle install(1)]
|
338
|
+
* If [bundle install(1)](bundle-install.1.html) reports a conflict, manually update the specific
|
339
339
|
gems that you changed in the Gemfile(5)
|
340
340
|
|
341
341
|
$ bundle update rails thin
|
data/man/bundle-viz.1
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "BUNDLE\-VIZ" "1" "
|
4
|
+
.TH "BUNDLE\-VIZ" "1" "July 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
|
@@ -13,7 +13,7 @@
|
|
13
13
|
\fBviz\fR generates a PNG file of the current \fBGemfile(5)\fR as a dependency graph\. \fBviz\fR requires the ruby\-graphviz gem (and its dependencies)\.
|
14
14
|
.
|
15
15
|
.P
|
16
|
-
The associated gems must also be installed via
|
16
|
+
The associated gems must also be installed via \fBbundle install(1)\fR \fIbundle\-install\.1\.html\fR\.
|
17
17
|
.
|
18
18
|
.SH "OPTIONS"
|
19
19
|
.
|
data/man/bundle-viz.1.txt
CHANGED
@@ -13,8 +13,8 @@ DESCRIPTION
|
|
13
13
|
viz generates a PNG file of the current Gemfile(5) as a dependency
|
14
14
|
graph. viz requires the ruby-graphviz gem (and its dependencies).
|
15
15
|
|
16
|
-
The
|
17
|
-
dle-install
|
16
|
+
The associated gems must also be installed via bundle install(1) bun-
|
17
|
+
dle-install.1.html.
|
18
18
|
|
19
19
|
OPTIONS
|
20
20
|
--file, -f
|
@@ -36,4 +36,4 @@ OPTIONS
|
|
36
36
|
|
37
37
|
|
38
38
|
|
39
|
-
|
39
|
+
July 2018 BUNDLE-VIZ(1)
|
data/man/bundle-viz.ronn
CHANGED
@@ -14,7 +14,7 @@ bundle-viz(1) -- Generates a visual dependency graph for your Gemfile
|
|
14
14
|
`viz` generates a PNG file of the current `Gemfile(5)` as a dependency graph.
|
15
15
|
`viz` requires the ruby-graphviz gem (and its dependencies).
|
16
16
|
|
17
|
-
The associated gems must also be installed via [`bundle install(1)`]
|
17
|
+
The associated gems must also be installed via [`bundle install(1)`](bundle-install.1.html).
|
18
18
|
|
19
19
|
## OPTIONS
|
20
20
|
|
data/man/bundle.1
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "BUNDLE" "1" "
|
4
|
+
.TH "BUNDLE" "1" "July 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\fR \- Ruby Dependency Management
|
@@ -35,23 +35,23 @@ We divide \fBbundle\fR subcommands into primary commands and utilities:
|
|
35
35
|
.SH "PRIMARY COMMANDS"
|
36
36
|
.
|
37
37
|
.TP
|
38
|
-
|
38
|
+
\fBbundle install(1)\fR \fIbundle\-install\.1\.html\fR
|
39
39
|
Install the gems specified by the \fBGemfile\fR or \fBGemfile\.lock\fR
|
40
40
|
.
|
41
41
|
.TP
|
42
|
-
|
42
|
+
\fBbundle update(1)\fR \fIbundle\-update\.1\.html\fR
|
43
43
|
Update dependencies to their latest versions
|
44
44
|
.
|
45
45
|
.TP
|
46
|
-
|
46
|
+
\fBbundle package(1)\fR \fIbundle\-package\.1\.html\fR
|
47
47
|
Package the \.gem files required by your application into the \fBvendor/cache\fR directory
|
48
48
|
.
|
49
49
|
.TP
|
50
|
-
|
50
|
+
\fBbundle exec(1)\fR \fIbundle\-exec\.1\.html\fR
|
51
51
|
Execute a script in the current bundle
|
52
52
|
.
|
53
53
|
.TP
|
54
|
-
|
54
|
+
\fBbundle config(1)\fR \fIbundle\-config\.1\.html\fR
|
55
55
|
Specify and read configuration options for Bundler
|
56
56
|
.
|
57
57
|
.TP
|
@@ -61,23 +61,23 @@ Display detailed help for each subcommand
|
|
61
61
|
.SH "UTILITIES"
|
62
62
|
.
|
63
63
|
.TP
|
64
|
-
|
64
|
+
\fBbundle add(1)\fR \fIbundle\-add\.1\.html\fR
|
65
65
|
Add the named gem to the Gemfile and run \fBbundle install\fR
|
66
66
|
.
|
67
67
|
.TP
|
68
|
-
|
68
|
+
\fBbundle binstubs(1)\fR \fIbundle\-binstubs\.1\.html\fR
|
69
69
|
Generate binstubs for executables in a gem
|
70
70
|
.
|
71
71
|
.TP
|
72
|
-
|
72
|
+
\fBbundle check(1)\fR \fIbundle\-check\.1\.html\fR
|
73
73
|
Determine whether the requirements for your application are installed and available to Bundler
|
74
74
|
.
|
75
75
|
.TP
|
76
|
-
|
76
|
+
\fBbundle show(1)\fR \fIbundle\-show\.1\.html\fR
|
77
77
|
Show the source location of a particular gem in the bundle
|
78
78
|
.
|
79
79
|
.TP
|
80
|
-
|
80
|
+
\fBbundle outdated(1)\fR \fIbundle\-outdated\.1\.html\fR
|
81
81
|
Show all of the outdated gems in the current bundle
|
82
82
|
.
|
83
83
|
.TP
|
@@ -85,35 +85,35 @@ Show all of the outdated gems in the current bundle
|
|
85
85
|
Start an IRB session in the current bundle
|
86
86
|
.
|
87
87
|
.TP
|
88
|
-
|
88
|
+
\fBbundle open(1)\fR \fIbundle\-open\.1\.html\fR
|
89
89
|
Open an installed gem in the editor
|
90
90
|
.
|
91
91
|
.TP
|
92
|
-
|
92
|
+
\fBbundle lock(1)\fR \fIbundle\-lock\.1\.hmtl\fR
|
93
93
|
Generate a lockfile for your dependencies
|
94
94
|
.
|
95
95
|
.TP
|
96
|
-
|
96
|
+
\fBbundle viz(1)\fR \fIbundle\-viz\.1\.html\fR
|
97
97
|
Generate a visual representation of your dependencies
|
98
98
|
.
|
99
99
|
.TP
|
100
|
-
|
100
|
+
\fBbundle init(1)\fR \fIbundle\-init\.1\.html\fR
|
101
101
|
Generate a simple \fBGemfile\fR, placed in the current directory
|
102
102
|
.
|
103
103
|
.TP
|
104
|
-
|
104
|
+
\fBbundle gem(1)\fR \fIbundle\-gem\.1\.html\fR
|
105
105
|
Create a simple gem, suitable for development with Bundler
|
106
106
|
.
|
107
107
|
.TP
|
108
|
-
|
108
|
+
\fBbundle platform(1)\fR \fIbundle\-platform\.1\.html\fR
|
109
109
|
Display platform compatibility information
|
110
110
|
.
|
111
111
|
.TP
|
112
|
-
|
112
|
+
\fBbundle clean(1)\fR \fIbundle\-clean\.1\.html\fR
|
113
113
|
Clean up unused gems in your Bundler directory
|
114
114
|
.
|
115
115
|
.TP
|
116
|
-
\fBbundle doctor(1)\fR
|
116
|
+
\fBbundle doctor(1)\fR \fIbundle\-doctor\.1\.html\fR
|
117
117
|
Display warnings about common problems
|
118
118
|
.
|
119
119
|
.SH "PLUGINS"
|