rubygems-update 3.6.8 → 3.7.0

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 (151) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +874 -787
  3. data/CONTRIBUTING.md +9 -0
  4. data/Manifest.txt +6 -22
  5. data/README.md +1 -1
  6. data/SECURITY.md +7 -0
  7. data/bundler/CHANGELOG.md +1103 -1030
  8. data/bundler/README.md +7 -7
  9. data/bundler/bundler.gemspec +2 -2
  10. data/bundler/lib/bundler/build_metadata.rb +10 -11
  11. data/bundler/lib/bundler/cli/common.rb +1 -1
  12. data/bundler/lib/bundler/cli/config.rb +2 -2
  13. data/bundler/lib/bundler/cli/doctor/diagnose.rb +167 -0
  14. data/bundler/lib/bundler/cli/doctor/ssl.rb +249 -0
  15. data/bundler/lib/bundler/cli/doctor.rb +27 -155
  16. data/bundler/lib/bundler/cli/gem.rb +62 -30
  17. data/bundler/lib/bundler/cli/install.rb +4 -4
  18. data/bundler/lib/bundler/cli/issue.rb +2 -2
  19. data/bundler/lib/bundler/cli/outdated.rb +1 -1
  20. data/bundler/lib/bundler/cli/update.rb +2 -2
  21. data/bundler/lib/bundler/cli.rb +12 -25
  22. data/bundler/lib/bundler/compact_index_client.rb +1 -5
  23. data/bundler/lib/bundler/current_ruby.rb +27 -3
  24. data/bundler/lib/bundler/definition.rb +55 -58
  25. data/bundler/lib/bundler/dependency.rb +1 -1
  26. data/bundler/lib/bundler/dsl.rb +33 -23
  27. data/bundler/lib/bundler/feature_flag.rb +15 -12
  28. data/bundler/lib/bundler/fetcher/dependency.rb +2 -1
  29. data/bundler/lib/bundler/fetcher/downloader.rb +33 -7
  30. data/bundler/lib/bundler/fetcher.rb +49 -19
  31. data/bundler/lib/bundler/friendly_errors.rb +2 -1
  32. data/bundler/lib/bundler/index.rb +7 -2
  33. data/bundler/lib/bundler/installer.rb +5 -4
  34. data/bundler/lib/bundler/lazy_specification.rb +29 -18
  35. data/bundler/lib/bundler/lockfile_parser.rb +21 -5
  36. data/bundler/lib/bundler/man/bundle-add.1 +1 -1
  37. data/bundler/lib/bundler/man/bundle-binstubs.1 +1 -1
  38. data/bundler/lib/bundler/man/bundle-cache.1 +1 -1
  39. data/bundler/lib/bundler/man/bundle-check.1 +1 -1
  40. data/bundler/lib/bundler/man/bundle-clean.1 +1 -1
  41. data/bundler/lib/bundler/man/bundle-config.1 +172 -126
  42. data/bundler/lib/bundler/man/bundle-config.1.ronn +91 -91
  43. data/bundler/lib/bundler/man/bundle-console.1 +1 -1
  44. data/bundler/lib/bundler/man/bundle-doctor.1 +43 -4
  45. data/bundler/lib/bundler/man/bundle-doctor.1.ronn +48 -4
  46. data/bundler/lib/bundler/man/bundle-env.1 +1 -1
  47. data/bundler/lib/bundler/man/bundle-exec.1 +1 -1
  48. data/bundler/lib/bundler/man/bundle-fund.1 +1 -1
  49. data/bundler/lib/bundler/man/bundle-gem.1 +67 -44
  50. data/bundler/lib/bundler/man/bundle-gem.1.ronn +8 -4
  51. data/bundler/lib/bundler/man/bundle-help.1 +1 -1
  52. data/bundler/lib/bundler/man/bundle-info.1 +1 -1
  53. data/bundler/lib/bundler/man/bundle-init.1 +1 -1
  54. data/bundler/lib/bundler/man/bundle-inject.1 +2 -2
  55. data/bundler/lib/bundler/man/bundle-inject.1.ronn +1 -1
  56. data/bundler/lib/bundler/man/bundle-install.1 +1 -1
  57. data/bundler/lib/bundler/man/bundle-issue.1 +1 -1
  58. data/bundler/lib/bundler/man/bundle-licenses.1 +1 -1
  59. data/bundler/lib/bundler/man/bundle-list.1 +1 -1
  60. data/bundler/lib/bundler/man/bundle-lock.1 +1 -1
  61. data/bundler/lib/bundler/man/bundle-open.1 +1 -1
  62. data/bundler/lib/bundler/man/bundle-outdated.1 +1 -1
  63. data/bundler/lib/bundler/man/bundle-platform.1 +1 -1
  64. data/bundler/lib/bundler/man/bundle-plugin.1 +1 -1
  65. data/bundler/lib/bundler/man/bundle-pristine.1 +1 -1
  66. data/bundler/lib/bundler/man/bundle-remove.1 +1 -1
  67. data/bundler/lib/bundler/man/bundle-show.1 +1 -1
  68. data/bundler/lib/bundler/man/bundle-update.1 +1 -1
  69. data/bundler/lib/bundler/man/bundle-version.1 +1 -1
  70. data/bundler/lib/bundler/man/bundle-viz.1 +1 -1
  71. data/bundler/lib/bundler/man/bundle.1 +1 -1
  72. data/bundler/lib/bundler/man/gemfile.5 +1 -1
  73. data/bundler/lib/bundler/match_platform.rb +31 -12
  74. data/bundler/lib/bundler/materialization.rb +2 -2
  75. data/bundler/lib/bundler/resolver/package.rb +1 -1
  76. data/bundler/lib/bundler/resolver.rb +11 -9
  77. data/bundler/lib/bundler/rubygems_ext.rb +116 -120
  78. data/bundler/lib/bundler/rubygems_integration.rb +11 -6
  79. data/bundler/lib/bundler/runtime.rb +1 -1
  80. data/bundler/lib/bundler/self_manager.rb +32 -42
  81. data/bundler/lib/bundler/settings/validator.rb +0 -23
  82. data/bundler/lib/bundler/settings.rb +4 -6
  83. data/bundler/lib/bundler/shared_helpers.rb +6 -4
  84. data/bundler/lib/bundler/source/git/git_proxy.rb +3 -3
  85. data/bundler/lib/bundler/source/path.rb +7 -0
  86. data/bundler/lib/bundler/source_list.rb +1 -5
  87. data/bundler/lib/bundler/source_map.rb +1 -1
  88. data/bundler/lib/bundler/spec_set.rb +28 -6
  89. data/bundler/lib/bundler/templates/Executable +0 -11
  90. data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +2 -0
  91. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +6 -5
  92. data/bundler/lib/bundler/ui/shell.rb +2 -2
  93. data/bundler/lib/bundler/vendor/net-http-persistent/README.rdoc +1 -1
  94. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +2 -1
  95. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +81 -42
  96. data/bundler/lib/bundler/version.rb +10 -2
  97. data/bundler/lib/bundler/worker.rb +1 -1
  98. data/bundler/lib/bundler.rb +14 -12
  99. data/doc/bundler/UPGRADING.md +137 -127
  100. data/doc/rubygems/CONTRIBUTING.md +1 -1
  101. data/lib/rubygems/basic_specification.rb +7 -0
  102. data/lib/rubygems/commands/pristine_command.rb +9 -12
  103. data/lib/rubygems/commands/push_command.rb +2 -1
  104. data/lib/rubygems/commands/setup_command.rb +2 -2
  105. data/lib/rubygems/core_ext/kernel_require.rb +5 -2
  106. data/lib/rubygems/ext/builder.rb +15 -4
  107. data/lib/rubygems/ext/cargo_builder.rb +7 -5
  108. data/lib/rubygems/ext/rake_builder.rb +1 -3
  109. data/lib/rubygems/gemcutter_utilities/webauthn_listener.rb +10 -3
  110. data/lib/rubygems/gemcutter_utilities.rb +5 -2
  111. data/lib/rubygems/installer.rb +45 -50
  112. data/lib/rubygems/package/tar_writer.rb +5 -4
  113. data/lib/rubygems/platform.rb +142 -39
  114. data/lib/rubygems/remote_fetcher.rb +3 -3
  115. data/lib/rubygems/request_set.rb +3 -6
  116. data/lib/rubygems/resolver/best_set.rb +1 -1
  117. data/lib/rubygems/resolver/source_set.rb +1 -1
  118. data/lib/rubygems/resolver.rb +1 -1
  119. data/lib/rubygems/s3_uri_signer.rb +5 -3
  120. data/lib/rubygems/source.rb +28 -22
  121. data/lib/rubygems/specification.rb +2 -2
  122. data/lib/rubygems/uri_formatter.rb +2 -1
  123. data/lib/rubygems/util/licenses.rb +21 -0
  124. data/lib/rubygems/vendor/net-http/lib/net/http.rb +14 -19
  125. data/lib/rubygems/vendor/resolv/lib/resolv.rb +50 -22
  126. data/lib/rubygems.rb +65 -7
  127. data/rubygems-update.gemspec +2 -2
  128. data/setup.rb +1 -1
  129. metadata +9 -25
  130. data/bundler/lib/bundler/gem_helpers.rb +0 -144
  131. data/bundler/lib/bundler/templates/Executable.bundler +0 -109
  132. data/bundler/lib/bundler/vendor/fileutils/.document +0 -1
  133. data/bundler/lib/bundler/vendor/net-http-persistent/.document +0 -1
  134. data/bundler/lib/bundler/vendor/pub_grub/.document +0 -1
  135. data/bundler/lib/bundler/vendor/securerandom/.document +0 -1
  136. data/bundler/lib/bundler/vendor/thor/.document +0 -1
  137. data/bundler/lib/bundler/vendor/tsort/.document +0 -1
  138. data/bundler/lib/bundler/vendor/uri/.document +0 -1
  139. data/lib/rubygems/shellwords.rb +0 -3
  140. data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem +0 -21
  141. data/lib/rubygems/vendor/molinillo/.document +0 -1
  142. data/lib/rubygems/vendor/net-http/.document +0 -1
  143. data/lib/rubygems/vendor/net-protocol/.document +0 -1
  144. data/lib/rubygems/vendor/optparse/.document +0 -1
  145. data/lib/rubygems/vendor/resolv/.document +0 -1
  146. data/lib/rubygems/vendor/securerandom/.document +0 -1
  147. data/lib/rubygems/vendor/timeout/.document +0 -1
  148. data/lib/rubygems/vendor/tsort/.document +0 -1
  149. data/lib/rubygems/vendor/uri/.document +0 -1
  150. /data/lib/rubygems/ssl_certs/rubygems.org/{GlobalSignRootCA_R3.pem → GlobalSign.pem} +0 -0
  151. /data/{bundler/lib/bundler/vendor/connection_pool → lib/rubygems/vendor}/.document +0 -0
