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
@@ -141,18 +141,8 @@ module Bundler
141
141
  @pos.advance!(line)
142
142
  end
143
143
 
144
- if !Bundler.frozen_bundle? && @platforms.include?(Gem::Platform::X64_MINGW_LEGACY)
145
- if @platforms.include?(Gem::Platform::X64_MINGW)
146
- @platforms.delete(Gem::Platform::X64_MINGW_LEGACY)
147
- SharedHelpers.major_deprecation(2,
148
- "Found x64-mingw32 in lockfile, which is deprecated. Removing it. Support for x64-mingw32 will be removed in Bundler 4.0.",
149
- removed_message: "Found x64-mingw32 in lockfile, which is no longer supported as of Bundler 4.0.")
150
- else
151
- @platforms[@platforms.index(Gem::Platform::X64_MINGW_LEGACY)] = Gem::Platform::X64_MINGW
152
- SharedHelpers.major_deprecation(2,
153
- "Found x64-mingw32 in lockfile, which is deprecated. Using x64-mingw-ucrt, the replacement for x64-mingw32 in modern rubies, instead. Support for x64-mingw32 will be removed in Bundler 4.0.",
154
- removed_message: "Found x64-mingw32 in lockfile, which is no longer supported as of Bundler 4.0.")
155
- end
144
+ if @platforms.include?(Gem::Platform::X64_MINGW_LEGACY)
145
+ SharedHelpers.feature_deprecated!("Found x64-mingw32 in lockfile, which is deprecated and will be removed in the future.")
156
146
  end
157
147
 
158
148
  @most_specific_locked_platform = @platforms.min_by do |bundle_platform|
@@ -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\-ADD" "1" "August 2025" ""
3
+ .TH "BUNDLE\-ADD" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
6
6
  .SH "SYNOPSIS"
@@ -1,24 +1,21 @@
1
1
  .\" generated with Ronn-NG/v0.10.1
2
2
  .\" http://github.com/apjanke/ronn-ng/tree/0.10.1
3
- .TH "BUNDLE\-BINSTUBS" "1" "August 2025" ""
3
+ .TH "BUNDLE\-BINSTUBS" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
6
6
  .SH "SYNOPSIS"
7
- \fBbundle binstubs\fR \fIGEM_NAME\fR [\-\-force] [\-\-path PATH] [\-\-standalone] [\-\-all\-platforms]
7
+ \fBbundle binstubs\fR \fIGEM_NAME\fR [\-\-force] [\-\-standalone] [\-\-all\-platforms]
8
8
  .SH "DESCRIPTION"
9
9
  Binstubs are scripts that wrap around executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it into \fBbin/\fR\. Binstubs are a shortcut\-or alternative\- to always using \fBbundle exec\fR\. This gives you a file that can be run directly, and one that will always run the correct gem version used by the application\.
10
10
  .P
11
11
  For example, if you run \fBbundle binstubs rspec\-core\fR, Bundler will create the file \fBbin/rspec\fR\. That file will contain enough code to load Bundler, tell it to load the bundled gems, and then run rspec\.
12
12
  .P
13
- This command generates binstubs for executables in \fBGEM_NAME\fR\. Binstubs are put into \fBbin\fR, or the \fB\-\-path\fR directory if one has been set\. Calling binstubs with [GEM [GEM]] will create binstubs for all given gems\.
13
+ This command generates binstubs for executables in \fBGEM_NAME\fR\. Binstubs are put into \fBbin\fR, or the directory specified by \fBbin\fR setting if it has been configured\. Calling binstubs with [GEM [GEM]] will create binstubs for all given gems\.
14
14
  .SH "OPTIONS"
15
15
  .TP
16
16
  \fB\-\-force\fR
17
17
  Overwrite existing binstubs if they exist\.
18
18
  .TP
19
- \fB\-\-path[=PATH]\fR
20
- The location to install the specified binstubs to\. This defaults to \fBbin\fR\.
21
- .TP
22
19
  \fB\-\-standalone\fR
23
20
  Makes binstubs that can work without depending on Rubygems or Bundler at runtime\.
