rubygems-update 3.7.2 → 4.0.0.beta2

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.
Files changed (211) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1431 -1323
  3. data/CODE_OF_CONDUCT.md +7 -129
  4. data/Manifest.txt +5 -11
  5. data/README.md +2 -2
  6. data/bundler/CHANGELOG.md +1011 -917
  7. data/bundler/README.md +4 -4
  8. data/bundler/bundler.gemspec +3 -3
  9. data/bundler/lib/bundler/build_metadata.rb +2 -2
  10. data/bundler/lib/bundler/capistrano.rb +1 -19
  11. data/bundler/lib/bundler/cli/cache.rb +1 -11
  12. data/bundler/lib/bundler/cli/common.rb +20 -3
  13. data/bundler/lib/bundler/cli/config.rb +1 -2
  14. data/bundler/lib/bundler/cli/console.rb +5 -0
  15. data/bundler/lib/bundler/cli/exec.rb +29 -4
  16. data/bundler/lib/bundler/cli/gem.rb +19 -33
  17. data/bundler/lib/bundler/cli/install.rb +9 -82
  18. data/bundler/lib/bundler/cli/issue.rb +2 -2
  19. data/bundler/lib/bundler/cli/list.rb +33 -2
  20. data/bundler/lib/bundler/cli/plugin.rb +5 -1
  21. data/bundler/lib/bundler/cli/show.rb +1 -1
  22. data/bundler/lib/bundler/cli/update.rb +3 -3
  23. data/bundler/lib/bundler/cli.rb +91 -85
  24. data/bundler/lib/bundler/compact_index_client.rb +0 -1
  25. data/bundler/lib/bundler/current_ruby.rb +3 -15
  26. data/bundler/lib/bundler/definition.rb +65 -36
  27. data/bundler/lib/bundler/deployment.rb +1 -64
  28. data/bundler/lib/bundler/digest.rb +1 -1
  29. data/bundler/lib/bundler/dsl.rb +26 -36
  30. data/bundler/lib/bundler/endpoint_specification.rb +0 -22
  31. data/bundler/lib/bundler/environment_preserver.rb +1 -0
  32. data/bundler/lib/bundler/errors.rb +1 -5
  33. data/bundler/lib/bundler/feature_flag.rb +0 -33
  34. data/bundler/lib/bundler/fetcher/compact_index.rb +1 -1
  35. data/bundler/lib/bundler/friendly_errors.rb +2 -2
  36. data/bundler/lib/bundler/index.rb +0 -7
  37. data/bundler/lib/bundler/inline.rb +9 -1
  38. data/bundler/lib/bundler/installer/gem_installer.rb +0 -11
  39. data/bundler/lib/bundler/installer.rb +0 -6
  40. data/bundler/lib/bundler/lockfile_generator.rb +1 -1
  41. data/bundler/lib/bundler/lockfile_parser.rb +2 -12
  42. data/bundler/lib/bundler/man/bundle-add.1 +1 -1
  43. data/bundler/lib/bundler/man/bundle-binstubs.1 +3 -6
  44. data/bundler/lib/bundler/man/bundle-binstubs.1.ronn +4 -6
  45. data/bundler/lib/bundler/man/bundle-cache.1 +2 -14
  46. data/bundler/lib/bundler/man/bundle-cache.1.ronn +1 -14
  47. data/bundler/lib/bundler/man/bundle-check.1 +2 -5
  48. data/bundler/lib/bundler/man/bundle-check.1.ronn +0 -5
  49. data/bundler/lib/bundler/man/bundle-clean.1 +1 -1
  50. data/bundler/lib/bundler/man/bundle-config.1 +9 -33
  51. data/bundler/lib/bundler/man/bundle-config.1.ronn +24 -55
  52. data/bundler/lib/bundler/man/bundle-console.1 +1 -1
  53. data/bundler/lib/bundler/man/bundle-doctor.1 +1 -1
  54. data/bundler/lib/bundler/man/bundle-env.1 +1 -1
  55. data/bundler/lib/bundler/man/bundle-exec.1 +2 -5
  56. data/bundler/lib/bundler/man/bundle-exec.1.ronn +1 -5
  57. data/bundler/lib/bundler/man/bundle-fund.1 +1 -1
  58. data/bundler/lib/bundler/man/bundle-gem.1 +3 -6
  59. data/bundler/lib/bundler/man/bundle-gem.1.ronn +2 -5
  60. data/bundler/lib/bundler/man/bundle-help.1 +1 -1
  61. data/bundler/lib/bundler/man/bundle-info.1 +1 -1
  62. data/bundler/lib/bundler/man/bundle-init.1 +1 -1
  63. data/bundler/lib/bundler/man/bundle-install.1 +14 -57
  64. data/bundler/lib/bundler/man/bundle-install.1.ronn +25 -105
  65. data/bundler/lib/bundler/man/bundle-issue.1 +1 -1
  66. data/bundler/lib/bundler/man/bundle-licenses.1 +1 -1
  67. data/bundler/lib/bundler/man/bundle-list.1 +6 -1
  68. data/bundler/lib/bundler/man/bundle-list.1.ronn +5 -0
  69. data/bundler/lib/bundler/man/bundle-lock.1 +1 -1
  70. data/bundler/lib/bundler/man/bundle-open.1 +1 -1
  71. data/bundler/lib/bundler/man/bundle-outdated.1 +1 -1
  72. data/bundler/lib/bundler/man/bundle-platform.1 +1 -1
  73. data/bundler/lib/bundler/man/bundle-plugin.1 +2 -9
  74. data/bundler/lib/bundler/man/bundle-plugin.1.ronn +0 -8
  75. data/bundler/lib/bundler/man/bundle-pristine.1 +1 -1
  76. data/bundler/lib/bundler/man/bundle-remove.1 +2 -8
  77. data/bundler/lib/bundler/man/bundle-remove.1.ronn +1 -8
  78. data/bundler/lib/bundler/man/bundle-show.1 +2 -5
  79. data/bundler/lib/bundler/man/bundle-show.1.ronn +0 -4
  80. data/bundler/lib/bundler/man/bundle-update.1 +1 -1
  81. data/bundler/lib/bundler/man/bundle-version.1 +1 -1
  82. data/bundler/lib/bundler/man/bundle.1 +1 -10
  83. data/bundler/lib/bundler/man/bundle.1.ronn +0 -9
  84. data/bundler/lib/bundler/man/gemfile.5 +32 -1
  85. data/bundler/lib/bundler/man/gemfile.5.ronn +28 -0
  86. data/bundler/lib/bundler/man/index.txt +0 -2
  87. data/bundler/lib/bundler/materialization.rb +1 -1
  88. data/bundler/lib/bundler/plugin/installer.rb +0 -10
  89. data/bundler/lib/bundler/plugin/source_list.rb +1 -1
  90. data/bundler/lib/bundler/plugin.rb +1 -1
  91. data/bundler/lib/bundler/resolver.rb +1 -1
  92. data/bundler/lib/bundler/ruby_dsl.rb +2 -0
  93. data/bundler/lib/bundler/ruby_version.rb +1 -3
  94. data/bundler/lib/bundler/rubygems_ext.rb +1 -1
  95. data/bundler/lib/bundler/rubygems_gem_installer.rb +1 -1
  96. data/bundler/lib/bundler/rubygems_integration.rb +1 -5
  97. data/bundler/lib/bundler/runtime.rb +5 -1
  98. data/bundler/lib/bundler/self_manager.rb +1 -1
  99. data/bundler/lib/bundler/settings.rb +8 -26
  100. data/bundler/lib/bundler/shared_helpers.rb +12 -20
  101. data/bundler/lib/bundler/source/git/git_proxy.rb +3 -11
  102. data/bundler/lib/bundler/source/git.rb +2 -3
  103. data/bundler/lib/bundler/source/path.rb +3 -7
  104. data/bundler/lib/bundler/source/rubygems.rb +11 -17
  105. data/bundler/lib/bundler/source.rb +1 -1
  106. data/bundler/lib/bundler/source_list.rb +4 -45
  107. data/bundler/lib/bundler/source_map.rb +2 -5
  108. data/bundler/lib/bundler/spec_set.rb +6 -15
  109. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +7 -129
  110. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +5 -0
  111. data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +12 -0
  112. data/bundler/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +1 -1
  113. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf-go.rb.tt +11 -0
  114. data/bundler/lib/bundler/templates/newgem/ext/newgem/go.mod.tt +5 -0
  115. data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem-go.c.tt +2 -0
  116. data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem.go.tt +31 -0
  117. data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +6 -0
  118. data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  119. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +4 -1
  120. data/bundler/lib/bundler/ui/shell.rb +10 -6
  121. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +26 -23
  122. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
  123. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +50 -6
  124. data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +57 -52
  125. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +5 -2
  126. data/bundler/lib/bundler/vendor/thor/lib/thor/runner.rb +1 -1
  127. data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +57 -15
  128. data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +1 -1
  129. data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +34 -21
  130. data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +12 -0
  131. data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +9 -8
  132. data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +2 -2
  133. data/bundler/lib/bundler/version.rb +1 -1
  134. data/bundler/lib/bundler/vlad.rb +1 -14
  135. data/bundler/lib/bundler.rb +6 -28
  136. data/doc/MAINTAINERS.txt +0 -7
  137. data/doc/bundler/UPGRADING.md +11 -5
  138. data/doc/rubygems/CONTRIBUTING.md +1 -1
  139. data/lib/rubygems/basic_specification.rb +3 -9
  140. data/lib/rubygems/bundler_version_finder.rb +38 -3
  141. data/lib/rubygems/command.rb +1 -1
  142. data/lib/rubygems/command_manager.rb +3 -4
  143. data/lib/rubygems/commands/build_command.rb +0 -7
  144. data/lib/rubygems/commands/cert_command.rb +1 -1
  145. data/lib/rubygems/commands/install_command.rb +1 -5
  146. data/lib/rubygems/commands/setup_command.rb +5 -3
  147. data/lib/rubygems/config_file.rb +1 -1
  148. data/lib/rubygems/dependency.rb +1 -1
  149. data/lib/rubygems/dependency_installer.rb +0 -77
  150. data/lib/rubygems/dependency_list.rb +1 -2
  151. data/lib/rubygems/deprecate.rb +74 -72
  152. data/lib/rubygems/doctor.rb +1 -1
  153. data/lib/rubygems/errors.rb +1 -1
  154. data/lib/rubygems/exceptions.rb +2 -3
  155. data/lib/rubygems/ext/builder.rb +6 -2
  156. data/lib/rubygems/ext/cargo_builder.rb +2 -2
  157. data/lib/rubygems/ext/cmake_builder.rb +97 -8
  158. data/lib/rubygems/ext/configure_builder.rb +2 -2
  159. data/lib/rubygems/ext/ext_conf_builder.rb +6 -2
  160. data/lib/rubygems/ext/rake_builder.rb +2 -2
  161. data/lib/rubygems/gem_runner.rb +0 -1
  162. data/lib/rubygems/install_update_options.rb +1 -2
  163. data/lib/rubygems/installer.rb +16 -54
  164. data/lib/rubygems/name_tuple.rb +7 -1
  165. data/lib/rubygems/package/tar_header.rb +4 -4
  166. data/lib/rubygems/package/tar_reader.rb +2 -0
  167. data/lib/rubygems/package/tar_writer.rb +1 -1
  168. data/lib/rubygems/package.rb +21 -12
  169. data/lib/rubygems/platform.rb +31 -11
  170. data/lib/rubygems/remote_fetcher.rb +8 -5
  171. data/lib/rubygems/resolver/conflict.rb +1 -1
  172. data/lib/rubygems/resolver.rb +1 -1
  173. data/lib/rubygems/security/signer.rb +1 -1
  174. data/lib/rubygems/source.rb +2 -2
  175. data/lib/rubygems/spec_fetcher.rb +4 -4
  176. data/lib/rubygems/specification.rb +5 -96
  177. data/lib/rubygems/specification_policy.rb +0 -36
  178. data/lib/rubygems/specification_record.rb +1 -1
  179. data/lib/rubygems/text.rb +1 -1
  180. data/lib/rubygems/uninstaller.rb +17 -6
  181. data/lib/rubygems/user_interaction.rb +6 -9
  182. data/lib/rubygems/util.rb +0 -22
  183. data/lib/rubygems/validator.rb +1 -1
  184. data/lib/rubygems/vendor/net-http/lib/net/http/generic_request.rb +25 -9
  185. data/lib/rubygems/vendor/net-http/lib/net/http/responses.rb +2 -2
  186. data/lib/rubygems/vendor/net-http/lib/net/http.rb +14 -14
  187. data/lib/rubygems/vendor/optparse/lib/optparse.rb +82 -41
  188. data/lib/rubygems/vendor/resolv/lib/resolv.rb +1 -1
  189. data/lib/rubygems/vendor/timeout/lib/timeout.rb +4 -1
  190. data/lib/rubygems/vendor/uri/lib/uri/common.rb +57 -15
  191. data/lib/rubygems/vendor/uri/lib/uri/file.rb +1 -1
  192. data/lib/rubygems/vendor/uri/lib/uri/generic.rb +34 -21
  193. data/lib/rubygems/vendor/uri/lib/uri/http.rb +12 -0
  194. data/lib/rubygems/vendor/uri/lib/uri/rfc2396_parser.rb +9 -8
  195. data/lib/rubygems/vendor/uri/lib/uri/version.rb +2 -2
  196. data/lib/rubygems/version.rb +8 -20
  197. data/lib/rubygems/win_platform.rb +31 -0
  198. data/lib/rubygems.rb +12 -40
  199. data/rubygems-update.gemspec +6 -4
  200. metadata +10 -18
  201. data/bundler/lib/bundler/cli/inject.rb +0 -60
  202. data/bundler/lib/bundler/cli/viz.rb +0 -31
  203. data/bundler/lib/bundler/graph.rb +0 -152
  204. data/bundler/lib/bundler/man/bundle-inject.1 +0 -31
  205. data/bundler/lib/bundler/man/bundle-inject.1.ronn +0 -32
  206. data/bundler/lib/bundler/man/bundle-viz.1 +0 -30
  207. data/bundler/lib/bundler/man/bundle-viz.1.ronn +0 -36
  208. data/bundler/lib/bundler/similarity_detector.rb +0 -63
  209. data/lib/rubygems/commands/query_command.rb +0 -43
  210. data/lib/rubygems/compatibility.rb +0 -41
  211. data/lib/rubygems/install_default_message.rb +0 -13