@@ -52,71 +52,6 @@ only from the local application.
52
52
  Executing bundle with the `BUNDLE_IGNORE_CONFIG` environment variable set will
53
53
  cause it to ignore all configuration.
54
54
 
55
- ## REMEMBERING OPTIONS
56
-
57
- Flags passed to `bundle install` or the Bundler runtime, such as `--path foo` or
58
- `--without production`, are remembered between commands and saved to your local
59
- application's configuration (normally, `./.bundle/config`).
60
-
61
- However, this will be changed in bundler 3, so it's better not to rely on this
62
- behavior. If these options must be remembered, it's better to set them using
63
- `bundle config` (e.g., `bundle config set --local path foo`).
64
-
65
- The options that can be configured are:
66
-
67
- * `bin`:
68
- Creates a directory (defaults to `~/bin`) and place any executables from the
69
- gem there. These executables run in Bundler's context. If used, you might add
70
- this directory to your environment's `PATH` variable. For instance, if the
71
- `rails` gem comes with a `rails` executable, this flag will create a
72
- `bin/rails` executable that ensures that all referred dependencies will be
73
- resolved using the bundled gems.
74
-
75
- * `deployment`:
76
- In deployment mode, Bundler will 'roll-out' the bundle for
77
- `production` use. Please check carefully if you want to have this option
78
- enabled in `development` or `test` environments.
79
-
80
- * `only`:
81
- A space-separated list of groups to install only gems of the specified groups.
82
- Please check carefully if you want to install also gems without a group, cause
83
- they get put inside `default` group. For example `only test:default` will install
84
- all gems specified in test group and without one.
85
-
86
- * `path`:
87
- The location to install the specified gems to. This defaults to Rubygems'
88
- setting. Bundler shares this location with Rubygems, `gem install ...` will
89
- have gem installed there, too. Therefore, gems installed without a
90
- `--path ...` setting will show up by calling `gem list`. Accordingly, gems
91
- installed to other locations will not get listed.
92
-
93
- * `without`:
94
- A space-separated or `:`-separated list of groups referencing gems to skip during
95
- installation.
96
-
97
- * `with`:
98
- A space-separated or `:`-separated list of **optional** groups referencing gems to
99
- include during installation.
100
-
101
- ## BUILD OPTIONS
102
-
103
- You can use `bundle config` to give Bundler the flags to pass to the gem
104
- installer every time bundler tries to install a particular gem.
105
-
106
- A very common example, the `mysql` gem, requires Snow Leopard users to
107
- pass configuration flags to `gem install` to specify where to find the
108
- `mysql_config` executable.
109
-
110
- gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
111
-
112
- Since the specific location of that executable can change from machine
113
- to machine, you can specify these flags on a per-machine basis.
114
-
115
- bundle config set --global build.mysql --with-mysql-config=/usr/local/mysql/bin/mysql_config
116
-
117
- After running this command, every time bundler needs to install the
118
- `mysql` gem, it will pass along the flags you specified.
119
-
120
55
  ## CONFIGURATION KEYS