24
21
  .TP
@@ -3,7 +3,7 @@ bundle-binstubs(1) -- Install the binstubs of the listed gems
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `bundle binstubs` <GEM_NAME> [--force] [--path PATH] [--standalone] [--all-platforms]
6
+ `bundle binstubs` <GEM_NAME> [--force] [--standalone] [--all-platforms]
7
7
 
8
8
  ## DESCRIPTION
9
9
 
@@ -19,17 +19,15 @@ the file `bin/rspec`. That file will contain enough code to load Bundler,
19
19
  tell it to load the bundled gems, and then run rspec.
20
20
 
21
21
  This command generates binstubs for executables in `GEM_NAME`.
22
- Binstubs are put into `bin`, or the `--path` directory if one has been set.
23
- Calling binstubs with [GEM [GEM]] will create binstubs for all given gems.
22
+ Binstubs are put into `bin`, or the directory specified by `bin` setting if it
23
+ has been configured. Calling binstubs with [GEM [GEM]] will create binstubs for
24
+ all given gems.
24
25
 
25
26
  ## OPTIONS
26
27
 
27
28
  * `--force`:
28
29
  Overwrite existing binstubs if they exist.
29
30
 
30
- * `--path[=PATH]`:
31
- The location to install the specified binstubs to. This defaults to `bin`.
32
-
33
31
  * `--standalone`:
34
32
  Makes binstubs that can work without depending on Rubygems or Bundler at
35
33
  runtime.
@@ -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\-CACHE" "1" "August 2025" ""
3
+ .TH "BUNDLE\-CACHE" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
6
6
  .SH "SYNOPSIS"
@@ -11,9 +11,6 @@ alias: \fBpackage\fR, \fBpack\fR
11
11
  Copy all of the \fB\.gem\fR files needed to run the application into the \fBvendor/cache\fR directory\. In the future, when running \fBbundle install(1)\fR \fIbundle\-install\.1\.html\fR, use the gems in the cache in preference to the ones on \fBrubygems\.org\fR\.
12
12
  .SH "OPTIONS"
13
13
  .TP
14
- \fB\-\-all\fR
15
- Include all sources (including path and git)\.
16
- .TP
17
14
  \fB\-\-all\-platforms\fR
18
15
  Include gems for all platforms present in the lockfile, not only the current one\.
19
16
  .TP
@@ -26,19 +23,10 @@ Use the specified gemfile instead of Gemfile\.
26
23
  \fB\-\-no\-install\fR
27
24
  Don't install the gems, only update the cache\.
28
25
  .TP
29
- \fB\-\-no\-prune\fR
30
- Don't remove stale gems from the cache\.
31
- .TP
32
- \fB\-\-path=PATH\fR
33
- Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME)\.
34
- .TP
35
26
  \fB\-\-quiet\fR
36
27
  Only output warnings and errors\.
37
- .TP
38
- \fB\-\-frozen\fR
39
- Do not allow the Gemfile\.lock to be updated after this bundle cache operation's install\.
40
28
  .SH "GIT AND PATH GEMS"
41
- The \fBbundle cache\fR command can also package \fB:git\fR and \fB:path\fR dependencies besides \.gem files\. This needs to be explicitly enabled via the \fB\-\-all\fR option\. Once used, the \fB\-\-all\fR option will be remembered\.
29
+ The \fBbundle cache\fR command can also package \fB:git\fR and \fB:path\fR dependencies besides \.gem files\. This can be disabled setting \fBcache_all\fR to false\.
42
30
  .SH "SUPPORT FOR MULTIPLE PLATFORMS"
43
31
  When using gems that have different packages for different platforms, Bundler supports caching of gems for other platforms where the Gemfile has been resolved (i\.e\. present in the lockfile) in \fBvendor/cache\fR\. This needs to be enabled via the \fB\-\-all\-platforms\fR option\. This setting will be remembered in your local bundler configuration\.
44
32
  .SH "REMOTE FETCHING"
@@ -15,9 +15,6 @@ use the gems in the cache in preference to the ones on `rubygems.org`.
15
15
 