@@ -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" "August 2025" ""
3
+ .TH "BUNDLE\-INSTALL" "1" "September 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] [\-\-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\|\.\|\.\|\.]]
7
+ \fBbundle install\fR [\-\-force] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-local] [\-\-lockfile=LOCKFILE] [\-\-no\-cache] [\-\-no\-lock] [\-\-prefer\-local] [\-\-quiet] [\-\-retry=NUMBER] [\-\-standalone[=GROUP[ GROUP\|\.\|\.\|\.]]] [\-\-trust\-policy=TRUST\-POLICY] [\-\-target\-rbconfig=TARGET\-RBCONFIG]
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
@@ -12,31 +12,10 @@ If a \fBGemfile\.lock\fR does exist, and you have not updated your Gemfile(5), B
12
12
  .P
13
13
  If a \fBGemfile\.lock\fR does exist, and you have updated your Gemfile(5), Bundler will use the dependencies in the \fBGemfile\.lock\fR for all gems that you did not update, but will re\-resolve the dependencies of gems that you did update\. You can find more information about this update process below under \fICONSERVATIVE UPDATING\fR\.
14
14
  .SH "OPTIONS"
15
- The \fB\-\-clean\fR, \fB\-\-deployment\fR, \fB\-\-frozen\fR, \fB\-\-no\-prune\fR, \fB\-\-path\fR, \fB\-\-shebang\fR, \fB\-\-system\fR, \fB\-\-without\fR and \fB\-\-with\fR options are deprecated because they only make sense if they are applied to every subsequent \fBbundle install\fR run automatically and that requires \fBbundler\fR to silently remember them\. Since \fBbundler\fR will no longer remember CLI flags in future versions, \fBbundle config\fR (see bundle\-config(1)) should be used to apply them permanently\.
16
- .TP
17
- \fB\-\-binstubs[=BINSTUBS]\fR
18
- Binstubs are scripts that wrap around executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it in \fBbin/\fR\. This lets you link the binstub inside of an application to the exact gem version the application needs\.
19
- .IP
20
- Creates a directory (defaults to \fB~/bin\fR when the option is used without a value, or to the given \fB<BINSTUBS>\fR directory otherwise) and places any executables from the gem there\. These executables run in Bundler's context\. If used, you might add this directory to your environment's \fBPATH\fR variable\. For instance, if the \fBrails\fR gem comes with a \fBrails\fR executable, this flag will create a \fBbin/rails\fR executable that ensures that all referred dependencies will be resolved using the bundled gems\.
21
- .TP
22
- \fB\-\-clean\fR
23
- On finishing the installation Bundler is going to remove any gems not present in the current Gemfile(5)\. Don't worry, gems currently in use will not be removed\.
24
- .IP
25
- This option is deprecated in favor of the \fBclean\fR setting\.
26
- .TP
27
- \fB\-\-deployment\fR
28
- In \fIdeployment mode\fR, Bundler will 'roll\-out' the bundle for production or CI use\. Please check carefully if you want to have this option enabled in your development environment\.
29
- .IP
30
- This option is deprecated in favor of the \fBdeployment\fR setting\.
31
15
  .TP