121
56
 
122
57
  Configuration keys in bundler have two forms: the canonical form and the
@@ -144,9 +79,6 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
144
79
 
145
80
  * `allow_offline_install` (`BUNDLE_ALLOW_OFFLINE_INSTALL`):
146
81
  Allow Bundler to use cached data when installing without network access.
147
- * `auto_clean_without_path` (`BUNDLE_AUTO_CLEAN_WITHOUT_PATH`):
148
- Automatically run `bundle clean` after installing when an explicit `path`
149
- has not been set and Bundler is not installing into the system gems.
150
82
  * `auto_install` (`BUNDLE_AUTO_INSTALL`):
151
83
  Automatically run `bundle install` when gems are missing.
152
84
  * `bin` (`BUNDLE_BIN`):
@@ -154,7 +86,7 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
154
86
  Defaults to `false`.
155
87
  * `cache_all` (`BUNDLE_CACHE_ALL`):
156
88
  Cache all gems, including path and git gems. This needs to be explicitly
157
- configured on bundler 1 and bundler 2, but will be the default on bundler 3.
89
+ before bundler 4, but will be the default on bundler 4.
158
90
  * `cache_all_platforms` (`BUNDLE_CACHE_ALL_PLATFORMS`):
159
91
  Cache gems for all platforms.