16
16
  ## OPTIONS
17
17
 
18
- * `--all`:
19
- Include all sources (including path and git).
20
-
21
18
  * `--all-platforms`:
22
19
  Include gems for all platforms present in the lockfile, not only the current one.
23
20
 
@@ -30,23 +27,13 @@ use the gems in the cache in preference to the ones on `rubygems.org`.
30
27
  * `--no-install`:
31
28
  Don't install the gems, only update the cache.
32
29
 
33
- * `--no-prune`:
34
- Don't remove stale gems from the cache.
35
-
36
- * `--path=PATH`:
37
- Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME).
38
-
39
30
  * `--quiet`:
40
31
  Only output warnings and errors.
41
32
 
42
- * `--frozen`:
43
- Do not allow the Gemfile.lock to be updated after this bundle cache operation's install.
44
-
45
33
  ## GIT AND PATH GEMS
46
34
 
47
35
  The `bundle cache` command can also package `:git` and `:path` dependencies
48
- besides .gem files. This needs to be explicitly enabled via the `--all` option.
49
- Once used, the `--all` option will be remembered.
36
+ besides .gem files. This can be disabled setting `cache_all` to false.
50
37
 
51
38
  ## SUPPORT FOR MULTIPLE PLATFORMS
52
39
 
@@ -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\-CHECK" "1" "August 2025" ""
3
+ .TH "BUNDLE\-CHECK" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
6
6
  .SH "SYNOPSIS"
7
- \fBbundle check\fR [\-\-dry\-run] [\-\-gemfile=FILE] [\-\-path=PATH]
7
+ \fBbundle check\fR [\-\-dry\-run] [\-\-gemfile=FILE]
8
8
  .SH "DESCRIPTION"
9
9
  \fBcheck\fR searches the local machine for each of the gems requested in the Gemfile\. If all gems are found, Bundler prints a success message and exits with a status of 0\.
10
10
  .P
@@ -18,7 +18,4 @@ Locks the [\fBGemfile(5)\fR][Gemfile(5)] before running the command\.
18
18
  .TP
19
19
  \fB\-\-gemfile=GEMFILE\fR
20
20
  Use the specified gemfile instead of the [\fBGemfile(5)\fR][Gemfile(5)]\.
21
- .TP
22
- \fB\-\-path=PATH\fR
23
- Specify a different path than the system default (\fB$BUNDLE_PATH\fR or \fB$GEM_HOME\fR)\. Bundler will remember this value for future installs on this machine\.
24
21
 
@@ -5,7 +5,6 @@ bundle-check(1) -- Verifies if dependencies are satisfied by installed gems
5
5
 
6
6
  `bundle check` [--dry-run]
7
7
  [--gemfile=FILE]
8
- [--path=PATH]
9
8
 
10
9
  ## DESCRIPTION
11
10
 
@@ -25,7 +24,3 @@ installed on the local machine, if they satisfy the requirements.
25
24
 
26
25
  * `--gemfile=GEMFILE`:
27
26
  Use the specified gemfile instead of the [`Gemfile(5)`][Gemfile(5)].
28
-
29
- * `--path=PATH`:
30
- Specify a different path than the system default (`$BUNDLE_PATH` or `$GEM_HOME`).
31
- Bundler will remember this value for future installs on this machine.
@@ -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\-CLEAN" "1" "August 2025" ""
3
+ .TH "BUNDLE\-CLEAN" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-clean\fR \- Cleans up unused gems in your bundler 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\-CONFIG" "1" "August 2025" ""
3
+ .TH "BUNDLE\-CONFIG" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-config\fR \- Set bundler configuration options
6
6
  .SH "SYNOPSIS"
@@ -70,14 +70,11 @@ Any periods in the configuration keys must be replaced with two underscores when
70
70
  .SH "LIST OF AVAILABLE KEYS"
71
71
  The following is a list of all configuration keys and their purpose\. You can learn more about their operation in bundle install(1) \fIbundle\-install\.1\.html\fR\.
72
72
  .TP