32
16
  \fB\-\-force\fR, \fB\-\-redownload\fR
33
17
  Force reinstalling every gem, even if already installed\.
34
18
  .TP
35
- \fB\-\-frozen\fR
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\.
37
- .IP
38
- This option is deprecated in favor of the \fBfrozen\fR setting\.
39
- .TP
40
19
  \fB\-\-full\-index\fR
41
20
  Bundler will not call Rubygems' API endpoint (default) but download and cache a (currently big) index file of all gems\. Performance can be improved for large bundles that seldom change by enabling this option\.
42
21
  .TP
@@ -49,21 +28,19 @@ The maximum number of parallel download and install jobs\. The default is the nu
49
28
  \fB\-\-local\fR
50
29
  Do not attempt to connect to \fBrubygems\.org\fR\. Instead, Bundler will use the gems already present in Rubygems' cache or in \fBvendor/cache\fR\. Note that if an appropriate platform\-specific gem exists on \fBrubygems\.org\fR it will not be found\.
51
30
  .TP
31
+ \fB\-\-lockfile=LOCKFILE\fR
32
+ The location of the lockfile which Bundler should use\. This defaults to the Gemfile location with \fB\.lock\fR appended\.
33
+ .TP
52
34
  \fB\-\-prefer\-local\fR