160
92
  * `cache_path` (`BUNDLE_CACHE_PATH`):
@@ -163,15 +95,16 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
163
95
  Defaults to `vendor/cache`.
164
96
  * `clean` (`BUNDLE_CLEAN`):
165
97
  Whether Bundler should run `bundle clean` automatically after
166
- `bundle install`.
98
+ `bundle install`. Defaults to `true` in Bundler 4, as long as `path` is not
99
+ explicitly configured.
167
100
  * `console` (`BUNDLE_CONSOLE`):
168
101
  The console that `bundle console` starts. Defaults to `irb`.
169
- * `default_install_uses_path` (`BUNDLE_DEFAULT_INSTALL_USES_PATH`):
170
- Whether a `bundle install` without an explicit `--path` argument defaults
171
- to installing gems in `.bundle`.
102
+ * `default_cli_command` (`BUNDLE_DEFAULT_CLI_COMMAND`):
103
+ The command that running `bundle` without arguments should run. Defaults to
104
+ `cli_help` since Bundler 4, but can also be `install` which was the previous
105
+ default.
172
106
  * `deployment` (`BUNDLE_DEPLOYMENT`):
173
- Disallow changes to the `Gemfile`. When the `Gemfile` is changed and the
174
- lockfile has not been updated, running Bundler commands will be blocked.
107
+ Equivalent to setting `frozen` to `true` and `path` to `vendor/bundle`.
175
108
  * `disable_checksum_validation` (`BUNDLE_DISABLE_CHECKSUM_VALIDATION`):
176
109
  Allow installing gems even if they do not match the checksum provided by
177
110
  RubyGems.
@@ -193,12 +126,13 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
193
126
  Ignore the current machine's platform and install only `ruby` platform gems.
194
127
  As a result, gems with native extensions will be compiled from source.
195
128
  * `frozen` (`BUNDLE_FROZEN`):
196
- Disallow changes to the `Gemfile`. When the `Gemfile` is changed and the
197
- lockfile has not been updated, running Bundler commands will be blocked.
198
- Defaults to `true` when `--deployment` is used.
129
+ Disallow any automatic changes to `Gemfile.lock`. Bundler commands will
130
+ be blocked unless the lockfile can be installed exactly as written.
131
+ Usually this will happen when changing the `Gemfile` manually and forgetting
132
+ to update the lockfile through `bundle lock` or `bundle install`.
199
133
  * `gem.github_username` (`BUNDLE_GEM__GITHUB_USERNAME`):
200
- Sets a GitHub username or organization to be used in `README` file when you
201
- create a new gem via `bundle gem` command. It can be overridden by passing an
134
+ Sets a GitHub username or organization to be used in the `README` and `.gemspec` files
135
+ when you create a new gem via `bundle gem` command. It can be overridden by passing an
202
136
  explicit `--github-username` flag to `bundle gem`.
203
137
  * `gem.push_key` (`BUNDLE_GEM__PUSH_KEY`):
204
138
  Sets the `--key` parameter for `gem push` when using the `rake release`
@@ -210,8 +144,8 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
210
144
  will search up from the current working directory until it finds a
211
145
  `Gemfile`.
212
146
  * `global_gem_cache` (`BUNDLE_GLOBAL_GEM_CACHE`):
213
- Whether Bundler should cache all gems globally, rather than locally to the
214
- installing Ruby installation.
147
+ Whether Bundler should cache all gems and compiled extensions globally,
148
+ rather than locally to the configured installation path.
215
149
  * `ignore_funding_requests` (`BUNDLE_IGNORE_FUNDING_REQUESTS`):