73
- \fBallow_offline_install\fR (\fBBUNDLE_ALLOW_OFFLINE_INSTALL\fR)
74
- Allow Bundler to use cached data when installing without network access\.
75
- .TP
76
73
  \fBauto_install\fR (\fBBUNDLE_AUTO_INSTALL\fR)
77
74
  Automatically run \fBbundle install\fR when gems are missing\.
78
75
  .TP
79
76
  \fBbin\fR (\fBBUNDLE_BIN\fR)
80
- Install executables from gems in the bundle to the specified directory\. Defaults to \fBfalse\fR\.
77
+ If configured, \fBbundle binstubs\fR will install executables from gems in the bundle to the specified directory\. Otherwise it will create them in a \fBbin\fR directory relative to the Gemfile directory\. 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, \fBbundle binstubs\fR will create a \fBbin/rails\fR executable that ensures that all referred dependencies will be resolved using the bundled gems\.
81
78
  .TP
82
79
  \fBcache_all\fR (\fBBUNDLE_CACHE_ALL\fR)
83
80
  Cache all gems, including path and git gems\. This needs to be explicitly before bundler 4, but will be the default on bundler 4\.
@@ -148,8 +145,11 @@ Generate a \fBgems\.rb\fR instead of a \fBGemfile\fR when running \fBbundle init
148
145
  \fBjobs\fR (\fBBUNDLE_JOBS\fR)
149
146
  The number of gems Bundler can install in parallel\. Defaults to the number of available processors\.
150
147
  .TP
148
+ \fBlockfile\fR (\fBBUNDLE_LOCKFILE\fR)
149
+ The path to the lockfile that bundler should use\. By default, Bundler adds \fB\.lock\fR to the end of the \fBgemfile\fR entry\. Can be set to \fBfalse\fR in the Gemfile to disable lockfile creation entirely (see gemfile(5))\.
150
+ .TP
151
151
  \fBlockfile_checksums\fR (\fBBUNDLE_LOCKFILE_CHECKSUMS\fR)
152
- Whether Bundler should include a checksums section in new lockfiles, to protect from compromised gem sources\.
152
+ Whether Bundler should include a checksums section in new lockfiles, to protect from compromised gem sources\. Defaults to true\.
153
153
  .TP
154
154
  \fBno_install\fR (\fBBUNDLE_NO_INSTALL\fR)
155
155
  Whether \fBbundle package\fR should skip installing gems\.
@@ -158,10 +158,10 @@ Whether \fBbundle package\fR should skip installing gems\.
158
158
  Whether Bundler should leave outdated gems unpruned when caching\.
159
159
  .TP
160
160
  \fBonly\fR (\fBBUNDLE_ONLY\fR)
161
- A space\-separated list of groups to install only gems of the specified groups\.
161
+ A space\-separated list of groups to install only gems of the specified groups\. Please check carefully if you want to install also gems without a group, because they get put inside \fBdefault\fR group\. For example \fBonly test:default\fR will install all gems specified in test group and without one\.
162
162
  .TP
163
163
  \fBpath\fR (\fBBUNDLE_PATH\fR)
164
- The location on disk where all gems in your bundle will be located regardless of \fB$GEM_HOME\fR or \fB$GEM_PATH\fR values\. Bundle gems not found in this location will be installed by \fBbundle install\fR\. Defaults to \fB\.bundle\fR relative to repository root in Bundler 4, and to the default system path (\fBGem\.dir\fR) before Bundler 4\.
164
+ The location on disk where all gems in your bundle will be located regardless of \fB$GEM_HOME\fR or \fB$GEM_PATH\fR values\. Bundle gems not found in this location will be installed by \fBbundle install\fR\. When not set, Bundler install by default to a \fB\.bundle\fR directory relative to repository root in Bundler 4, and to the default system path (\fBGem\.dir\fR) before Bundler 4\. That means that before Bundler 4, Bundler shares this location with Rubygems, and \fBgem install \|\.\|\.\|\.\fR will have gems installed in the same location and therefore, gems installed without \fBpath\fR set will show up by calling \fBgem list\fR\. This will not be the case in Bundler 4\.
165
165
  .TP
