bundler 2.1.0 → 2.2.0.rc.1
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 +832 -738
- data/README.md +6 -8
- data/bundler.gemspec +3 -3
- data/exe/bundle +3 -0
- data/lib/bundler.rb +15 -4
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/cli.rb +32 -11
- data/lib/bundler/cli/console.rb +1 -1
- data/lib/bundler/cli/exec.rb +3 -12
- data/lib/bundler/cli/gem.rb +83 -10
- data/lib/bundler/cli/info.rb +13 -3
- data/lib/bundler/cli/init.rb +1 -1
- data/lib/bundler/cli/install.rb +8 -16
- data/lib/bundler/cli/issue.rb +2 -2
- data/lib/bundler/cli/list.rb +11 -9
- data/lib/bundler/cli/outdated.rb +88 -65
- data/lib/bundler/cli/plugin.rb +10 -0
- data/lib/bundler/cli/pristine.rb +5 -0
- data/lib/bundler/definition.rb +32 -32
- data/lib/bundler/dependency.rb +0 -9
- data/lib/bundler/dsl.rb +1 -5
- data/lib/bundler/environment_preserver.rb +26 -2
- data/lib/bundler/errors.rb +1 -0
- data/lib/bundler/feature_flag.rb +0 -2
- data/lib/bundler/fetcher.rb +1 -0
- data/lib/bundler/friendly_errors.rb +4 -10
- data/lib/bundler/gem_helper.rb +18 -12
- data/lib/bundler/gem_version_promoter.rb +1 -1
- data/lib/bundler/injector.rb +14 -3
- data/lib/bundler/inline.rb +2 -2
- data/lib/bundler/installer.rb +29 -28
- data/lib/bundler/installer/gem_installer.rb +2 -2
- data/lib/bundler/installer/parallel_installer.rb +9 -9
- data/lib/bundler/lazy_specification.rb +16 -3
- data/lib/bundler/plugin.rb +26 -0
- data/lib/bundler/plugin/index.rb +9 -0
- data/lib/bundler/psyched_yaml.rb +0 -15
- data/lib/bundler/remote_specification.rb +4 -1
- data/lib/bundler/resolver.rb +31 -8
- data/lib/bundler/resolver/spec_group.rb +26 -5
- data/lib/bundler/rubygems_ext.rb +7 -8
- data/lib/bundler/rubygems_gem_installer.rb +1 -7
- data/lib/bundler/rubygems_integration.rb +13 -48
- data/lib/bundler/runtime.rb +2 -12
- data/lib/bundler/settings.rb +0 -3
- data/lib/bundler/setup.rb +5 -0
- data/lib/bundler/shared_helpers.rb +1 -1
- data/lib/bundler/source/git.rb +4 -4
- data/lib/bundler/source/git/git_proxy.rb +53 -58
- data/lib/bundler/source/path.rb +5 -1
- data/lib/bundler/source/path/installer.rb +7 -9
- data/lib/bundler/source/rubygems.rb +11 -14
- data/lib/bundler/stub_specification.rb +16 -4
- data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
- data/lib/bundler/templates/newgem/Gemfile.tt +9 -1
- data/lib/bundler/templates/newgem/Rakefile.tt +19 -5
- data/lib/bundler/templates/newgem/bin/console.tt +2 -0
- data/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
- data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
- data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
- data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +6 -4
- data/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
- data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
- data/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
- data/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
- data/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
- data/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +72 -208
- data/lib/bundler/vendor/thor/lib/thor.rb +0 -7
- data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
- data/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
- data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/lib/bundler/version.rb +1 -1
- data/man/bundle-add.1 +1 -1
- data/man/bundle-add.1.txt +15 -15
- data/man/bundle-binstubs.1 +1 -1
- data/man/bundle-binstubs.1.txt +10 -10
- data/man/bundle-cache.1 +1 -1
- data/man/bundle-cache.1.txt +15 -15
- data/man/bundle-check.1 +1 -1
- data/man/bundle-check.1.txt +8 -8
- data/man/bundle-clean.1 +1 -1
- data/man/bundle-clean.1.txt +6 -6
- data/man/bundle-config.1 +3 -9
- data/man/bundle-config.1.txt +271 -272
- data/man/bundle-config.ronn +5 -9
- data/man/bundle-doctor.1 +1 -1
- data/man/bundle-doctor.1.txt +9 -9
- data/man/bundle-exec.1 +1 -1
- data/man/bundle-exec.1.txt +84 -81
- data/man/bundle-gem.1 +25 -3
- data/man/bundle-gem.1.txt +65 -39
- data/man/bundle-gem.ronn +30 -7
- data/man/bundle-info.1 +1 -1
- data/man/bundle-info.1.txt +2 -2
- data/man/bundle-init.1 +1 -1
- data/man/bundle-init.1.txt +9 -9
- data/man/bundle-inject.1 +1 -1
- data/man/bundle-inject.1.txt +4 -4
- data/man/bundle-install.1 +1 -1
- data/man/bundle-install.1.txt +169 -169
- data/man/bundle-list.1 +7 -7
- data/man/bundle-list.1.txt +12 -11
- data/man/bundle-list.ronn +6 -6
- data/man/bundle-lock.1 +1 -1
- data/man/bundle-lock.1.txt +28 -28
- data/man/bundle-open.1 +1 -1
- data/man/bundle-open.1.txt +3 -3
- data/man/bundle-outdated.1 +1 -1
- data/man/bundle-outdated.1.txt +34 -34
- data/man/bundle-platform.1 +1 -1
- data/man/bundle-platform.1.txt +16 -16
- data/man/bundle-pristine.1 +1 -1
- data/man/bundle-pristine.1.txt +8 -8
- data/man/bundle-remove.1 +1 -1
- data/man/bundle-remove.1.txt +9 -9
- data/man/bundle-show.1 +1 -1
- data/man/bundle-show.1.txt +8 -8
- data/man/bundle-update.1 +1 -1
- data/man/bundle-update.1.txt +149 -148
- data/man/bundle-viz.1 +1 -1
- data/man/bundle-viz.1.txt +11 -11
- data/man/bundle.1 +1 -1
- data/man/bundle.1.txt +31 -31
- data/man/gemfile.5 +1 -1
- data/man/gemfile.5.txt +218 -216
- metadata +14 -8
data/man/bundle-list.1
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "BUNDLE\-LIST" "1" "
|
4
|
+
.TH "BUNDLE\-LIST" "1" "July 2020" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-list\fR \- List all the gems in the bundle
|
8
8
|
.
|
9
9
|
.SH "SYNOPSIS"
|
10
|
-
\fBbundle list\fR [\-\-name\-only] [\-\-paths] [\-\-without\-group=GROUP] [\-\-only\-group=GROUP]
|
10
|
+
\fBbundle list\fR [\-\-name\-only] [\-\-paths] [\-\-without\-group=GROUP[ GROUP\.\.\.]] [\-\-only\-group=GROUP[ GROUP\.\.\.]]
|
11
11
|
.
|
12
12
|
.SH "DESCRIPTION"
|
13
13
|
Prints a list of all the gems in the bundle including their version\.
|
@@ -28,7 +28,7 @@ bundle list \-\-without\-group test
|
|
28
28
|
bundle list \-\-only\-group dev
|
29
29
|
.
|
30
30
|
.P
|
31
|
-
bundle list \-\-only\-group dev \-\-paths
|
31
|
+
bundle list \-\-only\-group dev test \-\-paths
|
32
32
|
.
|
33
33
|
.SH "OPTIONS"
|
34
34
|
.
|
@@ -41,10 +41,10 @@ Print only the name of each gem\.
|
|
41
41
|
Print the path to each gem in the bundle\.
|
42
42
|
.
|
43
43
|
.TP
|
44
|
-
\fB\-\-without\-group
|
45
|
-
|
44
|
+
\fB\-\-without\-group=<list>\fR
|
45
|
+
A space\-separated list of groups of gems to skip during printing\.
|
46
46
|
.
|
47
47
|
.TP
|
48
|
-
\fB\-\-only\-group
|
49
|
-
|
48
|
+
\fB\-\-only\-group=<list>\fR
|
49
|
+
A space\-separated list of groups of gems to print\.
|
50
50
|
|
data/man/bundle-list.1.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
BUNDLE-LIST(1)
|
1
|
+
BUNDLE-LIST(1) BUNDLE-LIST(1)
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -6,8 +6,8 @@ NAME
|
|
6
6
|
bundle-list - List all the gems in the bundle
|
7
7
|
|
8
8
|
SYNOPSIS
|
9
|
-
bundle
|
10
|
-
[--only-group=GROUP]
|
9
|
+
bundle list [--name-only] [--paths] [--without-group=GROUP[ GROUP...]]
|
10
|
+
[--only-group=GROUP[ GROUP...]]
|
11
11
|
|
12
12
|
DESCRIPTION
|
13
13
|
Prints a list of all the gems in the bundle including their version.
|
@@ -22,22 +22,23 @@ DESCRIPTION
|
|
22
22
|
|
23
23
|
bundle list --only-group dev
|
24
24
|
|
25
|
-
bundle list --only-group dev --paths
|
25
|
+
bundle list --only-group dev test --paths
|
26
26
|
|
27
27
|
OPTIONS
|
28
28
|
--name-only
|
29
|
-
|
29
|
+
Print only the name of each gem.
|
30
30
|
|
31
31
|
--paths
|
32
|
-
|
32
|
+
Print the path to each gem in the bundle.
|
33
33
|
|
34
|
-
--without-group
|
35
|
-
|
34
|
+
--without-group=<list>
|
35
|
+
A space-separated list of groups of gems to skip during
|
36
|
+
printing.
|
36
37
|
|
37
|
-
--only-group
|
38
|
-
|
38
|
+
--only-group=<list>
|
39
|
+
A space-separated list of groups of gems to print.
|
39
40
|
|
40
41
|
|
41
42
|
|
42
43
|
|
43
|
-
|
44
|
+
July 2020 BUNDLE-LIST(1)
|
data/man/bundle-list.ronn
CHANGED
@@ -3,7 +3,7 @@ bundle-list(1) -- List all the gems in the bundle
|
|
3
3
|
|
4
4
|
## SYNOPSIS
|
5
5
|
|
6
|
-
`bundle list` [--name-only] [--paths] [--without-group=GROUP] [--only-group=GROUP]
|
6
|
+
`bundle list` [--name-only] [--paths] [--without-group=GROUP[ GROUP...]] [--only-group=GROUP[ GROUP...]]
|
7
7
|
|
8
8
|
## DESCRIPTION
|
9
9
|
|
@@ -19,7 +19,7 @@ bundle list --without-group test
|
|
19
19
|
|
20
20
|
bundle list --only-group dev
|
21
21
|
|
22
|
-
bundle list --only-group dev --paths
|
22
|
+
bundle list --only-group dev test --paths
|
23
23
|
|
24
24
|
## OPTIONS
|
25
25
|
|
@@ -27,7 +27,7 @@ bundle list --only-group dev --paths
|
|
27
27
|
Print only the name of each gem.
|
28
28
|
* `--paths`:
|
29
29
|
Print the path to each gem in the bundle.
|
30
|
-
* `--without-group
|
31
|
-
|
32
|
-
* `--only-group
|
33
|
-
|
30
|
+
* `--without-group=<list>`:
|
31
|
+
A space-separated list of groups of gems to skip during printing.
|
32
|
+
* `--only-group=<list>`:
|
33
|
+
A space-separated list of groups of gems to print.
|
data/man/bundle-lock.1
CHANGED
data/man/bundle-lock.1.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
BUNDLE-LOCK(1)
|
1
|
+
BUNDLE-LOCK(1) BUNDLE-LOCK(1)
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -6,7 +6,7 @@ NAME
|
|
6
6
|
bundle-lock - Creates / Updates a lockfile without installing
|
7
7
|
|
8
8
|
SYNOPSIS
|
9
|
-
bundle
|
9
|
+
bundle lock [--update] [--local] [--print] [--lockfile=PATH]
|
10
10
|
[--full-index] [--add-platform] [--remove-platform] [--patch] [--minor]
|
11
11
|
[--major] [--strict] [--conservative]
|
12
12
|
|
@@ -15,52 +15,52 @@ DESCRIPTION
|
|
15
15
|
|
16
16
|
OPTIONS
|
17
17
|
--update=<*gems>
|
18
|
-
|
19
|
-
|
18
|
+
Ignores the existing lockfile. Resolve then updates lockfile.
|
19
|
+
Taking a list of gems or updating all gems if no list is given.
|
20
20
|
|
21
21
|
--local
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
22
|
+
Do not attempt to connect to rubygems.org. Instead, Bundler will
|
23
|
+
use the gems already present in Rubygems' cache or in
|
24
|
+
vendor/cache. Note that if a appropriate platform-specific gem
|
25
|
+
exists on rubygems.org it will not be found.
|
26
26
|
|
27
27
|
--print
|
28
|
-
|
29
|
-
|
28
|
+
Prints the lockfile to STDOUT instead of writing to the file
|
29
|
+
system.
|
30
30
|
|
31
31
|
--lockfile=<path>
|
32
|
-
|
32
|
+
The path where the lockfile should be written to.
|
33
33
|
|
34
34
|
--full-index
|
35
|
-
|
35
|
+
Fall back to using the single-file index of all gems.
|
36
36
|
|
37
37
|
--add-platform
|
38
|
-
|
39
|
-
|
38
|
+
Add a new platform to the lockfile, re-resolving for the
|
39
|
+
addition of that platform.
|
40
40
|
|
41
41
|
--remove-platform
|
42
|
-
|
42
|
+
Remove a platform from the lockfile.
|
43
43
|
|
44
44
|
--patch
|
45
|
-
|
45
|
+
If updating, prefer updating only to next patch version.
|
46
46
|
|
47
47
|
--minor
|
48
|
-
|
48
|
+
If updating, prefer updating only to next minor version.
|
49
49
|
|
50
50
|
--major
|
51
|
-
|
51
|
+
If updating, prefer updating to next major version (default).
|
52
52
|
|
53
53
|
--strict
|
54
|
-
|
55
|
-
|
54
|
+
If updating, do not allow any gem to be updated past latest
|
55
|
+
--patch | --minor | --major.
|
56
56
|
|
57
57
|
--conservative
|
58
|
-
|
59
|
-
|
58
|
+
If updating, use bundle install conservative update behavior and
|
59
|
+
do not allow shared dependencies to be updated.
|
60
60
|
|
61
61
|
UPDATING ALL GEMS
|
62
|
-
If you
|
63
|
-
bundler will ignore any
|
62
|
+
If you run bundle lock with --update option without list of gems,
|
63
|
+
bundler will ignore any previously installed gems and resolve all
|
64
64
|
dependencies again based on the latest versions of all gems available
|
65
65
|
in the sources.
|
66
66
|
|
@@ -69,12 +69,12 @@ UPDATING A LIST OF GEMS
|
|
69
69
|
the rest of the gems that you specified locked to the versions in the
|
70
70
|
Gemfile.lock.
|
71
71
|
|
72
|
-
For instance, you only
|
72
|
+
For instance, you only want to update nokogiri, run bundle lock
|
73
73
|
--update nokogiri.
|
74
74
|
|
75
75
|
Bundler will update nokogiri and any of its dependencies, but leave the
|
76
|
-
rest of the gems that you specified
|
77
|
-
|
76
|
+
rest of the gems that you specified locked to the versions in the
|
77
|
+
Gemfile.lock.
|
78
78
|
|
79
79
|
SUPPORTING OTHER PLATFORMS
|
80
80
|
If you want your bundle to support platforms other than the one you're
|
@@ -90,4 +90,4 @@ PATCH LEVEL OPTIONS
|
|
90
90
|
|
91
91
|
|
92
92
|
|
93
|
-
|
93
|
+
July 2020 BUNDLE-LOCK(1)
|
data/man/bundle-open.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\-OPEN" "1" "
|
4
|
+
.TH "BUNDLE\-OPEN" "1" "July 2020" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
|
data/man/bundle-open.1.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
BUNDLE-OPEN(1)
|
1
|
+
BUNDLE-OPEN(1) BUNDLE-OPEN(1)
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -18,7 +18,7 @@ DESCRIPTION
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
|
21
|
+
bundle open 'rack'
|
22
22
|
|
23
23
|
|
24
24
|
|
@@ -26,4 +26,4 @@ DESCRIPTION
|
|
26
26
|
|
27
27
|
|
28
28
|
|
29
|
-
|
29
|
+
July 2020 BUNDLE-OPEN(1)
|
data/man/bundle-outdated.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\-OUTDATED" "1" "
|
4
|
+
.TH "BUNDLE\-OUTDATED" "1" "July 2020" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-outdated\fR \- List installed gems with newer versions available
|
data/man/bundle-outdated.1.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
BUNDLE-OUTDATED(1)
|
1
|
+
BUNDLE-OUTDATED(1) BUNDLE-OUTDATED(1)
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -6,10 +6,10 @@ NAME
|
|
6
6
|
bundle-outdated - List installed gems with newer versions available
|
7
7
|
|
8
8
|
SYNOPSIS
|
9
|
-
bundle
|
10
|
-
[--parseable
|
11
|
-
[--update-strict]
|
12
|
-
|
9
|
+
bundle outdated [GEM] [--local] [--pre] [--source] [--strict]
|
10
|
+
[--parseable | --porcelain] [--group=GROUP] [--groups]
|
11
|
+
[--update-strict] [--patch|--minor|--major] [--filter-major]
|
12
|
+
[--filter-minor] [--filter-patch] [--only-explicit]
|
13
13
|
|
14
14
|
DESCRIPTION
|
15
15
|
Outdated lists the names and versions of gems that have a newer version
|
@@ -20,56 +20,56 @@ DESCRIPTION
|
|
20
20
|
|
21
21
|
OPTIONS
|
22
22
|
--local
|
23
|
-
|
24
|
-
|
23
|
+
Do not attempt to fetch gems remotely and use the gem cache
|
24
|
+
instead.
|
25
25
|
|
26
26
|
--pre Check for newer pre-release gems.
|
27
27
|
|
28
28
|
--source
|
29
|
-
|
29
|
+
Check against a specific source.
|
30
30
|
|
31
31
|
--strict
|
32
|
-
|
32
|
+
Only list newer versions allowed by your Gemfile requirements.
|
33
33
|
|
34
34
|
--parseable, --porcelain
|
35
|
-
|
35
|
+
Use minimal formatting for more parseable output.
|
36
36
|
|
37
37
|
--group
|
38
|
-
|
38
|
+
List gems from a specific group.
|
39
39
|
|
40
40
|
--groups
|
41
|
-
|
41
|
+
List gems organized by groups.
|
42
42
|
|
43
43
|
--update-strict
|
44
|
-
|
45
|
-
|
44
|
+
Strict conservative resolution, do not allow any gem to be
|
45
|
+
updated past latest --patch | --minor| --major.
|
46
46
|
|
47
47
|
--minor
|
48
|
-
|
48
|
+
Prefer updating only to next minor version.
|
49
49
|
|
50
50
|
--major
|
51
|
-
|
51
|
+
Prefer updating to next major version (default).
|
52
52
|
|
53
53
|
--patch
|
54
|
-
|
54
|
+
Prefer updating only to next patch version.
|
55
55
|
|
56
56
|
--filter-major
|
57
|
-
|
57
|
+
Only list major newer versions.
|
58
58
|
|
59
59
|
--filter-minor
|
60
|
-
|
60
|
+
Only list minor newer versions.
|
61
61
|
|
62
62
|
--filter-patch
|
63
|
-
|
63
|
+
Only list patch newer versions.
|
64
64
|
|
65
65
|
--only-explicit
|
66
|
-
|
67
|
-
|
66
|
+
Only list gems specified in your Gemfile, not their
|
67
|
+
dependencies.
|
68
68
|
|
69
69
|
PATCH LEVEL OPTIONS
|
70
70
|
See bundle update(1) bundle-update.1.html for details.
|
71
71
|
|
72
|
-
One difference
|
72
|
+
One difference between the patch level options in bundle update and
|
73
73
|
here is the --strict option. --strict was already an option on outdated
|
74
74
|
before the patch level options were added. --strict wasn't altered, and
|
75
75
|
the --update-strict option on outdated reflects what --strict does on
|
@@ -83,9 +83,9 @@ FILTERING OUTPUT
|
|
83
83
|
|
84
84
|
|
85
85
|
|
86
|
-
|
87
|
-
|
88
|
-
|
86
|
+
* faker (newest 1.6.6, installed 1.6.5, requested ~> 1.4) in groups "development, test"
|
87
|
+
* hashie (newest 3.4.6, installed 1.2.0, requested = 1.2.0) in groups "default"
|
88
|
+
* headless (newest 2.3.1, installed 2.2.3) in groups "test"
|
89
89
|
|
90
90
|
|
91
91
|
|
@@ -93,7 +93,7 @@ FILTERING OUTPUT
|
|
93
93
|
|
94
94
|
|
95
95
|
|
96
|
-
|
96
|
+
* hashie (newest 3.4.6, installed 1.2.0, requested = 1.2.0) in groups "default"
|
97
97
|
|
98
98
|
|
99
99
|
|
@@ -101,7 +101,7 @@ FILTERING OUTPUT
|
|
101
101
|
|
102
102
|
|
103
103
|
|
104
|
-
|
104
|
+
* headless (newest 2.3.1, installed 2.2.3) in groups "test"
|
105
105
|
|
106
106
|
|
107
107
|
|
@@ -109,7 +109,7 @@ FILTERING OUTPUT
|
|
109
109
|
|
110
110
|
|
111
111
|
|
112
|
-
|
112
|
+
* faker (newest 1.6.6, installed 1.6.5, requested ~> 1.4) in groups "development, test"
|
113
113
|
|
114
114
|
|
115
115
|
|
@@ -118,14 +118,14 @@ FILTERING OUTPUT
|
|
118
118
|
|
119
119
|
|
120
120
|
|
121
|
-
|
122
|
-
|
121
|
+
* faker (newest 1.6.6, installed 1.6.5, requested ~> 1.4) in groups "development, test"
|
122
|
+
* headless (newest 2.3.1, installed 2.2.3) in groups "test"
|
123
123
|
|
124
124
|
|
125
125
|
|
126
|
-
Combining all
|
127
|
-
|
126
|
+
Combining all three filter options would be the same result as
|
127
|
+
providing none of them.
|
128
128
|
|
129
129
|
|
130
130
|
|
131
|
-
|
131
|
+
July 2020 BUNDLE-OUTDATED(1)
|
data/man/bundle-platform.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\-PLATFORM" "1" "
|
4
|
+
.TH "BUNDLE\-PLATFORM" "1" "July 2020" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-platform\fR \- Displays platform compatibility information
|
data/man/bundle-platform.1.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
BUNDLE-PLATFORM(1)
|
1
|
+
BUNDLE-PLATFORM(1) BUNDLE-PLATFORM(1)
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -16,11 +16,11 @@ DESCRIPTION
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
|
19
|
+
source "https://rubygems.org"
|
20
20
|
|
21
|
-
|
21
|
+
ruby "1.9.3"
|
22
22
|
|
23
|
-
|
23
|
+
gem "rack"
|
24
24
|
|
25
25
|
|
26
26
|
|
@@ -29,29 +29,29 @@ DESCRIPTION
|
|
29
29
|
|
30
30
|
|
31
31
|
|
32
|
-
|
32
|
+
Your platform is: x86_64-linux
|
33
33
|
|
34
|
-
|
35
|
-
|
34
|
+
Your app has gems that work on these platforms:
|
35
|
+
* ruby
|
36
36
|
|
37
|
-
|
38
|
-
|
37
|
+
Your Gemfile specifies a Ruby version requirement:
|
38
|
+
* ruby 1.9.3
|
39
39
|
|
40
|
-
|
40
|
+
Your current platform satisfies the Ruby version requirement.
|
41
41
|
|
42
42
|
|
43
43
|
|
44
44
|
platform will list all the platforms in your Gemfile.lock as well as
|
45
45
|
the ruby directive if applicable from your Gemfile(5). It will also let
|
46
|
-
you
|
47
|
-
|
48
|
-
not.
|
46
|
+
you know if the ruby directive requirement has been met. If ruby
|
47
|
+
directive doesn't match the running Ruby VM, it will tell you what part
|
48
|
+
does not.
|
49
49
|
|
50
50
|
OPTIONS
|
51
|
-
--ruby It will
|
52
|
-
|
51
|
+
--ruby It will display the ruby directive information, so you don't
|
52
|
+
have to parse it from the Gemfile(5).
|
53
53
|
|
54
54
|
|
55
55
|
|
56
56
|
|
57
|
-
|
57
|
+
July 2020 BUNDLE-PLATFORM(1)
|