53
35
  Force using locally installed gems, or gems already present in Rubygems' cache or in \fBvendor/cache\fR, when resolving, even if newer versions are available remotely\. Only attempt to connect to \fBrubygems\.org\fR for gems that are not present locally\.
54
36
  .TP
55
37
  \fB\-\-no\-cache\fR
56
38
  Do not update the cache in \fBvendor/cache\fR with the newly bundled gems\. This does not remove any gems in the cache but keeps the newly bundled gems from being cached during the install\.
57
39
  .TP
58
- \fB\-\-no\-prune\fR
59
- Don't remove stale gems from the cache when the installation finishes\.
40
+ \fB\-\-no\-lock\fR
41
+ Do not create a lockfile\. Useful if you want to install dependencies but not lock versions of gems\. Recommended for library development, and other situations where the code is expected to work with a range of dependency versions\.
60
42
  .IP
61
- This option is deprecated in favor of the \fBno_prune\fR setting\.
62
- .TP
63
- \fB\-\-path=PATH\fR
64
- The location to install the specified gems to\. This defaults to Rubygems' setting\. Bundler shares this location with Rubygems, \fBgem install \|\.\|\.\|\.\fR will have gem installed there, too\. Therefore, gems installed without a \fB\-\-path \|\.\|\.\|\.\fR setting will show up by calling \fBgem list\fR\. Accordingly, gems installed to other locations will not get listed\.
65
- .IP
66
- This option is deprecated in favor of the \fBpath\fR setting\.
43
+ This has the same effect as using \fBlockfile false\fR in the Gemfile\. See gemfile(5) for more information\.
67
44
  .TP
68
45
  \fB\-\-quiet\fR
69
46
  Do not print progress information to the standard output\.
@@ -71,36 +48,16 @@ Do not print progress information to the standard output\.
71
48
  \fB\-\-retry=[<number>]\fR
72
49
  Retry failed network or git requests for \fInumber\fR times\.
73
50
  .TP
74
- \fB\-\-shebang=SHEBANG\fR
75
- Uses the specified ruby executable (usually \fBruby\fR) to execute the scripts created with \fB\-\-binstubs\fR\. In addition, if you use \fB\-\-binstubs\fR together with \fB\-\-shebang jruby\fR these executables will be changed to execute \fBjruby\fR instead\.
76
- .IP
77
- This option is deprecated in favor of the \fBshebang\fR setting\.
78
- .TP
79
51
  \fB\-\-standalone[=<list>]\fR
80
- Makes a bundle that can work without depending on Rubygems or Bundler at runtime\. A space separated list of groups to install can be specified\. Bundler creates a directory named \fBbundle\fR and installs the bundle there\. It also generates a \fBbundle/bundler/setup\.rb\fR file to replace Bundler's own setup in the manner required\. Using this option implicitly sets \fBpath\fR, which is a [remembered option][REMEMBERED OPTIONS]\.
81
- .TP
82
- \fB\-\-system\fR
83
- Installs the gems specified in the bundle to the system's Rubygems location\. This overrides any previous configuration of \fB\-\-path\fR\.
84
- .IP
85
- This option is deprecated in favor of the \fBsystem\fR setting\.
52
+ Makes a bundle that can work without depending on Rubygems or Bundler at runtime\. A space separated list of groups to install can be specified\. Bundler creates a directory named \fBbundle\fR and installs the bundle there\. It also generates a \fBbundle/bundler/setup\.rb\fR file to replace Bundler's own setup in the manner required\.
86
53
  .TP
87
54
  \fB\-\-trust\-policy=TRUST\-POLICY\fR
88
55
  Apply the Rubygems security policy \fIpolicy\fR, where policy is one of \fBHighSecurity\fR, \fBMediumSecurity\fR, \fBLowSecurity\fR, \fBAlmostNoSecurity\fR, or \fBNoSecurity\fR\. For more details, please see the Rubygems signing documentation linked below in \fISEE ALSO\fR\.
89
56
  .TP
90
57
  \fB\-\-target\-rbconfig=TARGET\-RBCONFIG\fR
91
58
  Path to rbconfig\.rb for the deployment target platform\.
92
- .TP
93
- \fB\-\-with=<list>\fR
94
- A space\-separated list of groups referencing gems to install\. If an optional group is given it is installed\. If a group is given that is in the remembered list of groups given to \-\-without, it is removed from that list\.
95
- .IP
96
- This option is deprecated in favor of the \fBwith\fR setting\.
97
- .TP
98
- \fB\-\-without=<list>\fR
99
- A space\-separated list of groups referencing gems to skip during installation\. If a group is given that is in the remembered list of groups given to \-\-with, it is removed from that list\.
100
- .IP
101
- This option is deprecated in favor of the \fBwithout\fR setting\.
102
59
  .SH "DEPLOYMENT MODE"
