bundler 2.6.9 → 2.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1136 -1033
- data/README.md +7 -7
- data/bundler.gemspec +2 -2
- data/lib/bundler/build_metadata.rb +10 -11
- data/lib/bundler/checksum.rb +6 -0
- data/lib/bundler/cli/cache.rb +0 -1
- data/lib/bundler/cli/common.rb +1 -1
- data/lib/bundler/cli/config.rb +2 -2
- data/lib/bundler/cli/gem.rb +62 -30
- data/lib/bundler/cli/install.rb +5 -7
- data/lib/bundler/cli/lock.rb +5 -5
- data/lib/bundler/cli/outdated.rb +1 -1
- data/lib/bundler/cli/show.rb +2 -6
- data/lib/bundler/cli/update.rb +3 -3
- data/lib/bundler/cli.rb +45 -49
- data/lib/bundler/compact_index_client.rb +1 -5
- data/lib/bundler/current_ruby.rb +27 -3
- data/lib/bundler/definition.rb +97 -81
- data/lib/bundler/dependency.rb +1 -1
- data/lib/bundler/dsl.rb +34 -24
- data/lib/bundler/feature_flag.rb +15 -12
- data/lib/bundler/fetcher/dependency.rb +2 -1
- data/lib/bundler/fetcher/downloader.rb +33 -7
- data/lib/bundler/fetcher.rb +49 -19
- data/lib/bundler/friendly_errors.rb +2 -1
- data/lib/bundler/index.rb +7 -2
- data/lib/bundler/installer.rb +5 -4
- data/lib/bundler/lazy_specification.rb +9 -7
- data/lib/bundler/lockfile_parser.rb +21 -5
- data/lib/bundler/man/bundle-add.1 +1 -1
- data/lib/bundler/man/bundle-binstubs.1 +1 -1
- data/lib/bundler/man/bundle-cache.1 +1 -1
- data/lib/bundler/man/bundle-check.1 +1 -1
- data/lib/bundler/man/bundle-clean.1 +1 -1
- data/lib/bundler/man/bundle-config.1 +200 -137
- data/lib/bundler/man/bundle-config.1.ronn +138 -109
- data/lib/bundler/man/bundle-console.1 +1 -1
- data/lib/bundler/man/bundle-doctor.1 +43 -4
- data/lib/bundler/man/bundle-doctor.1.ronn +48 -4
- data/lib/bundler/man/bundle-env.1 +1 -1
- data/lib/bundler/man/bundle-exec.1 +1 -1
- data/lib/bundler/man/bundle-fund.1 +1 -1
- data/lib/bundler/man/bundle-gem.1 +67 -44
- data/lib/bundler/man/bundle-gem.1.ronn +8 -4
- data/lib/bundler/man/bundle-help.1 +1 -1
- data/lib/bundler/man/bundle-info.1 +1 -1
- data/lib/bundler/man/bundle-init.1 +1 -1
- data/lib/bundler/man/bundle-inject.1 +2 -2
- data/lib/bundler/man/bundle-inject.1.ronn +1 -1
- data/lib/bundler/man/bundle-install.1 +4 -4
- data/lib/bundler/man/bundle-install.1.ronn +3 -4
- data/lib/bundler/man/bundle-issue.1 +1 -1
- data/lib/bundler/man/bundle-licenses.1 +1 -1
- data/lib/bundler/man/bundle-list.1 +1 -1
- data/lib/bundler/man/bundle-lock.1 +1 -1
- data/lib/bundler/man/bundle-open.1 +1 -1
- data/lib/bundler/man/bundle-outdated.1 +1 -1
- data/lib/bundler/man/bundle-platform.1 +1 -1
- data/lib/bundler/man/bundle-plugin.1 +40 -15
- data/lib/bundler/man/bundle-plugin.1.ronn +44 -15
- data/lib/bundler/man/bundle-pristine.1 +1 -1
- data/lib/bundler/man/bundle-remove.1 +1 -1
- data/lib/bundler/man/bundle-show.1 +1 -1
- data/lib/bundler/man/bundle-update.1 +5 -5
- data/lib/bundler/man/bundle-update.1.ronn +4 -4
- data/lib/bundler/man/bundle-version.1 +1 -1
- data/lib/bundler/man/bundle-viz.1 +1 -1
- data/lib/bundler/man/bundle.1 +1 -1
- data/lib/bundler/man/gemfile.5 +1 -1
- data/lib/bundler/match_platform.rb +31 -12
- data/lib/bundler/materialization.rb +2 -2
- data/lib/bundler/resolver/package.rb +2 -1
- data/lib/bundler/resolver.rb +1 -3
- data/lib/bundler/rubygems_ext.rb +116 -120
- data/lib/bundler/rubygems_integration.rb +11 -6
- data/lib/bundler/runtime.rb +1 -1
- data/lib/bundler/self_manager.rb +32 -42
- data/lib/bundler/settings/validator.rb +0 -23
- data/lib/bundler/settings.rb +4 -6
- data/lib/bundler/shared_helpers.rb +6 -4
- data/lib/bundler/source/gemspec.rb +4 -0
- data/lib/bundler/source/git/git_proxy.rb +3 -3
- data/lib/bundler/source/path.rb +9 -0
- data/lib/bundler/source_list.rb +1 -5
- data/lib/bundler/source_map.rb +1 -1
- data/lib/bundler/spec_set.rb +7 -3
- data/lib/bundler/templates/Executable +0 -11
- data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +2 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +6 -5
- data/lib/bundler/ui/shell.rb +2 -2
- data/lib/bundler/vendor/net-http-persistent/README.rdoc +1 -1
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +2 -1
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +81 -42
- data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +42 -6
- data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/runner.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +3 -7
- data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/lib/bundler/version.rb +10 -2
- data/lib/bundler/worker.rb +1 -1
- data/lib/bundler.rb +14 -12
- metadata +4 -14
- data/lib/bundler/gem_helpers.rb +0 -144
- data/lib/bundler/templates/Executable.bundler +0 -109
- data/lib/bundler/vendor/connection_pool/.document +0 -1
- data/lib/bundler/vendor/fileutils/.document +0 -1
- data/lib/bundler/vendor/net-http-persistent/.document +0 -1
- data/lib/bundler/vendor/pub_grub/.document +0 -1
- data/lib/bundler/vendor/securerandom/.document +0 -1
- data/lib/bundler/vendor/thor/.document +0 -1
- data/lib/bundler/vendor/tsort/.document +0 -1
- data/lib/bundler/vendor/uri/.document +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-GEM" "1" "
|
|
3
|
+
.TH "BUNDLE\-GEM" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -19,67 +19,90 @@ The generated project skeleton can be customized with OPTIONS, as explained belo
|
|
|
19
19
|
\fBgem\.test\fR
|
|
20
20
|
.IP "" 0
|
|
21
21
|
.SH "OPTIONS"
|
|
22
|
-
.
|
|
23
|
-
\fB\-\-exe\fR, \fB\-\-bin\fR, \fB\-b\fR
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
.
|
|
29
|
-
\fB\-\-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
.
|
|
35
|
-
\fB\-\-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
\fB\-\-
|
|
40
|
-
.
|
|
41
|
-
\fB\-\-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
.
|
|
47
|
-
\fB
|
|
22
|
+
.TP
|
|
23
|
+
\fB\-\-exe\fR, \fB\-\-bin\fR, \fB\-b\fR
|
|
24
|
+
Specify that Bundler should create a binary executable (as \fBexe/GEM_NAME\fR) in the generated rubygem project\. This binary will also be added to the \fBGEM_NAME\.gemspec\fR manifest\. This behavior is disabled by default\.
|
|
25
|
+
.TP
|
|
26
|
+
\fB\-\-no\-exe\fR
|
|
27
|
+
Do not create a binary (overrides \fB\-\-exe\fR specified in the global config)\.
|
|
28
|
+
.TP
|
|
29
|
+
\fB\-\-coc\fR
|
|
30
|
+
Add a \fBCODE_OF_CONDUCT\.md\fR file to the root of the generated project\. If this option is unspecified, an interactive prompt will be displayed and the answer will be saved in Bundler's global config for future \fBbundle gem\fR use\.
|
|
31
|
+
.TP
|
|
32
|
+
\fB\-\-no\-coc\fR
|
|
33
|
+
Do not create a \fBCODE_OF_CONDUCT\.md\fR (overrides \fB\-\-coc\fR specified in the global config)\.
|
|
34
|
+
.TP
|
|
35
|
+
\fB\-\-changelog\fR
|
|
36
|
+
Add a \fBCHANGELOG\.md\fR file to the root of the generated project\. If this option is unspecified, an interactive prompt will be displayed and the answer will be saved in Bundler's global config for future \fBbundle gem\fR use\. Update the default with \fBbundle config set \-\-global gem\.changelog <true|false>\fR\.
|
|
37
|
+
.TP
|
|
38
|
+
\fB\-\-no\-changelog\fR
|
|
39
|
+
Do not create a \fBCHANGELOG\.md\fR (overrides \fB\-\-changelog\fR specified in the global config)\.
|
|
40
|
+
.TP
|
|
41
|
+
\fB\-\-ext=c\fR, \fB\-\-ext=rust\fR
|
|
42
|
+
Add boilerplate for C or Rust (currently magnus \fIhttps://docs\.rs/magnus\fR based) extension code to the generated project\. This behavior is disabled by default\.
|
|
43
|
+
.TP
|
|
44
|
+
\fB\-\-no\-ext\fR
|
|
45
|
+
Do not add extension code (overrides \fB\-\-ext\fR specified in the global config)\.
|
|
46
|
+
.TP
|
|
47
|
+
\fB\-\-git\fR
|
|
48
|
+
Initialize a git repo inside your library\.
|
|
49
|
+
.TP
|
|
50
|
+
\fB\-\-github\-username=GITHUB_USERNAME\fR
|
|
51
|
+
Fill in GitHub username on README so that you don't have to do it manually\. Set a default with \fBbundle config set \-\-global gem\.github_username <your_username>\fR\.
|
|
52
|
+
.TP
|
|
53
|
+
\fB\-\-mit\fR
|
|
54
|
+
Add an MIT license to a \fBLICENSE\.txt\fR file in the root of the generated project\. Your name from the global git config is used for the copyright statement\. If this option is unspecified, an interactive prompt will be displayed and the answer will be saved in Bundler's global config for future \fBbundle gem\fR use\.
|
|
55
|
+
.TP
|
|
56
|
+
\fB\-\-no\-mit\fR
|
|
57
|
+
Do not create a \fBLICENSE\.txt\fR (overrides \fB\-\-mit\fR specified in the global config)\.
|
|
58
|
+
.TP
|
|
59
|
+
\fB\-t\fR, \fB\-\-test=minitest\fR, \fB\-\-test=rspec\fR, \fB\-\-test=test\-unit\fR
|
|
60
|
+
Specify the test framework that Bundler should use when generating the project\. Acceptable values are \fBminitest\fR, \fBrspec\fR and \fBtest\-unit\fR\. The \fBGEM_NAME\.gemspec\fR will be configured and a skeleton test/spec directory will be created based on this option\. Given no option is specified:
|
|
48
61
|
.IP
|
|
49
62
|
When Bundler is configured to generate tests, this defaults to Bundler's global config setting \fBgem\.test\fR\.
|
|
50
63
|
.IP
|
|
51
64
|
When Bundler is configured to not generate tests, an interactive prompt will be displayed and the answer will be used for the current rubygem project\.
|
|
52
65
|
.IP
|
|
53
66
|
When Bundler is unconfigured, an interactive prompt will be displayed and the answer will be saved in Bundler's global config for future \fBbundle gem\fR use\.
|
|
54
|
-
.
|
|
55
|
-
\fB\-\-no\-test\fR
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
67
|
+
.TP
|
|
68
|
+
\fB\-\-no\-test\fR
|
|
69
|
+
Do not use a test framework (overrides \fB\-\-test\fR specified in the global config)\.
|
|
70
|
+
.TP
|
|
71
|
+
\fB\-\-ci\fR, \fB\-\-ci=circle\fR, \fB\-\-ci=github\fR, \fB\-\-ci=gitlab\fR
|
|
72
|
+
Specify the continuous integration service that Bundler should use when generating the project\. Acceptable values are \fBgithub\fR, \fBgitlab\fR and \fBcircle\fR\. A configuration file will be generated in the project directory\. Given no option is specified:
|
|
60
73
|
.IP
|
|
61
74
|
When Bundler is configured to generate CI files, this defaults to Bundler's global config setting \fBgem\.ci\fR\.
|
|
62
75
|
.IP
|
|
63
76
|
When Bundler is configured to not generate CI files, an interactive prompt will be displayed and the answer will be used for the current rubygem project\.
|
|
64
77
|
.IP
|
|
65
78
|
When Bundler is unconfigured, an interactive prompt will be displayed and the answer will be saved in Bundler's global config for future \fBbundle gem\fR use\.
|
|
66
|
-
.
|
|
67
|
-
\fB\-\-no\-ci\fR
|
|
68
|
-
|
|
69
|
-
|
|
79
|
+
.TP
|
|
80
|
+
\fB\-\-no\-ci\fR
|
|
81
|
+
Do not use a continuous integration service (overrides \fB\-\-ci\fR specified in the global config)\.
|
|
82
|
+
.TP
|
|
83
|
+
\fB\-\-linter\fR, \fB\-\-linter=rubocop\fR, \fB\-\-linter=standard\fR
|
|
84
|
+
Specify the linter and code formatter that Bundler should add to the project's development dependencies\. Acceptable values are \fBrubocop\fR and \fBstandard\fR\. A configuration file will be generated in the project directory\. Given no option is specified:
|
|
70
85
|
.IP
|
|
71
86
|
When Bundler is configured to add a linter, this defaults to Bundler's global config setting \fBgem\.linter\fR\.
|
|
72
87
|
.IP
|
|
73
88
|
When Bundler is configured not to add a linter, an interactive prompt will be displayed and the answer will be used for the current rubygem project\.
|
|
74
89
|
.IP
|
|
75
90
|
When Bundler is unconfigured, an interactive prompt will be displayed and the answer will be saved in Bundler's global config for future \fBbundle gem\fR use\.
|
|
76
|
-
.
|
|
77
|
-
\fB\-\-no\-linter\fR
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
.
|
|
91
|
+
.TP
|
|
92
|
+
\fB\-\-no\-linter\fR
|
|
93
|
+
Do not add a linter (overrides \fB\-\-linter\fR specified in the global config)\.
|
|
94
|
+
.TP
|
|
95
|
+
\fB\-\-rubocop\fR
|
|
96
|
+
Add rubocop to the generated Rakefile and gemspec\. Set a default with \fBbundle config set \-\-global gem\.rubocop true\fR\.
|
|
97
|
+
.TP
|
|
98
|
+
\fB\-\-edit=EDIT\fR, \fB\-e=EDIT\fR
|
|
99
|
+
Open the resulting GEM_NAME\.gemspec in EDIT, or the default editor if not specified\. The default is \fB$BUNDLER_EDITOR\fR, \fB$VISUAL\fR, or \fB$EDITOR\fR\.
|
|
100
|
+
.TP
|
|
101
|
+
\fB\-\-bundle\fR
|
|
102
|
+
Run \fBbundle install\fR after creating the gem\.
|
|
103
|
+
.TP
|
|
104
|
+
\fB\-\-no\-bundle\fR
|
|
105
|
+
Do not run \fBbundle install\fR after creating the gem\.
|
|
83
106
|
.SH "SEE ALSO"
|
|
84
107
|
.IP "\(bu" 4
|
|
85
108
|
bundle config(1) \fIbundle\-config\.1\.html\fR
|
|
@@ -41,10 +41,11 @@ configuration file using the following names:
|
|
|
41
41
|
Do not create a `CODE_OF_CONDUCT.md` (overrides `--coc` specified in the
|
|
42
42
|
global config).
|
|
43
43
|
|
|
44
|
-
* `--changelog
|
|
44
|
+
* `--changelog`:
|
|
45
45
|
Add a `CHANGELOG.md` file to the root of the generated project. If
|
|
46
46
|
this option is unspecified, an interactive prompt will be displayed and the
|
|
47
47
|
answer will be saved in Bundler's global config for future `bundle gem` use.
|
|
48
|
+
Update the default with `bundle config set --global gem.changelog <true|false>`.
|
|
48
49
|
|
|
49
50
|
* `--no-changelog`:
|
|
50
51
|
Do not create a `CHANGELOG.md` (overrides `--changelog` specified in the
|
|
@@ -95,9 +96,6 @@ configuration file using the following names:
|
|
|
95
96
|
Do not use a test framework (overrides `--test` specified in the global
|
|
96
97
|
config).
|
|
97
98
|
|
|
98
|
-
* `--changelog`:
|
|
99
|
-
Generate changelog file. Set a default with `bundle config set --global gem.changelog true`.
|
|
100
|
-
|
|
101
99
|
* `--ci`, `--ci=circle`, `--ci=github`, `--ci=gitlab`:
|
|
102
100
|
Specify the continuous integration service that Bundler should use when
|
|
103
101
|
generating the project. Acceptable values are `github`, `gitlab`
|
|
@@ -144,6 +142,12 @@ configuration file using the following names:
|
|
|
144
142
|
Open the resulting GEM_NAME.gemspec in EDIT, or the default editor if not
|
|
145
143
|
specified. The default is `$BUNDLER_EDITOR`, `$VISUAL`, or `$EDITOR`.
|
|
146
144
|
|
|
145
|
+
* `--bundle`:
|
|
146
|
+
Run `bundle install` after creating the gem.
|
|
147
|
+
|
|
148
|
+
* `--no-bundle`:
|
|
149
|
+
Do not run `bundle install` after creating the gem.
|
|
150
|
+
|
|
147
151
|
## SEE ALSO
|
|
148
152
|
|
|
149
153
|
* [bundle config(1)](bundle-config.1.html)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-INFO" "1" "
|
|
3
|
+
.TH "BUNDLE\-INFO" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-info\fR \- Show information for the given gem in your bundle
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-INIT" "1" "
|
|
3
|
+
.TH "BUNDLE\-INIT" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-init\fR \- Generates a Gemfile into the current working directory
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-INJECT" "1" "
|
|
3
|
+
.TH "BUNDLE\-INJECT" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -20,7 +20,7 @@ bundle inject 'rack' '> 0'
|
|
|
20
20
|
.P
|
|
21
21
|
This will inject the 'rack' gem with a version greater than 0 in your [\fBGemfile(5)\fR][Gemfile(5)] and Gemfile\.lock\.
|
|
22
22
|
.P
|
|
23
|
-
The \fBbundle inject\fR command was deprecated in Bundler 2\.1 and will be removed in Bundler
|
|
23
|
+
The \fBbundle inject\fR command was deprecated in Bundler 2\.1 and will be removed in Bundler 4\.0\.
|
|
24
24
|
.SH "OPTIONS"
|
|
25
25
|
.TP
|
|
26
26
|
\fB\-\-source=SOURCE\fR
|
|
@@ -21,7 +21,7 @@ Example:
|
|
|
21
21
|
This will inject the 'rack' gem with a version greater than 0 in your
|
|
22
22
|
[`Gemfile(5)`][Gemfile(5)] and Gemfile.lock.
|
|
23
23
|
|
|
24
|
-
The `bundle inject` command was deprecated in Bundler 2.1 and will be removed in Bundler
|
|
24
|
+
The `bundle inject` command was deprecated in Bundler 2.1 and will be removed in Bundler 4.0.
|
|
25
25
|
|
|
26
26
|
## OPTIONS
|
|
27
27
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-INSTALL" "1" "
|
|
3
|
+
.TH "BUNDLE\-INSTALL" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle install\fR [\-\-binstubs[=DIRECTORY]] [\-\-clean] [\-\-deployment] [\-\-frozen] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-local] [\-\-no\-cache] [\-\-no\-prune] [\-\-path PATH] [\-\-prefer\-local] [\-\-quiet] [\-\-
|
|
7
|
+
\fBbundle install\fR [\-\-binstubs[=DIRECTORY]] [\-\-clean] [\-\-deployment] [\-\-force] [\-\-frozen] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-local] [\-\-no\-cache] [\-\-no\-prune] [\-\-path PATH] [\-\-prefer\-local] [\-\-quiet] [\-\-retry=NUMBER] [\-\-shebang=SHEBANG] [\-\-standalone[=GROUP[ GROUP\|\.\|\.\|\.]]] [\-\-system] [\-\-trust\-policy=TRUST\-POLICY] [\-\-target\-rbconfig=TARGET\-RBCONFIG] [\-\-with=GROUP[ GROUP\|\.\|\.\|\.]] [\-\-without=GROUP[ GROUP\|\.\|\.\|\.]]
|
|
8
8
|
.SH "DESCRIPTION"
|
|
9
9
|
Install the gems specified in your Gemfile(5)\. If this is the first time you run bundle install (and a \fBGemfile\.lock\fR does not exist), Bundler will fetch all remote sources, resolve dependencies and install all needed gems\.
|
|
10
10
|
.P
|
|
@@ -29,8 +29,8 @@ In \fIdeployment mode\fR, Bundler will 'roll\-out' the bundle for production or
|
|
|
29
29
|
.IP
|
|
30
30
|
This option is deprecated in favor of the \fBdeployment\fR setting\.
|
|
31
31
|
.TP
|
|
32
|
-
\fB\-\-
|
|
33
|
-
Force
|
|
32
|
+
\fB\-\-force\fR, \fB\-\-redownload\fR
|
|
33
|
+
Force reinstalling every gem, even if already installed\.
|
|
34
34
|
.TP
|
|
35
35
|
\fB\-\-frozen\fR
|
|
36
36
|
Do not allow the Gemfile\.lock to be updated after this install\. Exits non\-zero if there are going to be changes to the Gemfile\.lock\.
|
|
@@ -6,6 +6,7 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile
|
|
|
6
6
|
`bundle install` [--binstubs[=DIRECTORY]]
|
|
7
7
|
[--clean]
|
|
8
8
|
[--deployment]
|
|
9
|
+
[--force]
|
|
9
10
|
[--frozen]
|
|
10
11
|
[--full-index]
|
|
11
12
|
[--gemfile=GEMFILE]
|
|
@@ -16,7 +17,6 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile
|
|
|
16
17
|
[--path PATH]
|
|
17
18
|
[--prefer-local]
|
|
18
19
|
[--quiet]
|
|
19
|
-
[--redownload]
|
|
20
20
|
[--retry=NUMBER]
|
|
21
21
|
[--shebang=SHEBANG]
|
|
22
22
|
[--standalone[=GROUP[ GROUP...]]]
|
|
@@ -80,9 +80,8 @@ automatically and that requires `bundler` to silently remember them. Since
|
|
|
80
80
|
|
|
81
81
|
This option is deprecated in favor of the `deployment` setting.
|
|
82
82
|
|
|
83
|
-
* `--
|
|
84
|
-
Force
|
|
85
|
-
locally.
|
|
83
|
+
* `--force`, `--redownload`:
|
|
84
|
+
Force reinstalling every gem, even if already installed.
|
|
86
85
|
|
|
87
86
|
* `--frozen`:
|
|
88
87
|
Do not allow the Gemfile.lock to be updated after this install. Exits
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-LICENSES" "1" "
|
|
3
|
+
.TH "BUNDLE\-LICENSES" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-licenses\fR \- Print the license of all gems in the bundle
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-LOCK" "1" "
|
|
3
|
+
.TH "BUNDLE\-LOCK" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-OPEN" "1" "
|
|
3
|
+
.TH "BUNDLE\-OPEN" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-OUTDATED" "1" "
|
|
3
|
+
.TH "BUNDLE\-OUTDATED" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-outdated\fR \- List installed gems with newer versions available
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-PLATFORM" "1" "
|
|
3
|
+
.TH "BUNDLE\-PLATFORM" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-platform\fR \- Displays platform compatibility information
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-PLUGIN" "1" "
|
|
3
|
+
.TH "BUNDLE\-PLUGIN" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-plugin\fR \- Manage Bundler plugins
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle plugin\fR install PLUGINS [\-\-source
|
|
7
|
+
\fBbundle plugin\fR install PLUGINS [\-\-source=SOURCE] [\-\-version=VERSION] [\-\-git=GIT] [\-\-branch=BRANCH|\-\-ref=REF] [\-\-local\-git=LOCAL_GIT] [\-\-path=PATH]
|
|
8
8
|
.br
|
|
9
|
-
\fBbundle plugin\fR uninstall PLUGINS
|
|
9
|
+
\fBbundle plugin\fR uninstall PLUGINS [\-\-all]
|
|
10
10
|
.br
|
|
11
11
|
\fBbundle plugin\fR list
|
|
12
12
|
.br
|
|
@@ -16,18 +16,23 @@ You can install, uninstall, and list plugin(s) with this command to extend funct
|
|
|
16
16
|
.SH "SUB\-COMMANDS"
|
|
17
17
|
.SS "install"
|
|
18
18
|
Install the given plugin(s)\.
|
|
19
|
+
.P
|
|
20
|
+
For example, \fBbundle plugin install bundler\-graph\fR will install bundler\-graph gem from globally configured sources (defaults to RubyGems\.org)\. Note that the global source specified in Gemfile is ignored\.
|
|
21
|
+
.P
|
|
22
|
+
\fBOPTIONS\fR
|
|
19
23
|
.TP
|
|
20
|
-
\
|
|
21
|
-
Install
|
|
22
|
-
.
|
|
23
|
-
\fBbundle plugin install bundler\-graph \-\-source https://example\.com\fR
|
|
24
|
-
Install bundler\-graph gem from example\.com\. The global source, specified in source in Gemfile is not considered\.
|
|
24
|
+
\fB\-\-source=SOURCE\fR
|
|
25
|
+
Install the plugin gem from a specific source, rather than from globally configured sources\.
|
|
26
|
+
.IP
|
|
27
|
+
Example: \fBbundle plugin install bundler\-graph \-\-source https://example\.com\fR
|
|
25
28
|
.TP
|
|
26
|
-
\
|
|
27
|
-
|
|
29
|
+
\fB\-\-version=VERSION\fR
|
|
30
|
+
Specify a version of the plugin gem to install via \fB\-\-version\fR\.
|
|
31
|
+
.IP
|
|
32
|
+
Example: \fBbundle plugin install bundler\-graph \-\-version 0\.2\.1\fR
|
|
28
33
|
.TP
|
|
29
|
-
\
|
|
30
|
-
Install
|
|
34
|
+
\fB\-\-git=GIT\fR
|
|
35
|
+
Install the plugin gem from a Git repository\. You can use standard Git URLs like:
|
|
31
36
|
.IP
|
|
32
37
|
\fBssh://[user@]host\.xz[:port]/path/to/repo\.git\fR
|
|
33
38
|
.br
|
|
@@ -37,12 +42,32 @@ Install bundler\-graph gem from Git repository\. You can use standard Git URLs l
|
|
|
37
42
|
.br
|
|
38
43
|
\fBfile:///path/to/repo\fR
|
|
39
44
|
.IP
|
|
40
|
-
|
|
45
|
+
Example: \fBbundle plugin install bundler\-graph \-\-git https://github\.com/rubygems/bundler\-graph\fR
|
|
46
|
+
.TP
|
|
47
|
+
\fB\-\-branch=BRANCH\fR
|
|
48
|
+
When you specify \fB\-\-git\fR, you can use \fB\-\-branch\fR to use\.
|
|
49
|
+
.TP
|
|
50
|
+
\fB\-\-ref=REF\fR
|
|
51
|
+
When you specify \fB\-\-git\fR, you can use \fB\-\-ref\fR to specify any tag, or commit hash (revision) to use\.
|
|
41
52
|
.TP
|
|
42
|
-
\
|
|
43
|
-
Install
|
|
53
|
+
\fB\-\-path=PATH\fR
|
|
54
|
+
Install the plugin gem from a local path\.
|
|
55
|
+
.IP
|
|
56
|
+
Example: \fBbundle plugin install bundler\-graph \-\-path \.\./bundler\-graph\fR
|
|
57
|
+
.TP
|
|
58
|
+
\fB\-\-local\-git=LOCAL_GIT\fR
|
|
59
|
+
Install the plugin gem from a local Git repository\.
|
|
60
|
+
.IP
|
|
61
|
+
Example: \fBbundle plugin install bundler\-graph \-\-local\-git \.\./bundler\-graph\fR\.
|
|
62
|
+
.IP
|
|
63
|
+
This option is deprecated in favor of \fB\-\-git\fR\.
|
|
44
64
|
.SS "uninstall"
|
|
45
65
|
Uninstall the plugin(s) specified in PLUGINS\.
|
|
66
|
+
.P
|
|
67
|
+
\fBOPTIONS\fR
|
|
68
|
+
.TP
|
|
69
|
+
\fB\-\-all\fR
|
|
70
|
+
Uninstall all the installed plugins\. If no plugin is installed, then it does nothing\.
|
|
46
71
|
.SS "list"
|
|
47
72
|
List the installed plugins and available commands\.
|
|
48
73
|
.P
|
|
@@ -3,10 +3,11 @@ bundle-plugin(1) -- Manage Bundler plugins
|
|
|
3
3
|
|
|
4
4
|
## SYNOPSIS
|
|
5
5
|
|
|
6
|
-
`bundle plugin` install PLUGINS [--source
|
|
7
|
-
[--git
|
|
8
|
-
[--
|
|
9
|
-
|
|
6
|
+
`bundle plugin` install PLUGINS [--source=SOURCE] [--version=VERSION]
|
|
7
|
+
[--git=GIT] [--branch=BRANCH|--ref=REF]
|
|
8
|
+
[--local-git=LOCAL_GIT]
|
|
9
|
+
[--path=PATH]<br>
|
|
10
|
+
`bundle plugin` uninstall PLUGINS [--all]<br>
|
|
10
11
|
`bundle plugin` list<br>
|
|
11
12
|
`bundle plugin` help [COMMAND]
|
|
12
13
|
|
|
@@ -20,32 +21,60 @@ You can install, uninstall, and list plugin(s) with this command to extend funct
|
|
|
20
21
|
|
|
21
22
|
Install the given plugin(s).
|
|
22
23
|
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
For example, `bundle plugin install bundler-graph` will install bundler-graph
|
|
25
|
+
gem from globally configured sources (defaults to RubyGems.org). Note that the
|
|
26
|
+
global source specified in Gemfile is ignored.
|
|
25
27
|
|
|
26
|
-
|
|
27
|
-
Install bundler-graph gem from example.com. The global source, specified in source in Gemfile is not considered.
|
|
28
|
+
**OPTIONS**
|
|
28
29
|
|
|
29
|
-
*
|
|
30
|
-
|
|
30
|
+
* `--source=SOURCE`:
|
|
31
|
+
Install the plugin gem from a specific source, rather than from globally configured sources.
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
Example: `bundle plugin install bundler-graph --source https://example.com`
|
|
34
|
+
|
|
35
|
+
* `--version=VERSION`:
|
|
36
|
+
Specify a version of the plugin gem to install via `--version`.
|
|
37
|
+
|
|
38
|
+
Example: `bundle plugin install bundler-graph --version 0.2.1`
|
|
39
|
+
|
|
40
|
+
* `--git=GIT`:
|
|
41
|
+
Install the plugin gem from a Git repository. You can use standard Git URLs like:
|
|
34
42
|
|
|
35
43
|
`ssh://[user@]host.xz[:port]/path/to/repo.git`<br>
|
|
36
44
|
`http[s]://host.xz[:port]/path/to/repo.git`<br>
|
|
37
45
|
`/path/to/repo`<br>
|
|
38
46
|
`file:///path/to/repo`
|
|
39
47
|
|
|
40
|
-
|
|
48
|
+
Example: `bundle plugin install bundler-graph --git https://github.com/rubygems/bundler-graph`
|
|
49
|
+
|
|
50
|
+
* `--branch=BRANCH`:
|
|
51
|
+
When you specify `--git`, you can use `--branch` to use.
|
|
52
|
+
|
|
53
|
+
* `--ref=REF`:
|
|
54
|
+
When you specify `--git`, you can use `--ref` to specify any tag, or commit
|
|
55
|
+
hash (revision) to use.
|
|
56
|
+
|
|
57
|
+
* `--path=PATH`:
|
|
58
|
+
Install the plugin gem from a local path.
|
|
41
59
|
|
|
42
|
-
|
|
43
|
-
|
|
60
|
+
Example: `bundle plugin install bundler-graph --path ../bundler-graph`
|
|
61
|
+
|
|
62
|
+
* `--local-git=LOCAL_GIT`:
|
|
63
|
+
Install the plugin gem from a local Git repository.
|
|
64
|
+
|
|
65
|
+
Example: `bundle plugin install bundler-graph --local-git ../bundler-graph`.
|
|
66
|
+
|
|
67
|
+
This option is deprecated in favor of `--git`.
|
|
44
68
|
|
|
45
69
|
### uninstall
|
|
46
70
|
|
|
47
71
|
Uninstall the plugin(s) specified in PLUGINS.
|
|
48
72
|
|
|
73
|
+
**OPTIONS**
|
|
74
|
+
|
|
75
|
+
* `--all`:
|
|
76
|
+
Uninstall all the installed plugins. If no plugin is installed, then it does nothing.
|
|
77
|
+
|
|
49
78
|
### list
|
|
50
79
|
|
|
51
80
|
List the installed plugins and available commands.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-PRISTINE" "1" "
|
|
3
|
+
.TH "BUNDLE\-PRISTINE" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-SHOW" "1" "
|
|
3
|
+
.TH "BUNDLE\-SHOW" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.10.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
-
.TH "BUNDLE\-UPDATE" "1" "
|
|
3
|
+
.TH "BUNDLE\-UPDATE" "1" "August 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-update\fR \- Update your gems to the latest available versions
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle update\fR \fI*gems\fR [\-\-all] [\-\-group=NAME] [\-\-source=NAME] [\-\-local] [\-\-ruby] [\-\-bundler[=VERSION]] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-quiet] [\-\-patch|\-\-minor|\-\-major] [\-\-pre] [\-\-
|
|
7
|
+
\fBbundle update\fR \fI*gems\fR [\-\-all] [\-\-group=NAME] [\-\-source=NAME] [\-\-local] [\-\-ruby] [\-\-bundler[=VERSION]] [\-\-force] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-quiet] [\-\-patch|\-\-minor|\-\-major] [\-\-pre] [\-\-strict] [\-\-conservative]
|
|
8
8
|
.SH "DESCRIPTION"
|
|
9
9
|
Update the gems specified (all gems, if \fB\-\-all\fR flag is used), ignoring the previously installed gems specified in the \fBGemfile\.lock\fR\. In general, you should use bundle install(1) \fIbundle\-install\.1\.html\fR to install the same exact gems and versions across machines\.
|
|
10
10
|
.P
|
|
@@ -29,6 +29,9 @@ Update the locked version of Ruby to the current version of Ruby\.
|
|
|
29
29
|
\fB\-\-bundler[=BUNDLER]\fR
|
|
30
30
|
Update the locked version of bundler to the invoked bundler version\.
|
|
31
31
|
.TP
|
|
32
|
+
\fB\-\-force\fR, \fB\-\-redownload\fR
|
|
33
|
+
Force reinstalling every gem, even if already installed\.
|
|
34
|
+
.TP
|
|
32
35
|
\fB\-\-full\-index\fR
|
|
33
36
|
Fall back to using the single\-file index of all gems\.
|
|
34
37
|
.TP
|
|
@@ -44,9 +47,6 @@ Retry failed network or git requests for \fInumber\fR times\.
|
|
|
44
47
|
\fB\-\-quiet\fR
|
|
45
48
|
Only output warnings and errors\.
|
|
46
49
|
.TP
|
|
47
|
-
\fB\-\-redownload\fR, \fB\-\-force\fR
|
|
48
|
-
Force downloading every gem\.
|
|
49
|
-
.TP
|
|
50
50
|
\fB\-\-patch\fR
|
|
51
51
|
Prefer updating only to next patch version\.
|
|
52
52
|
.TP
|
|
@@ -9,13 +9,13 @@ bundle-update(1) -- Update your gems to the latest available versions
|
|
|
9
9
|
[--local]
|
|
10
10
|
[--ruby]
|
|
11
11
|
[--bundler[=VERSION]]
|
|
12
|
+
[--force]
|
|
12
13
|
[--full-index]
|
|
13
14
|
[--gemfile=GEMFILE]
|
|
14
15
|
[--jobs=NUMBER]
|
|
15
16
|
[--quiet]
|
|
16
17
|
[--patch|--minor|--major]
|
|
17
18
|
[--pre]
|
|
18
|
-
[--redownload]
|
|
19
19
|
[--strict]
|
|
20
20
|
[--conservative]
|
|
21
21
|
|
|
@@ -54,6 +54,9 @@ gem.
|
|
|
54
54
|
* `--bundler[=BUNDLER]`:
|
|
55
55
|
Update the locked version of bundler to the invoked bundler version.
|
|
56
56
|
|
|
57
|
+
* `--force`, `--redownload`:
|
|
58
|
+
Force reinstalling every gem, even if already installed.
|
|
59
|
+
|
|
57
60
|
* `--full-index`:
|
|
58
61
|
Fall back to using the single-file index of all gems.
|
|
59
62
|
|
|
@@ -70,9 +73,6 @@ gem.
|
|
|
70
73
|
* `--quiet`:
|
|
71
74
|
Only output warnings and errors.
|
|
72
75
|
|
|
73
|
-
* `--redownload`, `--force`:
|
|
74
|
-
Force downloading every gem.
|
|
75
|
-
|
|
76
76
|
* `--patch`:
|
|
77
77
|
Prefer updating only to next patch version.
|
|
78
78
|
|