166
166
  \fBpath\.system\fR (\fBBUNDLE_PATH__SYSTEM\fR)
167
167
  Whether Bundler will install gems into the default system path (\fBGem\.dir\fR)\.
@@ -222,30 +222,6 @@ A space\-separated or \fB:\fR\-separated list of groups whose gems bundler shoul
222
222
  .TP
223
223
  \fBwithout\fR (\fBBUNDLE_WITHOUT\fR)
224
224
  A space\-separated or \fB:\fR\-separated list of groups whose gems bundler should not install\.
225
- .SH "REMEMBERING OPTIONS"
226
- Flags passed to \fBbundle install\fR or the Bundler runtime, such as \fB\-\-path foo\fR or \fB\-\-without production\fR, are remembered between commands and saved to your local application's configuration (normally, \fB\./\.bundle/config\fR)\.
227
- .P
228
- However, this will be changed in bundler 4, so it's better not to rely on this behavior\. If these options must be remembered, it's better to set them using \fBbundle config\fR (e\.g\., \fBbundle config set \-\-local path foo\fR)\.
229
- .P
230
- The flags that can be configured are:
231
- .TP
232
- \fB\-\-bin\fR
233
- Creates a directory (defaults to \fB~/bin\fR) and place 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\.
234
- .TP
235
- \fB\-\-deployment\fR
236
- In deployment mode, Bundler will 'roll\-out' the bundle for \fBproduction\fR use\. Please check carefully if you want to have this option enabled in \fBdevelopment\fR or \fBtest\fR environments\.
237
- .TP
238
- \fB\-\-only\fR
239
- A space\-separated list of groups to install only gems of the specified groups\. Please check carefully if you want to install also gems without a group, cause they get put inside \fBdefault\fR group\. For example \fBonly test:default\fR will install all gems specified in test group and without one\.
240
- .TP
241
- \fB\-\-path\fR
242
- 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\.
243
- .TP
244
- \fB\-\-without\fR
245
- A space\-separated or \fB:\fR\-separated list of groups referencing gems to skip during installation\.
246
- .TP
247
- \fB\-\-with\fR
248
- A space\-separated or \fB:\fR\-separated list of \fBoptional\fR groups referencing gems to include during installation\.
249
225
  .SH "BUILD OPTIONS"
250
226
  You can use \fBbundle config\fR to give Bundler the flags to pass to the gem installer every time bundler tries to install a particular gem\.
251
227
  .P
@@ -339,7 +315,7 @@ export BUNDLE_GEMS__LONGEROUS__COM="claudette:s00pers3krit"
339
315
  For gems with a git source with HTTP(S) URL you can specify credentials like so:
340
316
  .IP "" 4
341
317
  .nf
342
- bundle config set \-\-global https://github\.com/rubygems/rubygems\.git username:password
318
+ bundle config set \-\-global https://github\.com/ruby/rubygems\.git username:password
343
319
  .fi
344
320
  .IP "" 0
345
321
  .P
@@ -106,13 +106,17 @@ the environment variable `BUNDLE_LOCAL__RACK`.
106
106
  The following is a list of all configuration keys and their purpose. You can
107
107
  learn more about their operation in [bundle install(1)](bundle-install.1.html).
108
108
 
109
- * `allow_offline_install` (`BUNDLE_ALLOW_OFFLINE_INSTALL`):
110
- Allow Bundler to use cached data when installing without network access.
111
109
  * `auto_install` (`BUNDLE_AUTO_INSTALL`):
112
110
  Automatically run `bundle install` when gems are missing.
113
111
  * `bin` (`BUNDLE_BIN`):
114
- Install executables from gems in the bundle to the specified directory.
115
- Defaults to `false`.
112
+ If configured, `bundle binstubs` will install executables from gems in the
113
+ bundle to the specified directory. Otherwise it will create them in a `bin`
114
+ directory relative to the Gemfile directory. These executables run in
115
+ Bundler's context. If used, you might add this directory to your
116
+ environment's `PATH` variable. For instance, if the `rails` gem comes with a
117
+ `rails` executable, `bundle binstubs` will create a `bin/rails` executable
118
+ that ensures that all referred dependencies will be resolved using the
119
+ bundled gems.
116
120
  * `cache_all` (`BUNDLE_CACHE_ALL`):