103
- Bundler's defaults are optimized for development\. To switch to defaults optimized for deployment and for CI, use the \fB\-\-deployment\fR flag\. Do not activate deployment mode on development machines, as it will cause an error when the Gemfile(5) is modified\.
60
+ Bundler's defaults are optimized for development\. To switch to defaults optimized for deployment and for CI, use the \fBdeployment\fR setting\. Do not activate deployment mode on development machines, as it will cause an error when the Gemfile(5) is modified\.
104
61
  .IP "1." 4
105
62
  A \fBGemfile\.lock\fR is required\.
106
63
  .IP
@@ -120,14 +77,14 @@ In development, it's convenient to share the gems used in your application with
120
77
  .IP
121
78
  In deployment, isolation is a more important default\. In addition, the user deploying the application may not have permission to install gems to the system, or the web server may not have permission to read them\.
122
79
  .IP
123
- As a result, \fBbundle install \-\-deployment\fR installs gems to the \fBvendor/bundle\fR directory in the application\. This may be overridden using the \fB\-\-path\fR option\.
80
+ As a result, when \fBdeployment\fR is configured, \fBbundle install\fR installs gems to the \fBvendor/bundle\fR directory in the application\. This may be overridden using the \fBpath\fR setting\.
124
81
  .IP "" 0
125
82
  .SH "INSTALLING GROUPS"
126
83
  By default, \fBbundle install\fR will install all gems in all groups in your Gemfile(5), except those declared for a different platform\.
127
84
  .P
128
- However, you can explicitly tell Bundler to skip installing certain groups with the \fB\-\-without\fR option\. This option takes a space\-separated list of groups\.
85
+ However, you can explicitly tell Bundler to skip installing certain groups with the \fBwithout\fR setting\. This setting takes a space\-separated list of groups\.
129
86
  .P
130
- While the \fB\-\-without\fR option will skip \fIinstalling\fR the gems in the specified groups, it will still \fIdownload\fR those gems and use them to resolve the dependencies of every gem in your Gemfile(5)\.
87
+ While the \fBwithout\fR setting will skip \fIinstalling\fR the gems in the specified groups, \fBbundle install\fR will still \fIdownload\fR those gems and use them to resolve the dependencies of every gem in your Gemfile(5)\.
131
88
  .P
132
89
  This is so that installing a different set of groups on another machine (such as a production server) will not change the gems and versions that you have already developed and tested against\.
133
90
  .P
@@ -148,7 +105,7 @@ end
148
105
  .P
149
106
  In this case, \fBsinatra\fR depends on any version of Rack (\fB>= 1\.0\fR), while \fBrack\-perftools\-profiler\fR depends on 1\.x (\fB~> 1\.0\fR)\.
150
107
  .P
151
- When you run \fBbundle install \-\-without production\fR in development, we look at the dependencies of \fBrack\-perftools\-profiler\fR as well\. That way, you do not spend all your time developing against Rack 2\.0, using new APIs unavailable in Rack 1\.x, only to have Bundler switch to Rack 1\.2 when the \fBproduction\fR group \fIis\fR used\.
108
+ When you configure \fBbundle config without production\fR in development, we look at the dependencies of \fBrack\-perftools\-profiler\fR as well\. That way, you do not spend all your time developing against Rack 2\.0, using new APIs unavailable in Rack 1\.x, only to have Bundler switch to Rack 1\.2 when the \fBproduction\fR group \fIis\fR used\.
152
109
  .P
153
110
  This should not cause any problems in practice, because we do not attempt to \fBinstall\fR the gems in the excluded groups, and only evaluate as part of the dependency resolution process\.
154
111
  .P
@@ -3,28 +3,20 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `bundle install` [--binstubs[=DIRECTORY]]
7
- [--clean]
8
- [--deployment]
9
- [--force]
10
- [--frozen]
6
+ `bundle install` [--force]
11
7
  [--full-index]
12
8
  [--gemfile=GEMFILE]
13
9
  [--jobs=NUMBER]
14
10
  [--local]
11
+ [--lockfile=LOCKFILE]
15
12
  [--no-cache]
16
- [--no-prune]
17
- [--path PATH]
13
+ [--no-lock]
18
14
  [--prefer-local]
19
15
  [--quiet]
20
16
  [--retry=NUMBER]
21
- [--shebang=SHEBANG]
22
17
  [--standalone[=GROUP[ GROUP...]]]
23
- [--system]
24
18
  [--trust-policy=TRUST-POLICY]
25
19
  [--target-rbconfig=TARGET-RBCONFIG]
26
- [--with=GROUP[ GROUP...]]
27
- [--without=GROUP[ GROUP...]]
28
20
 
29
21
  ## DESCRIPTION
30
22
 
@@ -45,50 +37,9 @@ update process below under [CONSERVATIVE UPDATING][].
45
37
 
46
38
  ## OPTIONS
47
39
 
48
- The `--clean`, `--deployment`, `--frozen`, `--no-prune`, `--path`, `--shebang`,
49
- `--system`, `--without` and `--with` options are deprecated because they only
50
- make sense if they are applied to every subsequent `bundle install` run
51
- automatically and that requires `bundler` to silently remember them. Since
52
- `bundler` will no longer remember CLI flags in future versions, `bundle config`
53
- (see bundle-config(1)) should be used to apply them permanently.
54
-
55
- * `--binstubs[=BINSTUBS]`:
56
- Binstubs are scripts that wrap around executables. Bundler creates a small Ruby
57
- file (a binstub) that loads Bundler, runs the command, and puts it in `bin/`.
58
- This lets you link the binstub inside of an application to the exact gem
59
- version the application needs.
60
-
61
- Creates a directory (defaults to `~/bin` when the option is used without a
62
- value, or to the given `<BINSTUBS>` directory otherwise) and places any
63
- executables from the gem there. These executables run in Bundler's context. If
64
- used, you might add this directory to your environment's `PATH` variable. For
65
- instance, if the `rails` gem comes with a `rails` executable, this flag will
66
- create a `bin/rails` executable that ensures that all referred dependencies
67
- will be resolved using the bundled gems.
68
-
69
- * `--clean`:
70
- On finishing the installation Bundler is going to remove any gems not present
71
- in the current Gemfile(5). Don't worry, gems currently in use will not be
72
- removed.
73
-
74
- This option is deprecated in favor of the `clean` setting.
75
-
76
- * `--deployment`:
77
- In [deployment mode][DEPLOYMENT MODE], Bundler will 'roll-out' the bundle for
78
- production or CI use. Please check carefully if you want to have this option
79
- enabled in your development environment.
80
-
81
- This option is deprecated in favor of the `deployment` setting.
82
-
83
40
  * `--force`, `--redownload`:
84
41
  Force reinstalling every gem, even if already installed.
85
42
 
86
- * `--frozen`:
87
- Do not allow the Gemfile.lock to be updated after this install. Exits
88
- non-zero if there are going to be changes to the Gemfile.lock.
89
-
90
- This option is deprecated in favor of the `frozen` setting.
91
-
92
43
  * `--full-index`:
93
44
  Bundler will not call Rubygems' API endpoint (default) but download and cache
94
45
  a (currently big) index file of all gems. Performance can be improved for
@@ -111,6 +62,10 @@ automatically and that requires `bundler` to silently remember them. Since
111
62
  appropriate platform-specific gem exists on `rubygems.org` it will not be
112
63
  found.
113
64
 
65
+ * `--lockfile=LOCKFILE`:
66
+ The location of the lockfile which Bundler should use. This defaults
67
+ to the Gemfile location with `.lock` appended.
68
+
114
69
  * `--prefer-local`:
115
70
  Force using locally installed gems, or gems already present in Rubygems' cache
116
71
  or in `vendor/cache`, when resolving, even if newer versions are available
@@ -122,19 +77,14 @@ automatically and that requires `bundler` to silently remember them. Since
122
77
  does not remove any gems in the cache but keeps the newly bundled gems from
123
78
  being cached during the install.
124
79
 
125
- * `--no-prune`:
126
- Don't remove stale gems from the cache when the installation finishes.
80
+ * `--no-lock`:
81
+ Do not create a lockfile. Useful if you want to install dependencies but not
82
+ lock versions of gems. Recommended for library development, and other
83
+ situations where the code is expected to work with a range of dependency
84
+ versions.
127
85
 
128
- This option is deprecated in favor of the `no_prune` setting.
129
-
130
- * `--path=PATH`:
131
- The location to install the specified gems to. This defaults to Rubygems'
132
- setting. Bundler shares this location with Rubygems, `gem install ...` will
133
- have gem installed there, too. Therefore, gems installed without a
134
- `--path ...` setting will show up by calling `gem list`. Accordingly, gems
135
- installed to other locations will not get listed.
136
-
137
- This option is deprecated in favor of the `path` setting.
86
+ This has the same effect as using `lockfile false` in the Gemfile.
87
+ See gemfile(5) for more information.
138
88
 
139
89
  * `--quiet`:
140
90
  Do not print progress information to the standard output.
@@ -142,27 +92,12 @@ automatically and that requires `bundler` to silently remember them. Since
142
92
  * `--retry=[<number>]`:
143
93
  Retry failed network or git requests for <number> times.
144
94
 
145
- * `--shebang=SHEBANG`:
146
- Uses the specified ruby executable (usually `ruby`) to execute the scripts
147
- created with `--binstubs`. In addition, if you use `--binstubs` together with
148
- `--shebang jruby` these executables will be changed to execute `jruby`
149
- instead.
150
-
151
- This option is deprecated in favor of the `shebang` setting.
152
-
153
95
  * `--standalone[=<list>]`:
154
96
  Makes a bundle that can work without depending on Rubygems or Bundler at
155
97
  runtime. A space separated list of groups to install can be specified.
156
98
  Bundler creates a directory named `bundle` and installs the bundle there. It
157
99
  also generates a `bundle/bundler/setup.rb` file to replace Bundler's own setup
158
- in the manner required. Using this option implicitly sets `path`, which is a
159
- [remembered option][REMEMBERED OPTIONS].
160
-
161
- * `--system`:
162
- Installs the gems specified in the bundle to the system's Rubygems location.
163
- This overrides any previous configuration of `--path`.
164
-
165
- This option is deprecated in favor of the `system` setting.
100
+ in the manner required.
166
101
 
167
102
  * `--trust-policy=TRUST-POLICY`:
168
103
  Apply the Rubygems security policy <policy>, where policy is one of
@@ -173,26 +108,11 @@ automatically and that requires `bundler` to silently remember them. Since
173
108
  * `--target-rbconfig=TARGET-RBCONFIG`:
174
109
  Path to rbconfig.rb for the deployment target platform.
175
110
 
176
- * `--with=<list>`:
177
- A space-separated list of groups referencing gems to install. If an
178
- optional group is given it is installed. If a group is given that is
179
- in the remembered list of groups given to --without, it is removed
180
- from that list.
181
-
182
- This option is deprecated in favor of the `with` setting.
183
-
184
- * `--without=<list>`:
185
- A space-separated list of groups referencing gems to skip during installation.
186
- If a group is given that is in the remembered list of groups given
187
- to --with, it is removed from that list.
188
-
189
- This option is deprecated in favor of the `without` setting.
190
-
191
111
  ## DEPLOYMENT MODE
192
112
 
193
113
  Bundler's defaults are optimized for development. To switch to
194
- defaults optimized for deployment and for CI, use the `--deployment`
195
- flag. Do not activate deployment mode on development machines, as it
114
+ defaults optimized for deployment and for CI, use the `deployment`
115
+ setting. Do not activate deployment mode on development machines, as it
196
116
  will cause an error when the Gemfile(5) is modified.
197
117
 