216
150
  When set, no funding requests will be printed.
217
151
  * `ignore_messages` (`BUNDLE_IGNORE_MESSAGES`):
@@ -233,25 +167,19 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
233
167
  * `path` (`BUNDLE_PATH`):
234
168
  The location on disk where all gems in your bundle will be located regardless
235
169
  of `$GEM_HOME` or `$GEM_PATH` values. Bundle gems not found in this location
236
- will be installed by `bundle install`. Defaults to `Gem.dir`. When --deployment
237
- is used, defaults to vendor/bundle.
170
+ will be installed by `bundle install`. Defaults to `.bundle` relative to
171
+ repository root in Bundler 4, and to the default system path (`Gem.dir`)
172
+ before Bundler 4.
238
173
  * `path.system` (`BUNDLE_PATH__SYSTEM`):
239
174
  Whether Bundler will install gems into the default system path (`Gem.dir`).
240
- * `path_relative_to_cwd` (`BUNDLE_PATH_RELATIVE_TO_CWD`)
241
- Makes `--path` relative to the CWD instead of the `Gemfile`.
242
175
  * `plugins` (`BUNDLE_PLUGINS`):
243
176
  Enable Bundler's experimental plugin system.
244
177
  * `prefer_patch` (BUNDLE_PREFER_PATCH):
245
178
  Prefer updating only to next patch version during updates. Makes `bundle update` calls equivalent to `bundler update --patch`.
246
- * `print_only_version_number` (`BUNDLE_PRINT_ONLY_VERSION_NUMBER`):
247
- Print only version number from `bundler --version`.
248
179
  * `redirect` (`BUNDLE_REDIRECT`):
249
180
  The number of redirects allowed for network requests. Defaults to `5`.
250
181
  * `retry` (`BUNDLE_RETRY`):
251
182
  The number of times to retry failed network requests. Defaults to `3`.
252
- * `setup_makes_kernel_gem_public` (`BUNDLE_SETUP_MAKES_KERNEL_GEM_PUBLIC`):
253
- Have `Bundler.setup` make the `Kernel#gem` method public, even though
254
- RubyGems declares it as private.
255
183
  * `shebang` (`BUNDLE_SHEBANG`):
256
184
  The program name that should be invoked for generated binstubs. Defaults to
257
185
  the ruby install name used to generate the binstub.
@@ -260,6 +188,10 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
260
188
  be changed in the next major version.
261
189
  * `silence_root_warning` (`BUNDLE_SILENCE_ROOT_WARNING`):
262
190
  Silence the warning Bundler prints when installing gems as root.
191
+ * `simulate_version` (`BUNDLE_SIMULATE_VERSION`):
192
+ The virtual version Bundler should use for activating feature flags. Can be
193
+ used to simulate all the new functionality that will be enabled in a future
194
+ major version.
263
195
  * `ssl_ca_cert` (`BUNDLE_SSL_CA_CERT`):
264
196
  Path to a designated CA certificate file or folder containing multiple
265
197
  certificates for trusted CAs in PEM format.
@@ -278,6 +210,9 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
278
210
  and disallow passing no options to `bundle update`.
279
211
  * `user_agent` (`BUNDLE_USER_AGENT`):
280
212
  The custom user agent fragment Bundler includes in API requests.
213
+ * `verbose` (`BUNDLE_VERBOSE`):
214
+ Whether Bundler should print verbose output. Defaults to `false`, unless the
215
+ `--verbose` CLI flag is used.
281
216
  * `version` (`BUNDLE_VERSION`):
282
217
  The version of Bundler to use when running under Bundler environment.
283
218
  Defaults to `lockfile`. You can also specify `system` or `x.y.z`.
@@ -289,6 +224,71 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
289
224
  * `without` (`BUNDLE_WITHOUT`):
290
225
  A space-separated or `:`-separated list of groups whose gems bundler should not install.
291
226
 