117
121
  Cache all gems, including path and git gems. This needs to be explicitly
118
122
  before bundler 4, but will be the default on bundler 4.
@@ -185,20 +189,31 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
185
189
  * `jobs` (`BUNDLE_JOBS`):
186
190
  The number of gems Bundler can install in parallel. Defaults to the number of
187
191
  available processors.
192
+ * `lockfile` (`BUNDLE_LOCKFILE`):
193
+ The path to the lockfile that bundler should use. By default, Bundler adds
194
+ `.lock` to the end of the `gemfile` entry. Can be set to `false` in the
195
+ Gemfile to disable lockfile creation entirely (see gemfile(5)).
188
196
  * `lockfile_checksums` (`BUNDLE_LOCKFILE_CHECKSUMS`):
189
- Whether Bundler should include a checksums section in new lockfiles, to protect from compromised gem sources.
197
+ Whether Bundler should include a checksums section in new lockfiles, to protect from compromised gem sources. Defaults to true.
190
198
  * `no_install` (`BUNDLE_NO_INSTALL`):
191
199
  Whether `bundle package` should skip installing gems.
192
200
  * `no_prune` (`BUNDLE_NO_PRUNE`):
193
201
  Whether Bundler should leave outdated gems unpruned when caching.
194
202
  * `only` (`BUNDLE_ONLY`):
195
203
  A space-separated list of groups to install only gems of the specified groups.
204
+ Please check carefully if you want to install also gems without a group, because
205
+ they get put inside `default` group. For example `only test:default` will install
206
+ all gems specified in test group and without one.
196
207
  * `path` (`BUNDLE_PATH`):
197
208
  The location on disk where all gems in your bundle will be located regardless
198
209
  of `$GEM_HOME` or `$GEM_PATH` values. Bundle gems not found in this location
199
- will be installed by `bundle install`. Defaults to `.bundle` relative to
200
- repository root in Bundler 4, and to the default system path (`Gem.dir`)
201
- before Bundler 4.
210
+ will be installed by `bundle install`. When not set, Bundler install by
211
+ default to a `.bundle` directory relative to repository root in Bundler 4,
212
+ and to the default system path (`Gem.dir`) before Bundler 4. That means that
213
+ before Bundler 4, Bundler shares this location with Rubygems, and `gem
214
+ install ...` will have gems installed in the same location and therefore,
215
+ gems installed without `path` set will show up by calling `gem list`. This
216
+ will not be the case in Bundler 4.
202
217
  * `path.system` (`BUNDLE_PATH__SYSTEM`):
203
218
  Whether Bundler will install gems into the default system path (`Gem.dir`).
204
219
  * `plugins` (`BUNDLE_PLUGINS`):
@@ -253,52 +268,6 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
253
268
  * `without` (`BUNDLE_WITHOUT`):
254
269
  A space-separated or `:`-separated list of groups whose gems bundler should not install.
255
270
 