198
118
  1. A `Gemfile.lock` is required.
@@ -224,9 +144,9 @@ will cause an error when the Gemfile(5) is modified.
224
144
  gems to the system, or the web server may not have permission to
225
145
  read them.
226
146
 
227
- As a result, `bundle install --deployment` installs gems to
228
- the `vendor/bundle` directory in the application. This may be
229
- overridden using the `--path` option.
147
+ As a result, when `deployment` is configured, `bundle install` installs gems
148
+ to the `vendor/bundle` directory in the application. This may be
149
+ overridden using the `path` setting.
230
150
 
231
151
  ## INSTALLING GROUPS
232
152
 
@@ -234,12 +154,12 @@ By default, `bundle install` will install all gems in all groups
234
154
  in your Gemfile(5), except those declared for a different platform.
235
155
 
236
156
  However, you can explicitly tell Bundler to skip installing
237
- certain groups with the `--without` option. This option takes
157
+ certain groups with the `without` setting. This setting takes
238
158
  a space-separated list of groups.
239
159
 
240
- While the `--without` option will skip _installing_ the gems in the
241
- specified groups, it will still _download_ those gems and use them to
242
- resolve the dependencies of every gem in your Gemfile(5).
160
+ While the `without` setting will skip _installing_ the gems in the
161
+ specified groups, `bundle install` will still _download_ those gems and use them
162
+ to resolve the dependencies of every gem in your Gemfile(5).
243
163
 
244
164
  This is so that installing a different set of groups on another
245
165
  machine (such as a production server) will not change the
@@ -265,7 +185,7 @@ For a simple illustration, consider the following Gemfile(5):
265
185
  In this case, `sinatra` depends on any version of Rack (`>= 1.0`), while
266
186
  `rack-perftools-profiler` depends on 1.x (`~> 1.0`).
267
187
 
268
- When you run `bundle install --without production` in development, we
188
+ When you configure `bundle config without production` in development, we
269
189
  look at the dependencies of `rack-perftools-profiler` as well. That way,
270
190
  you do not spend all your time developing against Rack 2.0, using new
271
191
  APIs unavailable in Rack 1.x, only to have Bundler switch to Rack 1.2
@@ -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\-ISSUE" "1" "August 2025" ""
3
+ .TH "BUNDLE\-ISSUE" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-issue\fR \- Get help reporting Bundler issues
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\-LICENSES" "1" "August 2025" ""
3
+ .TH "BUNDLE\-LICENSES" "1" "September 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\-LIST" "1" "August 2025" ""
3
+ .TH "BUNDLE\-LIST" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-list\fR \- List all the gems in the bundle
6
6
  .SH "SYNOPSIS"
@@ -19,6 +19,8 @@ bundle list \-\-without\-group test
19
19
  bundle list \-\-only\-group dev
20
20
  .P
21
21
  bundle list \-\-only\-group dev test \-\-paths
22
+ .P
23
+ bundle list \-\-format json
22
24
  .SH "OPTIONS"
23
25
  .TP
24
26
  \fB\-\-name\-only\fR
@@ -32,4 +34,7 @@ A space\-separated list of groups of gems to skip during printing\.
32
34
  .TP
33
35
  \fB\-\-only\-group=<list>\fR
34
36
  A space\-separated list of groups of gems to print\.
37
+ .TP
38
+ \fB\-\-format=FORMAT\fR
39
+ Format output ('json' is the only supported format)
35
40
 
@@ -21,6 +21,8 @@ bundle list --only-group dev
21
21
 
22
22
  bundle list --only-group dev test --paths
23
23
 
24
+ bundle list --format json
25
+
24
26
  ## OPTIONS
25
27
 
26
28
  * `--name-only`:
@@ -34,3 +36,6 @@ bundle list --only-group dev test --paths
34
36
 
35
37
  * `--only-group=<list>`:
36
38
  A space-separated list of groups of gems to print.
39
+
40
+ * `--format=FORMAT`:
41
+ Format output ('json' is the only supported format)
@@ -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" "August 2025" ""
3
+ .TH "BUNDLE\-LOCK" "1" "September 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" "August 2025" ""
3
+ .TH "BUNDLE\-OPEN" "1" "September 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" "August 2025" ""
3
+ .TH "BUNDLE\-OUTDATED" "1" "September 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" "August 2025" ""
3
+ .TH "BUNDLE\-PLATFORM" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-platform\fR \- Displays platform compatibility information
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\-PLUGIN" "1" "August 2025" ""
3
+ .TH "BUNDLE\-PLUGIN" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-plugin\fR \- Manage Bundler plugins
6
6
  .SH "SYNOPSIS"
7
- \fBbundle plugin\fR install PLUGINS [\-\-source=SOURCE] [\-\-version=VERSION] [\-\-git=GIT] [\-\-branch=BRANCH|\-\-ref=REF] [\-\-local\-git=LOCAL_GIT] [\-\-path=PATH]
7
+ \fBbundle plugin\fR install PLUGINS [\-\-source=SOURCE] [\-\-version=VERSION] [\-\-git=GIT] [\-\-branch=BRANCH|\-\-ref=REF] [\-\-path=PATH]
8
8
  .br
9
9
  \fBbundle plugin\fR uninstall PLUGINS [\-\-all]
10
10
  .br
@@ -54,13 +54,6 @@ When you specify \fB\-\-git\fR, you can use \fB\-\-ref\fR to specify any tag, or
54
54
  Install the plugin gem from a local path\.
55
55
  .IP
56
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\.
64
57
  .SS "uninstall"
65
58
  Uninstall the plugin(s) specified in PLUGINS\.
66
59
  .P
@@ -5,7 +5,6 @@ bundle-plugin(1) -- Manage Bundler plugins
5
5
 
6
6
  `bundle plugin` install PLUGINS [--source=SOURCE] [--version=VERSION]
7
7
  [--git=GIT] [--branch=BRANCH|--ref=REF]
8
- [--local-git=LOCAL_GIT]
9
8
  [--path=PATH]<br>