227
+ ## REMEMBERING OPTIONS
228
+
229
+ Flags passed to `bundle install` or the Bundler runtime, such as `--path foo` or
230
+ `--without production`, are remembered between commands and saved to your local
231
+ application's configuration (normally, `./.bundle/config`).
232
+
233
+ However, this will be changed in bundler 4, so it's better not to rely on this
234
+ behavior. If these options must be remembered, it's better to set them using
235
+ `bundle config` (e.g., `bundle config set --local path foo`).
236
+
237
+ The flags that can be configured are:
238
+
239
+ * `--bin`:
240
+ Creates a directory (defaults to `~/bin`) and place any executables from the
241
+ gem there. These executables run in Bundler's context. If used, you might add
242
+ this directory to your environment's `PATH` variable. For instance, if the
243
+ `rails` gem comes with a `rails` executable, this flag will create a
244
+ `bin/rails` executable that ensures that all referred dependencies will be
245
+ resolved using the bundled gems.
246
+
247
+ * `--deployment`:
248
+ In deployment mode, Bundler will 'roll-out' the bundle for
249
+ `production` use. Please check carefully if you want to have this option
250
+ enabled in `development` or `test` environments.
251
+
252
+ * `--only`:
253
+ A space-separated list of groups to install only gems of the specified groups.
254
+ Please check carefully if you want to install also gems without a group, cause
255
+ they get put inside `default` group. For example `only test:default` will install
256
+ all gems specified in test group and without one.
257
+
258
+ * `--path`:
259
+ The location to install the specified gems to. This defaults to Rubygems'
260
+ setting. Bundler shares this location with Rubygems, `gem install ...` will
261
+ have gem installed there, too. Therefore, gems installed without a
262
+ `--path ...` setting will show up by calling `gem list`. Accordingly, gems
263
+ installed to other locations will not get listed.
264
+
265
+ * `--without`:
266
+ A space-separated or `:`-separated list of groups referencing gems to skip during
267
+ installation.
268
+
269
+ * `--with`:
270
+ A space-separated or `:`-separated list of **optional** groups referencing gems to
271
+ include during installation.
272
+
273
+ ## BUILD OPTIONS
274
+
275
+ You can use `bundle config` to give Bundler the flags to pass to the gem
276
+ installer every time bundler tries to install a particular gem.
277
+
278
+ A very common example, the `mysql` gem, requires Snow Leopard users to
279
+ pass configuration flags to `gem install` to specify where to find the
280
+ `mysql_config` executable.
281
+
282
+ gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
283
+
284
+ Since the specific location of that executable can change from machine
285
+ to machine, you can specify these flags on a per-machine basis.
286
+
287
+ bundle config set --global build.mysql --with-mysql-config=/usr/local/mysql/bin/mysql_config
288
+
289
+ After running this command, every time bundler needs to install the
290
+ `mysql` gem, it will pass along the flags you specified.
291
+
292
292
  ## LOCAL GIT REPOS
293
293
 
294
294
  Bundler also allows you to work against a git repository locally
@@ -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" "March 2025" ""
3
+ .TH "BUNDLE\-CONSOLE" "1" "July 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-console\fR \- Open an IRB session with the bundle pre\-loaded
6
6
  .SH "SYNOPSIS"
@@ -1,14 +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\-DOCTOR" "1" "March 2025" ""
3
+ .TH "BUNDLE\-DOCTOR" "1" "July 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-doctor\fR \- Checks the bundle for common problems
6
6
  .SH "SYNOPSIS"
7
- \fBbundle doctor\fR [\-\-quiet] [\-\-gemfile=GEMFILE]
7
+ \fBbundle doctor [diagnose]\fR [\-\-quiet] [\-\-gemfile=GEMFILE] [\-\-ssl]
8
+ .br
9
+ \fBbundle doctor ssl\fR [\-\-host=HOST] [\-\-tls\-version=VERSION] [\-\-verify\-mode=MODE]
10
+ .br
11
+ \fBbundle doctor\fR help [COMMAND]
8
12
  .SH "DESCRIPTION"
13
+ You can diagnose common Bundler problems with this command such as checking gem environment or SSL/TLS issue\.
14
+ .SH "SUB\-COMMANDS"
15
+ .SS "diagnose (default command)"
9
16
  Checks your Gemfile and gem environment for common problems\. If issues are detected, Bundler prints them and exits status 1\. Otherwise, Bundler prints a success message and exits status 0\.
10
17
  .P
11
- Examples of common problems caught by bundle\-doctor include:
18
+ Examples of common problems caught include:
12
19
  .IP "\(bu" 4
13
20
  Invalid Bundler settings
14
21
  .IP "\(bu" 4
@@ -20,11 +27,43 @@ Uninstalled gems
20
27
  .IP "\(bu" 4
21
28
  Missing dependencies
22
29
  .IP "" 0
23
- .SH "OPTIONS"
30
+ .P
31
+ \fBOPTIONS\fR
24
32
  .TP
25
33
  \fB\-\-quiet\fR
26
34
  Only output warnings and errors\.
27
35
  .TP
28
36
  \fB\-\-gemfile=GEMFILE\fR
29
37
  The location of the Gemfile(5) which Bundler should use\. This defaults to a Gemfile(5) in the current working directory\. In general, Bundler will assume that the location of the Gemfile(5) is also the project's root and will try to find \fBGemfile\.lock\fR and \fBvendor/cache\fR relative to this location\.
