bundler 1.17.0.pre.1 → 1.17.0.pre.2
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 +39 -1
- data/README.md +1 -1
- data/bundler.gemspec +1 -1
- data/lib/bundler.rb +28 -10
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/cli.rb +33 -5
- data/lib/bundler/cli/binstubs.rb +8 -2
- data/lib/bundler/cli/remove.rb +18 -0
- data/lib/bundler/definition.rb +18 -13
- data/lib/bundler/dependency.rb +2 -2
- data/lib/bundler/dsl.rb +18 -2
- data/lib/bundler/endpoint_specification.rb +1 -1
- data/lib/bundler/env.rb +8 -6
- data/lib/bundler/fetcher.rb +1 -1
- data/lib/bundler/gem_helper.rb +1 -1
- data/lib/bundler/injector.rb +156 -8
- data/lib/bundler/installer/gem_installer.rb +1 -1
- data/lib/bundler/installer/parallel_installer.rb +1 -1
- data/lib/bundler/mirror.rb +2 -2
- data/lib/bundler/plugin.rb +5 -5
- data/lib/bundler/plugin/index.rb +1 -1
- data/lib/bundler/resolver/spec_group.rb +0 -4
- data/lib/bundler/runtime.rb +1 -1
- data/lib/bundler/settings.rb +1 -1
- data/lib/bundler/shared_helpers.rb +6 -0
- data/lib/bundler/source/metadata.rb +1 -1
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +4 -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 +1 -1
- data/man/bundle-binstubs.1.txt +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 +1 -1
- data/man/bundle-config.1.txt +1 -1
- data/man/bundle-doctor.1 +1 -1
- data/man/bundle-doctor.1.txt +1 -1
- data/man/bundle-exec.1 +1 -1
- data/man/bundle-exec.1.txt +1 -1
- data/man/bundle-gem.1 +1 -1
- data/man/bundle-gem.1.txt +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 +6 -3
- data/man/bundle-install.1.txt +118 -107
- data/man/bundle-install.ronn +12 -3
- data/man/bundle-list.1 +1 -1
- data/man/bundle-list.1.txt +1 -1
- data/man/bundle-lock.1 +1 -1
- data/man/bundle-lock.1.txt +1 -1
- data/man/bundle-open.1 +1 -1
- data/man/bundle-open.1.txt +1 -1
- data/man/bundle-outdated.1 +1 -1
- data/man/bundle-outdated.1.txt +1 -1
- data/man/bundle-package.1 +1 -1
- data/man/bundle-package.1.txt +1 -1
- 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-remove.1 +31 -0
- data/man/bundle-remove.1.txt +34 -0
- data/man/bundle-remove.ronn +23 -0
- data/man/bundle-show.1 +1 -1
- data/man/bundle-show.1.txt +1 -1
- data/man/bundle-update.1 +11 -7
- data/man/bundle-update.1.txt +71 -68
- data/man/bundle-update.ronn +11 -7
- data/man/bundle-viz.1 +1 -1
- data/man/bundle-viz.1.txt +1 -1
- data/man/bundle.1 +1 -1
- data/man/bundle.1.txt +1 -1
- data/man/gemfile.5 +1 -1
- data/man/gemfile.5.txt +1 -1
- data/man/index.txt +1 -0
- metadata +7 -2
data/man/bundle-update.ronn
CHANGED
@@ -3,7 +3,8 @@ bundle-update(1) -- Update your gems to the latest available versions
|
|
3
3
|
|
4
4
|
## SYNOPSIS
|
5
5
|
|
6
|
-
`bundle update` <*gems> [--
|
6
|
+
`bundle update` <*gems> [--all]
|
7
|
+
[--group=NAME]
|
7
8
|
[--source=NAME]
|
8
9
|
[--local]
|
9
10
|
[--ruby]
|
@@ -18,7 +19,7 @@ bundle-update(1) -- Update your gems to the latest available versions
|
|
18
19
|
|
19
20
|
## DESCRIPTION
|
20
21
|
|
21
|
-
Update the gems specified (all gems, if
|
22
|
+
Update the gems specified (all gems, if `--all` flag is used), ignoring
|
22
23
|
the previously installed gems specified in the `Gemfile.lock`. In
|
23
24
|
general, you should use [bundle install(1)](bundle-install.1.html) to install the same exact
|
24
25
|
gems and versions across machines.
|
@@ -28,6 +29,9 @@ gem.
|
|
28
29
|
|
29
30
|
## OPTIONS
|
30
31
|
|
32
|
+
* `--all`:
|
33
|
+
Update all gems specified in Gemfile.
|
34
|
+
|
31
35
|
* `--group=<name>`, `-g=[<name>]`:
|
32
36
|
Only update the gems in the specified group. For instance, you can update all gems
|
33
37
|
in the development group with `bundle update --group development`. You can also
|
@@ -61,7 +65,7 @@ gem.
|
|
61
65
|
Only output warnings and errors.
|
62
66
|
|
63
67
|
* `--force`:
|
64
|
-
Force downloading every gem.
|
68
|
+
Force downloading every gem. `--redownload` is an alias of this option.
|
65
69
|
|
66
70
|
* `--patch`:
|
67
71
|
Prefer updating only to next patch version.
|
@@ -80,7 +84,7 @@ gem.
|
|
80
84
|
|
81
85
|
## UPDATING ALL GEMS
|
82
86
|
|
83
|
-
If you run `bundle update
|
87
|
+
If you run `bundle update --all`, bundler will ignore
|
84
88
|
any previously installed gems and resolve all dependencies again
|
85
89
|
based on the latest versions of all gems available in the sources.
|
86
90
|
|
@@ -139,10 +143,10 @@ the gems you use.
|
|
139
143
|
However, from time to time, you might want to update the gems you are using to the
|
140
144
|
newest versions that still match the gems in your Gemfile(5).
|
141
145
|
|
142
|
-
To do this, run `bundle update`, which will ignore the `Gemfile.lock`, and resolve
|
146
|
+
To do this, run `bundle update --all`, which will ignore the `Gemfile.lock`, and resolve
|
143
147
|
all the dependencies again. Keep in mind that this process can result in a significantly
|
144
148
|
different set of the 25 gems, based on the requirements of new gems that the gem
|
145
|
-
authors released since the last time you ran `bundle update`.
|
149
|
+
authors released since the last time you ran `bundle update --all`.
|
146
150
|
|
147
151
|
## UPDATING A LIST OF GEMS
|
148
152
|
|
@@ -343,4 +347,4 @@ use the following workflow:
|
|
343
347
|
* If you want to update all the gems to the latest possible versions that
|
344
348
|
still match the gems listed in the Gemfile(5), run
|
345
349
|
|
346
|
-
$ bundle update
|
350
|
+
$ bundle update --all
|
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" "October 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
|
data/man/bundle-viz.1.txt
CHANGED
data/man/bundle.1
CHANGED
data/man/bundle.1.txt
CHANGED
data/man/gemfile.5
CHANGED
data/man/gemfile.5.txt
CHANGED
data/man/index.txt
CHANGED
@@ -19,6 +19,7 @@ bundle-outdated(1) bundle-outdated.1
|
|
19
19
|
bundle-package(1) bundle-package.1
|
20
20
|
bundle-platform(1) bundle-platform.1
|
21
21
|
bundle-pristine(1) bundle-pristine.1
|
22
|
+
bundle-remove(1) bundle-remove.1
|
22
23
|
bundle-show(1) bundle-show.1
|
23
24
|
bundle-update(1) bundle-update.1
|
24
25
|
bundle-viz(1) bundle-viz.1
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.17.0.pre.
|
4
|
+
version: 1.17.0.pre.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Arko
|
@@ -10,6 +10,7 @@ authors:
|
|
10
10
|
- Hiroshi Shibata
|
11
11
|
- David Rodríguez
|
12
12
|
- Grey Baker
|
13
|
+
- Stephanie Morillo
|
13
14
|
- Chris Morris
|
14
15
|
- James Wen
|
15
16
|
- Tim Moore
|
@@ -21,7 +22,7 @@ authors:
|
|
21
22
|
autorequire:
|
22
23
|
bindir: exe
|
23
24
|
cert_chain: []
|
24
|
-
date: 2018-
|
25
|
+
date: 2018-10-13 00:00:00.000000000 Z
|
25
26
|
dependencies:
|
26
27
|
- !ruby/object:Gem::Dependency
|
27
28
|
name: automatiek
|
@@ -152,6 +153,7 @@ files:
|
|
152
153
|
- lib/bundler/cli/platform.rb
|
153
154
|
- lib/bundler/cli/plugin.rb
|
154
155
|
- lib/bundler/cli/pristine.rb
|
156
|
+
- lib/bundler/cli/remove.rb
|
155
157
|
- lib/bundler/cli/show.rb
|
156
158
|
- lib/bundler/cli/update.rb
|
157
159
|
- lib/bundler/cli/viz.rb
|
@@ -397,6 +399,9 @@ files:
|
|
397
399
|
- man/bundle-pristine.1
|
398
400
|
- man/bundle-pristine.1.txt
|
399
401
|
- man/bundle-pristine.ronn
|
402
|
+
- man/bundle-remove.1
|
403
|
+
- man/bundle-remove.1.txt
|
404
|
+
- man/bundle-remove.ronn
|
400
405
|
- man/bundle-show.1
|
401
406
|
- man/bundle-show.1.txt
|
402
407
|
- man/bundle-show.ronn
|