10
9
  `bundle plugin` uninstall PLUGINS [--all]<br>
11
10
  `bundle plugin` list<br>
@@ -59,13 +58,6 @@ global source specified in Gemfile is ignored.
59
58
 
60
59
  Example: `bundle plugin install bundler-graph --path ../bundler-graph`
61
60
 
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`.
68
-
69
61
  ### uninstall
70
62
 
71
63
  Uninstall the plugin(s) specified in PLUGINS.
@@ -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" "August 2025" ""
3
+ .TH "BUNDLE\-PRISTINE" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
6
6
  .SH "SYNOPSIS"
@@ -1,21 +1,15 @@
1
1
  .\" generated with Ronn-NG/v0.10.1
2
2
  .\" http://github.com/apjanke/ronn-ng/tree/0.10.1
3
- .TH "BUNDLE\-REMOVE" "1" "August 2025" ""
3
+ .TH "BUNDLE\-REMOVE" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-remove\fR \- Removes gems from the Gemfile
6
6
  .SH "SYNOPSIS"
7
- \fBbundle remove [GEM [GEM \|\.\|\.\|\.]] [\-\-install]\fR
7
+ `bundle remove [GEM [GEM \|\.\|\.\|\.]]
8
8
  .SH "DESCRIPTION"
9
9
  Removes the given gems from the Gemfile while ensuring that the resulting Gemfile is still valid\. If a gem cannot be removed, a warning is printed\. If a gem is already absent from the Gemfile, and error is raised\.
10
- .SH "OPTIONS"
11
- .TP
12
- \fB\-\-install\fR
13
- Runs \fBbundle install\fR after the given gems have been removed from the Gemfile, which ensures that both the lockfile and the installed gems on disk are also updated to remove the given gem(s)\.
14
10
  .P
15
11
  Example:
16
12
  .P
17
13
  bundle remove rails
18
14
  .P
19
15
  bundle remove rails rack
20
- .P
21
- bundle remove rails rack \-\-install
@@ -3,21 +3,14 @@ bundle-remove(1) -- Removes gems from the Gemfile
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `bundle remove [GEM [GEM ...]] [--install]`
6
+ `bundle remove [GEM [GEM ...]]
7
7
 
8
8
  ## DESCRIPTION
9
9
 
10
10
  Removes the given gems from the Gemfile while ensuring that the resulting Gemfile is still valid. If a gem cannot be removed, a warning is printed. If a gem is already absent from the Gemfile, and error is raised.
11
11
 
12
- ## OPTIONS
13
-
14
- * `--install`:
15
- Runs `bundle install` after the given gems have been removed from the Gemfile, which ensures that both the lockfile and the installed gems on disk are also updated to remove the given gem(s).
16
-
17
12
  Example:
18
13
 
19
14
  bundle remove rails
20
15
 
21
16
  bundle remove rails rack
22
-
23
- bundle remove rails rack --install
@@ -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\-SHOW" "1" "August 2025" ""
3
+ .TH "BUNDLE\-SHOW" "1" "September 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"
7
- \fBbundle show\fR [GEM] [\-\-paths] [\-\-outdated]
7
+ \fBbundle show\fR [GEM] [\-\-paths]
8
8
  .SH "DESCRIPTION"
9
9
  Without the [GEM] option, \fBshow\fR will print a list of the names and versions of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by name\.
10
10
  .P
@@ -13,7 +13,4 @@ Calling show with [GEM] will list the exact location of that gem on your machine
13
13
  .TP
14
14
  \fB\-\-paths\fR
15
15
  List the paths of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by gem name\.
16
- .TP
17
- \fB\-\-outdated\fR
18
- Show verbose output including whether gems are outdated\.
19
16
 
@@ -5,7 +5,6 @@ bundle-show(1) -- Shows all the gems in your bundle, or the path to a gem
5
5
 
6
6
  `bundle show` [GEM]
7
7
  [--paths]
8
- [--outdated]
9
8
 
10
9
  ## DESCRIPTION
11
10
 
@@ -20,6 +19,3 @@ machine.
20
19
  * `--paths`:
21
20
  List the paths of all gems that are required by your [`Gemfile(5)`][Gemfile(5)],
22
21
  sorted by gem name.
23
-
24
- * `--outdated`:
25
- Show verbose output including whether gems are outdated.
@@ -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\-UPDATE" "1" "August 2025" ""
3
+ .TH "BUNDLE\-UPDATE" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-update\fR \- Update your gems to the latest available versions
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\-VERSION" "1" "August 2025" ""
3
+ .TH "BUNDLE\-VERSION" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-version\fR \- Prints Bundler version information
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" "1" "August 2025" ""
3
+ .TH "BUNDLE" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\fR \- Ruby Dependency Management
6
6
  .SH "SYNOPSIS"
@@ -66,9 +66,6 @@ Open an installed gem in the editor
66
66
  \fBbundle lock(1)\fR \fIbundle\-lock\.1\.html\fR
67
67
  Generate a lockfile for your dependencies
68
68
  .TP
69
- \fBbundle viz(1)\fR \fIbundle\-viz\.1\.html\fR (deprecated)
70
- Generate a visual representation of your dependencies
71
- .TP
72
69
  \fBbundle init(1)\fR \fIbundle\-init\.1\.html\fR
73
70
  Generate a simple \fBGemfile\fR, placed in the current directory
74
71
  .TP
@@ -94,9 +91,3 @@ Manage Bundler plugins
94
91
  Prints Bundler version information
95
92
  .SH "PLUGINS"
96
93
  When running a command that isn't listed in PRIMARY COMMANDS or UTILITIES, Bundler will try to find an executable on your path named \fBbundler\-<command>\fR and execute it, passing down any extra arguments to it\.
97
- .SH "OBSOLETE"
98
- These commands are obsolete and should no longer be used:
99
- .IP "\(bu" 4
100
- \fBbundle inject(1)\fR
101
- .IP "" 0
102
-