38
+ .TP
39
+ \fB\-\-ssl\fR
40
+ Diagnose common SSL problems when connecting to https://rubygems\.org\.
41
+ .IP
42
+ This flag runs the \fBbundle doctor ssl\fR subcommand with default values underneath\.
43
+ .SS "ssl"
44
+ If you've experienced issues related to SSL certificates and/or TLS versions while connecting to https://rubygems\.org, this command can help troubleshoot common problems\. The diagnostic will perform a few checks such as:
45
+ .IP "\(bu" 4
46
+ Verify the Ruby OpenSSL version installed on your system\.
47
+ .IP "\(bu" 4
48
+ Check the OpenSSL library version used for compilation\.
49
+ .IP "\(bu" 4
50
+ Ensure CA certificates are correctly setup on your machine\.
51
+ .IP "\(bu" 4
52
+ Open a TLS connection and verify the outcome\.
53
+ .IP "" 0
54
+ .P
55
+ \fBOPTIONS\fR
56
+ .TP
57
+ \fB\-\-host=HOST\fR
58
+ Perform the diagnostic on HOST\. Defaults to \fBrubygems\.org\fR\.
59
+ .TP
60
+ \fB\-\-tls\-version=VERSION\fR
61
+ Specify the TLS version when opening the connection to HOST\.
62
+ .IP
63
+ Accepted values are: \fB1\.1\fR or \fB1\.2\fR\.
64
+ .TP
65
+ \fB\-\-verify\-mode=MODE\fR
66
+ Specify the TLS verify mode when opening the connection to HOST\. Defaults to \fBSSL_VERIFY_PEER\fR\.
67
+ .IP
68
+ Accepted values are: \fBCLIENT_ONCE\fR, \fBFAIL_IF_NO_PEER_CERT\fR, \fBNONE\fR, \fBPEER\fR\.
30
69
 
@@ -3,16 +3,27 @@ bundle-doctor(1) -- Checks the bundle for common problems
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `bundle doctor` [--quiet]
7
- [--gemfile=GEMFILE]
6
+ `bundle doctor [diagnose]` [--quiet]
7
+ [--gemfile=GEMFILE]
8
+ [--ssl]<br>
9
+ `bundle doctor ssl` [--host=HOST]
10
+ [--tls-version=VERSION]
11
+ [--verify-mode=MODE]<br>
12
+ `bundle doctor` help [COMMAND]
8
13
 
9
14
  ## DESCRIPTION
10
15
 
16
+ You can diagnose common Bundler problems with this command such as checking gem environment or SSL/TLS issue.
17
+
18
+ ## SUB-COMMANDS
19
+
20
+ ### diagnose (default command)
21
+
11
22
  Checks your Gemfile and gem environment for common problems. If issues
12
23
  are detected, Bundler prints them and exits status 1. Otherwise,
13
24
  Bundler prints a success message and exits status 0.
14
25
 
15
- Examples of common problems caught by bundle-doctor include:
26
+ Examples of common problems caught include:
16
27
 
17
28
  * Invalid Bundler settings
18
29
  * Mismatched Ruby versions
@@ -20,7 +31,7 @@ Examples of common problems caught by bundle-doctor include:
20
31
  * Uninstalled gems
21
32
  * Missing dependencies
22
33
 
23
- ## OPTIONS
34
+ **OPTIONS**
24
35
 
25
36
  * `--quiet`:
26
37
  Only output warnings and errors.
@@ -31,3 +42,36 @@ Examples of common problems caught by bundle-doctor include:
31
42
  will assume that the location of the Gemfile(5) is also the project's
32
43
  root and will try to find `Gemfile.lock` and `vendor/cache` relative
33
44
  to this location.