256
- ## REMEMBERING OPTIONS
257
-
258
- Flags passed to `bundle install` or the Bundler runtime, such as `--path foo` or
259
- `--without production`, are remembered between commands and saved to your local
260
- application's configuration (normally, `./.bundle/config`).
261
-
262
- However, this will be changed in bundler 4, so it's better not to rely on this
263
- behavior. If these options must be remembered, it's better to set them using
264
- `bundle config` (e.g., `bundle config set --local path foo`).
265
-
266
- The flags that can be configured are:
267
-
268
- * `--bin`:
269
- Creates a directory (defaults to `~/bin`) and place any executables from the
270
- gem there. These executables run in Bundler's context. If used, you might add
271
- this directory to your environment's `PATH` variable. For instance, if the
272
- `rails` gem comes with a `rails` executable, this flag will create a
273
- `bin/rails` executable that ensures that all referred dependencies will be
274
- resolved using the bundled gems.
275
-
276
- * `--deployment`:
277
- In deployment mode, Bundler will 'roll-out' the bundle for
278
- `production` use. Please check carefully if you want to have this option
279
- enabled in `development` or `test` environments.
280
-
281
- * `--only`:
282
- A space-separated list of groups to install only gems of the specified groups.
283
- Please check carefully if you want to install also gems without a group, cause
284
- they get put inside `default` group. For example `only test:default` will install
285
- all gems specified in test group and without one.
286
-
287
- * `--path`:
288
- The location to install the specified gems to. This defaults to Rubygems'
289
- setting. Bundler shares this location with Rubygems, `gem install ...` will
290
- have gem installed there, too. Therefore, gems installed without a
291
- `--path ...` setting will show up by calling `gem list`. Accordingly, gems
292
- installed to other locations will not get listed.
293
-
294
- * `--without`:
295
- A space-separated or `:`-separated list of groups referencing gems to skip during
296
- installation.
297
-
298
- * `--with`:
299
- A space-separated or `:`-separated list of **optional** groups referencing gems to
300
- include during installation.
301
-
302
271
  ## BUILD OPTIONS
303
272
 
304
273
  You can use `bundle config` to give Bundler the flags to pass to the gem
@@ -395,7 +364,7 @@ Or you can set the credentials as an environment variable like this:
395
364
 
396
365
  For gems with a git source with HTTP(S) URL you can specify credentials like so:
397
366
 
398
- bundle config set --global https://github.com/rubygems/rubygems.git username:password
367
+ bundle config set --global https://github.com/ruby/rubygems.git username:password
399
368
 
400
369
  Or you can set the credentials as an environment variable like so:
401
370
 
@@ -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\-CONSOLE" "1" "August 2025" ""
3
+ .TH "BUNDLE\-CONSOLE" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-console\fR \- Open an IRB session with the bundle pre\-loaded
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\-DOCTOR" "1" "August 2025" ""
3
+ .TH "BUNDLE\-DOCTOR" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-doctor\fR \- Checks the bundle for common problems
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\-ENV" "1" "August 2025" ""
3
+ .TH "BUNDLE\-ENV" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-env\fR \- Print information about the environment Bundler is running under
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\-EXEC" "1" "August 2025" ""
3
+ .TH "BUNDLE\-EXEC" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-exec\fR \- Execute a command in the context of the bundle
6
6
  .SH "SYNOPSIS"
7
- \fBbundle exec\fR [\-\-keep\-file\-descriptors] [\-\-gemfile=GEMFILE] \fIcommand\fR
7
+ \fBbundle exec\fR [\-\-gemfile=GEMFILE] \fIcommand\fR
8
8
  .SH "DESCRIPTION"
9
9
  This command executes the command, making all gems specified in the [\fBGemfile(5)\fR][Gemfile(5)] available to \fBrequire\fR in Ruby programs\.
10
10
  .P
@@ -13,9 +13,6 @@ Essentially, if you would normally have run something like \fBrspec spec/my_spec
13
13
  Note that \fBbundle exec\fR does not require that an executable is available on your shell's \fB$PATH\fR\.
14
14
  .SH "OPTIONS"
15
15
  .TP
16
- \fB\-\-keep\-file\-descriptors\fR
17
- Passes all file descriptors to the new processes\. Default is true from bundler version 2\.2\.26\. Setting it to false is now deprecated\.
18
- .TP
19
16
  \fB\-\-gemfile=GEMFILE\fR
20
17
  Use the specified gemfile instead of [\fBGemfile(5)\fR][Gemfile(5)]\.
21
18
  .SH "BUNDLE INSTALL \-\-BINSTUBS"
@@ -3,7 +3,7 @@ bundle-exec(1) -- Execute a command in the context of the bundle
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `bundle exec` [--keep-file-descriptors] [--gemfile=GEMFILE] <command>
6
+ `bundle exec` [--gemfile=GEMFILE] <command>
7
7
 
8
8
  ## DESCRIPTION
9
9
 
@@ -20,10 +20,6 @@ available on your shell's `$PATH`.
20
20
 
21
21
  ## OPTIONS
22
22
 
23
- * `--keep-file-descriptors`:
24
- Passes all file descriptors to the new processes. Default is true from
25
- bundler version 2.2.26. Setting it to false is now deprecated.
26
-
27
23
  * `--gemfile=GEMFILE`:
28
24
  Use the specified gemfile instead of [`Gemfile(5)`][Gemfile(5)].
29
25
 
@@ -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\-FUND" "1" "August 2025" ""
3
+ .TH "BUNDLE\-FUND" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-fund\fR \- Lists information about gems seeking funding assistance
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\-GEM" "1" "August 2025" ""
3
+ .TH "BUNDLE\-GEM" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
6
6
  .SH "SYNOPSIS"
@@ -38,8 +38,8 @@ Add a \fBCHANGELOG\.md\fR file to the root of the generated project\. If this op
38
38
  \fB\-\-no\-changelog\fR
39
39
  Do not create a \fBCHANGELOG\.md\fR (overrides \fB\-\-changelog\fR specified in the global config)\.
40
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\.
41
+ \fB\-\-ext=c\fR, \fB\-\-ext=go\fR, \fB\-\-ext=rust\fR
42
+ Add boilerplate for C, Go (currently go\-gem\-wrapper \fIhttps://github\.com/ruby\-go\-gem/go\-gem\-wrapper\fR based) or Rust (currently magnus \fIhttps://docs\.rs/magnus\fR based) extension code to the generated project\. This behavior is disabled by default\.
43
43
  .TP
44
44
  \fB\-\-no\-ext\fR
45
45
  Do not add extension code (overrides \fB\-\-ext\fR specified in the global config)\.
@@ -92,9 +92,6 @@ When Bundler is unconfigured, an interactive prompt will be displayed and the an
92
92
  \fB\-\-no\-linter\fR
93
93
  Do not add a linter (overrides \fB\-\-linter\fR specified in the global config)\.
94
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
95
  \fB\-\-edit=EDIT\fR, \fB\-e=EDIT\fR
99
96
  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
97
  .TP
@@ -51,8 +51,8 @@ configuration file using the following names:
51
51
  Do not create a `CHANGELOG.md` (overrides `--changelog` specified in the
52
52
  global config).
53
53
 
54
- * `--ext=c`, `--ext=rust`:
55
- Add boilerplate for C or Rust (currently [magnus](https://docs.rs/magnus) based) extension code to the generated project. This behavior
54
+ * `--ext=c`, `--ext=go`, `--ext=rust`:
55
+ Add boilerplate for C, Go (currently [go-gem-wrapper](https://github.com/ruby-go-gem/go-gem-wrapper) based) or Rust (currently [magnus](https://docs.rs/magnus) based) extension code to the generated project. This behavior
56
56
  is disabled by default.
57
57
 
58
58
  * `--no-ext`:
@@ -135,9 +135,6 @@ configuration file using the following names:
135
135
  * `--no-linter`:
136
136
  Do not add a linter (overrides `--linter` specified in the global config).
137
137
 
138
- * `--rubocop`:
139
- Add rubocop to the generated Rakefile and gemspec. Set a default with `bundle config set --global gem.rubocop true`.
140
-
141
138
  * `--edit=EDIT`, `-e=EDIT`:
142
139
  Open the resulting GEM_NAME.gemspec in EDIT, or the default editor if not
143
140
  specified. The default is `$BUNDLER_EDITOR`, `$VISUAL`, or `$EDITOR`.
@@ -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\-HELP" "1" "August 2025" ""
3
+ .TH "BUNDLE\-HELP" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-help\fR \- Displays detailed help for each subcommand
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\-INFO" "1" "August 2025" ""
3
+ .TH "BUNDLE\-INFO" "1" "September 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" "August 2025" ""
3
+ .TH "BUNDLE\-INIT" "1" "September 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-init\fR \- Generates a Gemfile into the current working directory
6
6
  .SH "SYNOPSIS"