45
+
46
+ * `--ssl`:
47
+ Diagnose common SSL problems when connecting to https://rubygems.org.
48
+
49
+ This flag runs the `bundle doctor ssl` subcommand with default values
50
+ underneath.
51
+
52
+ ### ssl
53
+
54
+ If you've experienced issues related to SSL certificates and/or TLS versions while connecting
55
+ to https://rubygems.org, this command can help troubleshoot common problems.
56
+ The diagnostic will perform a few checks such as:
57
+
58
+ * Verify the Ruby OpenSSL version installed on your system.
59
+ * Check the OpenSSL library version used for compilation.
60
+ * Ensure CA certificates are correctly setup on your machine.
61
+ * Open a TLS connection and verify the outcome.
62
+
63
+ **OPTIONS**
64
+
65
+ * `--host=HOST`:
66
+ Perform the diagnostic on HOST. Defaults to `rubygems.org`.
67
+
68
+ * `--tls-version=VERSION`:
69
+ Specify the TLS version when opening the connection to HOST.
70
+
71
+ Accepted values are: `1.1` or `1.2`.
72
+
73
+ * `--verify-mode=MODE`:
74
+ Specify the TLS verify mode when opening the connection to HOST.
75
+ Defaults to `SSL_VERIFY_PEER`.
76
+
77
+ Accepted values are: `CLIENT_ONCE`, `FAIL_IF_NO_PEER_CERT`, `NONE`, `PEER`.
@@ -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" "March 2025" ""
3
+ .TH "BUNDLE\-ENV" "1" "July 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-env\fR \- Print information about the environment Bundler is running under
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\-EXEC" "1" "March 2025" ""
3
+ .TH "BUNDLE\-EXEC" "1" "July 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-exec\fR \- Execute a command in the context of 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\-FUND" "1" "March 2025" ""
3
+ .TH "BUNDLE\-FUND" "1" "July 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" "March 2025" ""
3
+ .TH "BUNDLE\-GEM" "1" "July 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
- .IP "\(bu" 4
23
- \fB\-\-exe\fR, \fB\-\-bin\fR, \fB\-b\fR: 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\.
24
- .IP "\(bu" 4
25
- \fB\-\-no\-exe\fR: Do not create a binary (overrides \fB\-\-exe\fR specified in the global config)\.
26
- .IP "\(bu" 4
27
- \fB\-\-coc\fR: 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\.
28
- .IP "\(bu" 4
29
- \fB\-\-no\-coc\fR: Do not create a \fBCODE_OF_CONDUCT\.md\fR (overrides \fB\-\-coc\fR specified in the global config)\.
30
- .IP "\(bu" 4
31
- \fB\-\-changelog\fR 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\.
32
- .IP "\(bu" 4
33
- \fB\-\-no\-changelog\fR: Do not create a \fBCHANGELOG\.md\fR (overrides \fB\-\-changelog\fR specified in the global config)\.
34
- .IP "\(bu" 4
35
- \fB\-\-ext=c\fR, \fB\-\-ext=rust\fR: 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\.
36
- .IP "\(bu" 4
37
- \fB\-\-no\-ext\fR: Do not add extension code (overrides \fB\-\-ext\fR specified in the global config)\.
38
- .IP "\(bu" 4
39
- \fB\-\-git\fR: Initialize a git repo inside your library\.
40
- .IP "\(bu" 4
41
- \fB\-\-github\-username=GITHUB_USERNAME\fR: 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\.
42
- .IP "\(bu" 4
43
- \fB\-\-mit\fR: 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\.
44
- .IP "\(bu" 4
45
- \fB\-\-no\-mit\fR: Do not create a \fBLICENSE\.txt\fR (overrides \fB\-\-mit\fR specified in the global config)\.
46
- .IP "\(bu" 4
47
- \fB\-t\fR, \fB\-\-test=minitest\fR, \fB\-\-test=rspec\fR, \fB\-\-test=test\-unit\fR: 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:
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
- .IP "\(bu" 4
55
- \fB\-\-no\-test\fR: Do not use a test framework (overrides \fB\-\-test\fR specified in the global config)\.
56
- .IP "\(bu" 4
57
- \fB\-\-changelog\fR: Generate changelog file\. Set a default with \fBbundle config set \-\-global gem\.changelog true\fR\.
58
- .IP "\(bu" 4
59
- \fB\-\-ci\fR, \fB\-\-ci=circle\fR, \fB\-\-ci=github\fR, \fB\-\-ci=gitlab\fR: 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:
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
- .IP "\(bu" 4
67
- \fB\-\-no\-ci\fR: Do not use a continuous integration service (overrides \fB\-\-ci\fR specified in the global config)\.
68
- .IP "\(bu" 4
69
- \fB\-\-linter\fR, \fB\-\-linter=rubocop\fR, \fB\-\-linter=standard\fR: 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:
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
- .IP "\(bu" 4
77
- \fB\-\-no\-linter\fR: Do not add a linter (overrides \fB\-\-linter\fR specified in the global config)\.
78
- .IP "\(bu" 4
79
- \fB\-\-rubocop\fR: Add rubocop to the generated Rakefile and gemspec\. Set a default with \fBbundle config set \-\-global gem\.rubocop true\fR\.
80
- .IP "\(bu" 4
81
- \fB\-\-edit=EDIT\fR, \fB\-e=EDIT\fR: 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\.
82
- .IP "" 0
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\-HELP" "1" "March 2025" ""
3
+ .TH "BUNDLE\-HELP" "1" "July 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" "March 2025" ""
3
+ .TH "BUNDLE\-INFO" "1" "July 2025" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-info\fR \- Show information for the given gem in your bundle
6
6
  .SH "SYNOPSIS"