rubygems-update 3.5.23 → 3.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (230) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +74 -0
  3. data/Manifest.txt +23 -16
  4. data/README.md +15 -10
  5. data/bundler/CHANGELOG.md +66 -0
  6. data/bundler/bundler.gemspec +2 -2
  7. data/bundler/lib/bundler/build_metadata.rb +2 -2
  8. data/bundler/lib/bundler/cli/console.rb +0 -4
  9. data/bundler/lib/bundler/cli/doctor.rb +4 -4
  10. data/bundler/lib/bundler/cli/exec.rb +1 -0
  11. data/bundler/lib/bundler/cli/gem.rb +1 -1
  12. data/bundler/lib/bundler/cli/info.rb +2 -2
  13. data/bundler/lib/bundler/cli/inject.rb +1 -1
  14. data/bundler/lib/bundler/cli/install.rb +4 -0
  15. data/bundler/lib/bundler/cli/lock.rb +20 -1
  16. data/bundler/lib/bundler/cli/pristine.rb +1 -1
  17. data/bundler/lib/bundler/cli/show.rb +2 -2
  18. data/bundler/lib/bundler/cli.rb +22 -53
  19. data/bundler/lib/bundler/compact_index_client/cache_file.rb +0 -5
  20. data/bundler/lib/bundler/compact_index_client/updater.rb +0 -11
  21. data/bundler/lib/bundler/definition.rb +155 -74
  22. data/bundler/lib/bundler/dependency.rb +1 -1
  23. data/bundler/lib/bundler/dsl.rb +2 -13
  24. data/bundler/lib/bundler/endpoint_specification.rb +10 -1
  25. data/bundler/lib/bundler/errors.rb +10 -0
  26. data/bundler/lib/bundler/feature_flag.rb +1 -0
  27. data/bundler/lib/bundler/fetcher/compact_index.rb +1 -1
  28. data/bundler/lib/bundler/fetcher.rb +10 -3
  29. data/bundler/lib/bundler/gem_helpers.rb +21 -5
  30. data/bundler/lib/bundler/injector.rb +2 -2
  31. data/bundler/lib/bundler/installer/standalone.rb +2 -2
  32. data/bundler/lib/bundler/installer.rb +4 -38
  33. data/bundler/lib/bundler/lazy_specification.rb +65 -24
  34. data/bundler/lib/bundler/lockfile_parser.rb +9 -1
  35. data/bundler/lib/bundler/man/bundle-add.1 +13 -10
  36. data/bundler/lib/bundler/man/bundle-add.1.ronn +12 -9
  37. data/bundler/lib/bundler/man/bundle-binstubs.1 +7 -4
  38. data/bundler/lib/bundler/man/bundle-binstubs.1.ronn +6 -3
  39. data/bundler/lib/bundler/man/bundle-cache.1 +30 -2
  40. data/bundler/lib/bundler/man/bundle-cache.1.ronn +31 -2
  41. data/bundler/lib/bundler/man/bundle-check.1 +3 -3
  42. data/bundler/lib/bundler/man/bundle-check.1.ronn +4 -2
  43. data/bundler/lib/bundler/man/bundle-clean.1 +1 -1
  44. data/bundler/lib/bundler/man/bundle-config.1 +3 -1
  45. data/bundler/lib/bundler/man/bundle-config.1.ronn +2 -0
  46. data/bundler/lib/bundler/man/bundle-console.1 +2 -4
  47. data/bundler/lib/bundler/man/bundle-console.1.ronn +2 -7
  48. data/bundler/lib/bundler/man/bundle-doctor.1 +2 -2
  49. data/bundler/lib/bundler/man/bundle-doctor.1.ronn +1 -1
  50. data/bundler/lib/bundler/man/bundle-env.1 +9 -0
  51. data/bundler/lib/bundler/man/bundle-env.1.ronn +10 -0
  52. data/bundler/lib/bundler/man/bundle-exec.1 +5 -2
  53. data/bundler/lib/bundler/man/bundle-exec.1.ronn +4 -1
  54. data/bundler/lib/bundler/man/bundle-fund.1 +22 -0
  55. data/bundler/lib/bundler/man/bundle-fund.1.ronn +25 -0
  56. data/bundler/lib/bundler/man/bundle-gem.1 +17 -5
  57. data/bundler/lib/bundler/man/bundle-gem.1.ronn +27 -6
  58. data/bundler/lib/bundler/man/bundle-help.1 +1 -1
  59. data/bundler/lib/bundler/man/bundle-info.1 +5 -2
  60. data/bundler/lib/bundler/man/bundle-info.1.ronn +6 -2
  61. data/bundler/lib/bundler/man/bundle-init.1 +3 -3
  62. data/bundler/lib/bundler/man/bundle-init.1.ronn +3 -2
  63. data/bundler/lib/bundler/man/bundle-inject.1 +10 -2
  64. data/bundler/lib/bundler/man/bundle-inject.1.ronn +9 -1
  65. data/bundler/lib/bundler/man/bundle-install.1 +14 -11
  66. data/bundler/lib/bundler/man/bundle-install.1.ronn +21 -16
  67. data/bundler/lib/bundler/man/bundle-issue.1 +45 -0
  68. data/bundler/lib/bundler/man/bundle-issue.1.ronn +37 -0
  69. data/bundler/lib/bundler/man/bundle-licenses.1 +9 -0
  70. data/bundler/lib/bundler/man/bundle-licenses.1.ronn +10 -0
  71. data/bundler/lib/bundler/man/bundle-list.1 +1 -1
  72. data/bundler/lib/bundler/man/bundle-list.1.ronn +4 -1
  73. data/bundler/lib/bundler/man/bundle-lock.1 +21 -6
  74. data/bundler/lib/bundler/man/bundle-lock.1.ronn +25 -4
  75. data/bundler/lib/bundler/man/bundle-open.1 +2 -2
  76. data/bundler/lib/bundler/man/bundle-open.1.ronn +2 -1
  77. data/bundler/lib/bundler/man/bundle-outdated.1 +8 -5
  78. data/bundler/lib/bundler/man/bundle-outdated.1.ronn +8 -4
  79. data/bundler/lib/bundler/man/bundle-platform.1 +1 -1
  80. data/bundler/lib/bundler/man/bundle-plugin.1 +1 -1
  81. data/bundler/lib/bundler/man/bundle-pristine.1 +1 -1
  82. data/bundler/lib/bundler/man/bundle-pristine.1.ronn +1 -1
  83. data/bundler/lib/bundler/man/bundle-remove.1 +1 -1
  84. data/bundler/lib/bundler/man/bundle-remove.1.ronn +1 -1
  85. data/bundler/lib/bundler/man/bundle-show.1 +5 -2
  86. data/bundler/lib/bundler/man/bundle-show.1.ronn +4 -0
  87. data/bundler/lib/bundler/man/bundle-update.1 +13 -7
  88. data/bundler/lib/bundler/man/bundle-update.1.ronn +14 -6
  89. data/bundler/lib/bundler/man/bundle-version.1 +1 -1
  90. data/bundler/lib/bundler/man/bundle-viz.1 +4 -4
  91. data/bundler/lib/bundler/man/bundle-viz.1.ronn +7 -3
  92. data/bundler/lib/bundler/man/bundle.1 +1 -1
  93. data/bundler/lib/bundler/man/gemfile.5 +1 -1
  94. data/bundler/lib/bundler/man/index.txt +4 -0
  95. data/bundler/lib/bundler/materialization.rb +59 -0
  96. data/bundler/lib/bundler/plugin/events.rb +24 -0
  97. data/bundler/lib/bundler/plugin/installer.rb +1 -1
  98. data/bundler/lib/bundler/process_lock.rb +1 -1
  99. data/bundler/lib/bundler/remote_specification.rb +6 -1
  100. data/bundler/lib/bundler/resolver/base.rb +2 -6
  101. data/bundler/lib/bundler/resolver/candidate.rb +2 -2
  102. data/bundler/lib/bundler/resolver/spec_group.rb +4 -3
  103. data/bundler/lib/bundler/resolver.rb +5 -5
  104. data/bundler/lib/bundler/rubygems_ext.rb +28 -28
  105. data/bundler/lib/bundler/rubygems_gem_installer.rb +0 -1
  106. data/bundler/lib/bundler/rubygems_integration.rb +21 -11
  107. data/bundler/lib/bundler/runtime.rb +27 -7
  108. data/bundler/lib/bundler/self_manager.rb +2 -3
  109. data/bundler/lib/bundler/settings.rb +1 -0
  110. data/bundler/lib/bundler/shared_helpers.rb +2 -2
  111. data/bundler/lib/bundler/source/git/git_proxy.rb +0 -6
  112. data/bundler/lib/bundler/source/git.rb +56 -31
  113. data/bundler/lib/bundler/source/path.rb +2 -2
  114. data/bundler/lib/bundler/source_list.rb +1 -1
  115. data/bundler/lib/bundler/spec_set.rb +81 -56
  116. data/bundler/lib/bundler/stub_specification.rb +8 -0
  117. data/bundler/lib/bundler/templates/newgem/README.md.tt +1 -1
  118. data/bundler/lib/bundler/uri_credentials_filter.rb +1 -1
  119. data/bundler/lib/bundler/vendor/fileutils/COPYING +56 -0
  120. data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +15 -13
  121. data/bundler/lib/bundler/vendor/securerandom/COPYING +56 -0
  122. data/bundler/lib/bundler/vendor/securerandom/lib/securerandom.rb +11 -5
  123. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +3 -5
  124. data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +11 -0
  125. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +1 -4
  126. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +2 -2
  127. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +2 -1
  128. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +9 -9
  129. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +1 -1
  130. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +5 -21
  131. data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +1 -1
  132. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  133. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +11 -0
  134. data/bundler/lib/bundler/vendor/uri/COPYING +56 -0
  135. data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +37 -16
  136. data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +3 -3
  137. data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +1 -1
  138. data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +16 -26
  139. data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +2 -2
  140. data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +10 -3
  141. data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +26 -3
  142. data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
  143. data/bundler/lib/bundler/vendor/uri/lib/uri.rb +9 -9
  144. data/bundler/lib/bundler/vendored_securerandom.rb +0 -2
  145. data/bundler/lib/bundler/version.rb +1 -1
  146. data/bundler/lib/bundler.rb +37 -13
  147. data/{CONTRIBUTING.md → doc/rubygems/CONTRIBUTING.md} +9 -9
  148. data/{POLICIES.md → doc/rubygems/POLICIES.md} +11 -11
  149. data/lib/rubygems/basic_specification.rb +5 -4
  150. data/lib/rubygems/commands/cleanup_command.rb +2 -2
  151. data/lib/rubygems/commands/contents_command.rb +4 -4
  152. data/lib/rubygems/commands/exec_command.rb +3 -0
  153. data/lib/rubygems/commands/pristine_command.rb +2 -2
  154. data/lib/rubygems/commands/push_command.rb +29 -5
  155. data/lib/rubygems/commands/rdoc_command.rb +2 -2
  156. data/lib/rubygems/commands/rebuild_command.rb +0 -2
  157. data/lib/rubygems/commands/setup_command.rb +1 -16
  158. data/lib/rubygems/commands/unpack_command.rb +0 -6
  159. data/lib/rubygems/commands/update_command.rb +2 -8
  160. data/lib/rubygems/config_file.rb +12 -0
  161. data/lib/rubygems/core_ext/kernel_warn.rb +2 -6
  162. data/lib/rubygems/defaults.rb +1 -1
  163. data/lib/rubygems/exceptions.rb +0 -6
  164. data/lib/rubygems/ext/builder.rb +6 -4
  165. data/lib/rubygems/ext/cargo_builder.rb +7 -4
  166. data/lib/rubygems/ext/cmake_builder.rb +7 -2
  167. data/lib/rubygems/ext/configure_builder.rb +7 -2
  168. data/lib/rubygems/ext/ext_conf_builder.rb +9 -5
  169. data/lib/rubygems/ext/rake_builder.rb +6 -1
  170. data/lib/rubygems/install_update_options.rb +5 -0
  171. data/lib/rubygems/installer.rb +2 -2
  172. data/lib/rubygems/platform.rb +4 -3
  173. data/lib/rubygems/psych_tree.rb +4 -0
  174. data/lib/rubygems/query_utils.rb +1 -1
  175. data/lib/rubygems/request_set/gem_dependency_api.rb +1 -1
  176. data/lib/rubygems/requirement.rb +0 -4
  177. data/lib/rubygems/resolver/composed_set.rb +3 -3
  178. data/lib/rubygems/resolver/git_set.rb +0 -1
  179. data/lib/rubygems/resolver/index_set.rb +2 -2
  180. data/lib/rubygems/resolver.rb +3 -3
  181. data/lib/rubygems/source/git.rb +13 -10
  182. data/lib/rubygems/spec_fetcher.rb +16 -5
  183. data/lib/rubygems/specification.rb +37 -31
  184. data/lib/rubygems/target_rbconfig.rb +50 -0
  185. data/lib/rubygems/uri.rb +1 -1
  186. data/lib/rubygems/util/licenses.rb +10 -1
  187. data/lib/rubygems/vendor/net-http/COPYING +56 -0
  188. data/lib/rubygems/vendor/net-http/lib/net/http/header.rb +1 -1
  189. data/lib/rubygems/vendor/net-http/lib/net/http/requests.rb +5 -0
  190. data/lib/rubygems/vendor/net-http/lib/net/http.rb +120 -36
  191. data/lib/rubygems/vendor/optparse/lib/optparse/ac.rb +16 -0
  192. data/lib/rubygems/vendor/optparse/lib/optparse/kwargs.rb +8 -3
  193. data/lib/rubygems/vendor/optparse/lib/optparse/version.rb +9 -0
  194. data/lib/rubygems/vendor/optparse/lib/optparse.rb +147 -51
  195. data/lib/rubygems/vendor/resolv/COPYING +56 -0
  196. data/lib/rubygems/vendor/resolv/lib/resolv.rb +50 -37
  197. data/lib/rubygems/vendor/securerandom/COPYING +56 -0
  198. data/lib/rubygems/vendor/securerandom/lib/securerandom.rb +11 -5
  199. data/lib/rubygems/vendor/timeout/COPYING +56 -0
  200. data/lib/rubygems/vendor/timeout/lib/timeout.rb +9 -10
  201. data/lib/rubygems/vendor/uri/COPYING +56 -0
  202. data/lib/rubygems/vendor/uri/lib/uri/common.rb +37 -16
  203. data/lib/rubygems/vendor/uri/lib/uri/file.rb +3 -3
  204. data/lib/rubygems/vendor/uri/lib/uri/ftp.rb +1 -1
  205. data/lib/rubygems/vendor/uri/lib/uri/generic.rb +16 -26
  206. data/lib/rubygems/vendor/uri/lib/uri/http.rb +2 -2
  207. data/lib/rubygems/vendor/uri/lib/uri/rfc2396_parser.rb +10 -3
  208. data/lib/rubygems/vendor/uri/lib/uri/rfc3986_parser.rb +26 -3
  209. data/lib/rubygems/vendor/uri/lib/uri/version.rb +1 -1
  210. data/lib/rubygems/vendor/uri/lib/uri.rb +9 -9
  211. data/lib/rubygems/vendored_securerandom.rb +0 -1
  212. data/lib/rubygems/version.rb +0 -4
  213. data/lib/rubygems.rb +30 -21
  214. data/rubygems-update.gemspec +5 -5
  215. data/setup.rb +1 -1
  216. metadata +36 -27
  217. data/bundler/lib/bundler/vendor/fileutils/LICENSE.txt +0 -22
  218. data/bundler/lib/bundler/vendor/securerandom/LICENSE.txt +0 -22
  219. data/bundler/lib/bundler/vendor/securerandom/lib/random/formatter.rb +0 -373
  220. data/bundler/lib/bundler/vendor/uri/LICENSE.txt +0 -22
  221. data/lib/rubygems/vendor/net-http/LICENSE.txt +0 -22
  222. data/lib/rubygems/vendor/net-http/lib/net/http/backward.rb +0 -40
  223. data/lib/rubygems/vendor/resolv/LICENSE.txt +0 -22
  224. data/lib/rubygems/vendor/securerandom/LICENSE.txt +0 -22
  225. data/lib/rubygems/vendor/securerandom/lib/random/formatter.rb +0 -373
  226. data/lib/rubygems/vendor/timeout/LICENSE.txt +0 -22
  227. data/lib/rubygems/vendor/uri/LICENSE.txt +0 -22
  228. /data/{MAINTAINERS.txt → doc/MAINTAINERS.txt} +0 -0
  229. /data/{bundler → doc/bundler}/UPGRADING.md +0 -0
  230. /data/{UPGRADING.md → doc/rubygems/UPGRADING.md} +0 -0
@@ -1,9 +1,9 @@
1
1
  bundle-cache(1) -- Package your needed `.gem` files into your application
2
- ===========================================================================
2
+ =========================================================================
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `bundle cache`
6
+ `bundle cache` [*OPTIONS*]
7
7
 
8
8
  alias: `package`, `pack`
9
9
 
@@ -13,6 +13,35 @@ Copy all of the `.gem` files needed to run the application into the
13
13
  `vendor/cache` directory. In the future, when running [`bundle install(1)`](bundle-install.1.html),
14
14
  use the gems in the cache in preference to the ones on `rubygems.org`.
15
15
 
16
+ ## OPTIONS
17
+
18
+ * `--all`:
19
+ Include all sources (including path and git).
20
+
21
+ * `--all-platforms`:
22
+ Include gems for all platforms present in the lockfile, not only the current one.
23
+
24
+ * `--cache-path=CACHE-PATH`:
25
+ Specify a different cache path than the default (vendor/cache).
26
+
27
+ * `--gemfile=GEMFILE`:
28
+ Use the specified gemfile instead of Gemfile.
29
+
30
+ * `--no-install`:
31
+ Don't install the gems, only update the cache.
32
+
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
+ * `--quiet`:
40
+ Only output warnings and errors.
41
+
42
+ * `--frozen`:
43
+ Do not allow the Gemfile.lock to be updated after this bundle cache operation's install.
44
+
16
45
  ## GIT AND PATH GEMS
17
46
 
18
47
  The `bundle cache` command can also package `:git` and `:path` dependencies
@@ -1,6 +1,6 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-CHECK" "1" "October 2024" ""
3
+ .TH "BUNDLE\-CHECK" "1" "December 2024" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
6
6
  .SH "SYNOPSIS"
@@ -16,9 +16,9 @@ If the lockfile needs to be updated then it will be resolved using the gems inst
16
16
  \fB\-\-dry\-run\fR
17
17
  Locks the [\fBGemfile(5)\fR][Gemfile(5)] before running the command\.
18
18
  .TP
19
- \fB\-\-gemfile\fR
19
+ \fB\-\-gemfile=GEMFILE\fR
20
20
  Use the specified gemfile instead of the [\fBGemfile(5)\fR][Gemfile(5)]\.
21
21
  .TP
22
- \fB\-\-path\fR
22
+ \fB\-\-path=PATH\fR
23
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
24
 
@@ -22,8 +22,10 @@ installed on the local machine, if they satisfy the requirements.
22
22
 
23
23
  * `--dry-run`:
24
24
  Locks the [`Gemfile(5)`][Gemfile(5)] before running the command.
25
- * `--gemfile`:
25
+
26
+ * `--gemfile=GEMFILE`:
26
27
  Use the specified gemfile instead of the [`Gemfile(5)`][Gemfile(5)].
27
- * `--path`:
28
+
29
+ * `--path=PATH`:
28
30
  Specify a different path than the system default (`$BUNDLE_PATH` or `$GEM_HOME`).
29
31
  Bundler will remember this value for future installs on this machine.
@@ -1,6 +1,6 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-CLEAN" "1" "October 2024" ""
3
+ .TH "BUNDLE\-CLEAN" "1" "December 2024" ""
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 nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-CONFIG" "1" "October 2024" ""
3
+ .TH "BUNDLE\-CONFIG" "1" "December 2024" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-config\fR \- Set bundler configuration options
6
6
  .SH "SYNOPSIS"
@@ -149,6 +149,8 @@ The following is a list of all configuration keys and their purpose\. You can le
149
149
  .IP "\(bu" 4
150
150
  \fBjobs\fR (\fBBUNDLE_JOBS\fR): The number of gems Bundler can install in parallel\. Defaults to the number of available processors\.
151
151
  .IP "\(bu" 4
152
+ \fBlockfile_checksums\fR (\fBBUNDLE_LOCKFILE_CHECKSUMS\fR): Whether Bundler should include a checksums section in new lockfiles, to protect from compromised gem sources\.
153
+ .IP "\(bu" 4
152
154
  \fBno_install\fR (\fBBUNDLE_NO_INSTALL\fR): Whether \fBbundle package\fR should skip installing gems\.
153
155
  .IP "\(bu" 4
154
156
  \fBno_prune\fR (\fBBUNDLE_NO_PRUNE\fR): Whether Bundler should leave outdated gems unpruned when caching\.
@@ -217,6 +217,8 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
217
217
  * `jobs` (`BUNDLE_JOBS`):
218
218
  The number of gems Bundler can install in parallel. Defaults to the number of
219
219
  available processors.
220
+ * `lockfile_checksums` (`BUNDLE_LOCKFILE_CHECKSUMS`):
221
+ Whether Bundler should include a checksums section in new lockfiles, to protect from compromised gem sources.
220
222
  * `no_install` (`BUNDLE_NO_INSTALL`):
221
223
  Whether `bundle package` should skip installing gems.
222
224
  * `no_prune` (`BUNDLE_NO_PRUNE`):
@@ -1,8 +1,8 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-CONSOLE" "1" "October 2024" ""
3
+ .TH "BUNDLE\-CONSOLE" "1" "December 2024" ""
4
4
  .SH "NAME"
5
- \fBbundle\-console\fR \- Deprecated way to open an IRB session with the bundle pre\-loaded
5
+ \fBbundle\-console\fR \- Open an IRB session with the bundle pre\-loaded
6
6
  .SH "SYNOPSIS"
7
7
  \fBbundle console\fR [GROUP]
8
8
  .SH "DESCRIPTION"
@@ -29,7 +29,5 @@ $ bundle console
29
29
  Resolving dependencies\|\.\|\.\|\.
30
30
  [1] pry(main)>
31
31
  .fi
32
- .SH "NOTES"
33
- This command was deprecated in Bundler 2\.1 and will be removed in 3\.0\. Use \fBbin/console\fR script, which can be generated by \fBbundle gem <NAME>\fR\.
34
32
  .SH "SEE ALSO"
35
33
  Gemfile(5) \fIhttps://bundler\.io/man/gemfile\.5\.html\fR
@@ -1,5 +1,5 @@
1
- bundle-console(1) -- Deprecated way to open an IRB session with the bundle pre-loaded
2
- =====================================================================================
1
+ bundle-console(1) -- Open an IRB session with the bundle pre-loaded
2
+ ===================================================================
3
3
 
4
4
  ## SYNOPSIS
5
5
 
@@ -34,11 +34,6 @@ the shell from the following:
34
34
  Resolving dependencies...
35
35
  [1] pry(main)>
36
36
 
37
- ## NOTES
38
-
39
- This command was deprecated in Bundler 2.1 and will be removed in 3.0.
40
- Use `bin/console` script, which can be generated by `bundle gem <NAME>`.
41
-
42
37
  ## SEE ALSO
43
38
 
44
39
  [Gemfile(5)](https://bundler.io/man/gemfile.5.html)
@@ -1,6 +1,6 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-DOCTOR" "1" "October 2024" ""
3
+ .TH "BUNDLE\-DOCTOR" "1" "December 2024" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-doctor\fR \- Checks the bundle for common problems
6
6
  .SH "SYNOPSIS"
@@ -25,6 +25,6 @@ Missing dependencies
25
25
  \fB\-\-quiet\fR
26
26
  Only output warnings and errors\.
27
27
  .TP
28
- \fB\-\-gemfile=<gemfile>\fR
28
+ \fB\-\-gemfile=GEMFILE\fR
29
29
  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\.
30
30
 
@@ -25,7 +25,7 @@ Examples of common problems caught by bundle-doctor include:
25
25
  * `--quiet`:
26
26
  Only output warnings and errors.
27
27
 
28
- * `--gemfile=<gemfile>`:
28
+ * `--gemfile=GEMFILE`:
29
29
  The location of the Gemfile(5) which Bundler should use. This defaults
30
30
  to a Gemfile(5) in the current working directory. In general, Bundler
31
31
  will assume that the location of the Gemfile(5) is also the project's
@@ -0,0 +1,9 @@
1
+ .\" generated with nRonn/v0.11.1
2
+ .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
+ .TH "BUNDLE\-ENV" "1" "December 2024" ""
4
+ .SH "NAME"
5
+ \fBbundle\-env\fR \- Print information about the environment Bundler is running under
6
+ .SH "SYNOPSIS"
7
+ \fBbundle env\fR
8
+ .SH "DESCRIPTION"
9
+ Prints information about the environment Bundler is running under\.
@@ -0,0 +1,10 @@
1
+ bundle-env(1) -- Print information about the environment Bundler is running under
2
+ =================================================================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `bundle env`
7
+
8
+ ## DESCRIPTION
9
+
10
+ Prints information about the environment Bundler is running under.
@@ -1,10 +1,10 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-EXEC" "1" "October 2024" ""
3
+ .TH "BUNDLE\-EXEC" "1" "December 2024" ""
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] \fIcommand\fR
7
+ \fBbundle exec\fR [\-\-keep\-file\-descriptors] [\-\-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
@@ -15,6 +15,9 @@ Note that \fBbundle exec\fR does not require that an executable is available on
15
15
  .TP
16
16
  \fB\-\-keep\-file\-descriptors\fR
17
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
+ \fB\-\-gemfile=GEMFILE\fR
20
+ Use the specified gemfile instead of [\fBGemfile(5)\fR][Gemfile(5)]\.
18
21
  .SH "BUNDLE INSTALL \-\-BINSTUBS"
19
22
  If you use the \fB\-\-binstubs\fR flag in bundle install(1) \fIbundle\-install\.1\.html\fR, Bundler will automatically create a directory (which defaults to \fBapp_root/bin\fR) containing all of the executables available from gems in the bundle\.
20
23
  .P
@@ -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] <command>
6
+ `bundle exec` [--keep-file-descriptors] [--gemfile=GEMFILE] <command>
7
7
 
8
8
  ## DESCRIPTION
9
9
 
@@ -24,6 +24,9 @@ available on your shell's `$PATH`.
24
24
  Passes all file descriptors to the new processes. Default is true from
25
25
  bundler version 2.2.26. Setting it to false is now deprecated.
26
26
 
27
+ * `--gemfile=GEMFILE`:
28
+ Use the specified gemfile instead of [`Gemfile(5)`][Gemfile(5)].
29
+
27
30
  ## BUNDLE INSTALL --BINSTUBS
28
31
 
29
32
  If you use the `--binstubs` flag in [bundle install(1)](bundle-install.1.html), Bundler will
@@ -0,0 +1,22 @@
1
+ .\" generated with nRonn/v0.11.1
2
+ .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
+ .TH "BUNDLE\-FUND" "1" "December 2024" ""
4
+ .SH "NAME"
5
+ \fBbundle\-fund\fR \- Lists information about gems seeking funding assistance
6
+ .SH "SYNOPSIS"
7
+ \fBbundle fund\fR [\fIOPTIONS\fR]
8
+ .SH "DESCRIPTION"
9
+ \fBbundle fund\fR lists information about gems seeking funding assistance\.
10
+ .SH "OPTIONS"
11
+ .TP
12
+ \fB\-\-group=<list>\fR, \fB\-g=<list>\fR
13
+ Fetch funding information for a specific group\.
14
+ .SH "EXAMPLES"
15
+ .nf
16
+ # Lists funding information for all gems
17
+ bundle fund
18
+
19
+ # Lists funding information for a specific group
20
+ bundle fund \-\-group=security
21
+ .fi
22
+
@@ -0,0 +1,25 @@
1
+ bundle-fund(1) -- Lists information about gems seeking funding assistance
2
+ =========================================================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `bundle fund` [*OPTIONS*]
7
+
8
+ ## DESCRIPTION
9
+
10
+ **bundle fund** lists information about gems seeking funding assistance.
11
+
12
+ ## OPTIONS
13
+
14
+ * `--group=<list>`, `-g=<list>`:
15
+ Fetch funding information for a specific group.
16
+
17
+ ## EXAMPLES
18
+
19
+ ```
20
+ # Lists funding information for all gems
21
+ bundle fund
22
+
23
+ # Lists funding information for a specific group
24
+ bundle fund --group=security
25
+ ```
@@ -1,6 +1,6 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-GEM" "1" "October 2024" ""
3
+ .TH "BUNDLE\-GEM" "1" "December 2024" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
6
6
  .SH "SYNOPSIS"
@@ -20,7 +20,7 @@ The generated project skeleton can be customized with OPTIONS, as explained belo
20
20
  .IP "" 0
21
21
  .SH "OPTIONS"
22
22
  .IP "\(bu" 4
23
- \fB\-\-exe\fR or \fB\-b\fR or \fB\-\-bin\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\.
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
24
  .IP "\(bu" 4
25
25
  \fB\-\-no\-exe\fR: Do not create a binary (overrides \fB\-\-exe\fR specified in the global config)\.
26
26
  .IP "\(bu" 4
@@ -28,10 +28,18 @@ The generated project skeleton can be customized with OPTIONS, as explained belo
28
28
  .IP "\(bu" 4
29
29
  \fB\-\-no\-coc\fR: Do not create a \fBCODE_OF_CONDUCT\.md\fR (overrides \fB\-\-coc\fR specified in the global config)\.
30
30
  .IP "\(bu" 4
31
- \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\.
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\.
32
36
  .IP "\(bu" 4
33
37
  \fB\-\-no\-ext\fR: Do not add extension code (overrides \fB\-\-ext\fR specified in the global config)\.
34
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
35
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\.
36
44
  .IP "\(bu" 4
37
45
  \fB\-\-no\-mit\fR: Do not create a \fBLICENSE\.txt\fR (overrides \fB\-\-mit\fR specified in the global config)\.
@@ -46,7 +54,9 @@ When Bundler is unconfigured, an interactive prompt will be displayed and the an
46
54
  .IP "\(bu" 4
47
55
  \fB\-\-no\-test\fR: Do not use a test framework (overrides \fB\-\-test\fR specified in the global config)\.
48
56
  .IP "\(bu" 4
49
- \fB\-\-ci\fR, \fB\-\-ci=github\fR, \fB\-\-ci=gitlab\fR, \fB\-\-ci=circle\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:
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:
50
60
  .IP
51
61
  When Bundler is configured to generate CI files, this defaults to Bundler's global config setting \fBgem\.ci\fR\.
52
62
  .IP
@@ -66,7 +76,9 @@ When Bundler is unconfigured, an interactive prompt will be displayed and the an
66
76
  .IP "\(bu" 4
67
77
  \fB\-\-no\-linter\fR: Do not add a linter (overrides \fB\-\-linter\fR specified in the global config)\.
68
78
  .IP "\(bu" 4
69
- \fB\-e\fR, \fB\-\-edit[=EDITOR]\fR: Open the resulting GEM_NAME\.gemspec in EDITOR, or the default editor if not specified\. The default is \fB$BUNDLER_EDITOR\fR, \fB$VISUAL\fR, or \fB$EDITOR\fR\.
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\.
70
82
  .IP "" 0
71
83
  .SH "SEE ALSO"
72
84
  .IP "\(bu" 4
@@ -1,5 +1,5 @@
1
1
  bundle-gem(1) -- Generate a project skeleton for creating a rubygem
2
- ====================================================================
2
+ ===================================================================
3
3
 
4
4
  ## SYNOPSIS
5
5
 
@@ -24,7 +24,7 @@ configuration file using the following names:
24
24
 
25
25
  ## OPTIONS
26
26
 
27
- * `--exe` or `-b` or `--bin`:
27
+ * `--exe`, `--bin`, `-b`:
28
28
  Specify that Bundler should create a binary executable (as `exe/GEM_NAME`)
29
29
  in the generated rubygem project. This binary will also be added to the
30
30
  `GEM_NAME.gemspec` manifest. This behavior is disabled by default.
@@ -41,7 +41,16 @@ 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
- * `--ext=c`, `--ext=rust`
44
+ * `--changelog`
45
+ Add a `CHANGELOG.md` file to the root of the generated project. If
46
+ this option is unspecified, an interactive prompt will be displayed and the
47
+ answer will be saved in Bundler's global config for future `bundle gem` use.
48
+
49
+ * `--no-changelog`:
50
+ Do not create a `CHANGELOG.md` (overrides `--changelog` specified in the
51
+ global config).
52
+
53
+ * `--ext=c`, `--ext=rust`:
45
54
  Add boilerplate for C or Rust (currently [magnus](https://docs.rs/magnus) based) extension code to the generated project. This behavior
46
55
  is disabled by default.
47
56
 
@@ -49,6 +58,12 @@ configuration file using the following names:
49
58
  Do not add extension code (overrides `--ext` specified in the global
50
59
  config).
51
60
 
61
+ * `--git`:
62
+ Initialize a git repo inside your library.
63
+
64
+ * `--github-username=GITHUB_USERNAME`:
65
+ Fill in GitHub username on README so that you don't have to do it manually. Set a default with `bundle config set --global gem.github_username <your_username>`.
66
+
52
67
  * `--mit`:
53
68
  Add an MIT license to a `LICENSE.txt` file in the root of the generated
54
69
  project. Your name from the global git config is used for the copyright
@@ -80,7 +95,10 @@ configuration file using the following names:
80
95
  Do not use a test framework (overrides `--test` specified in the global
81
96
  config).
82
97
 
83
- * `--ci`, `--ci=github`, `--ci=gitlab`, `--ci=circle`:
98
+ * `--changelog`:
99
+ Generate changelog file. Set a default with `bundle config set --global gem.changelog true`.
100
+
101
+ * `--ci`, `--ci=circle`, `--ci=github`, `--ci=gitlab`:
84
102
  Specify the continuous integration service that Bundler should use when
85
103
  generating the project. Acceptable values are `github`, `gitlab`
86
104
  and `circle`. A configuration file will be generated in the project directory.
@@ -119,8 +137,11 @@ configuration file using the following names:
119
137
  * `--no-linter`:
120
138
  Do not add a linter (overrides `--linter` specified in the global config).
121
139
 
122
- * `-e`, `--edit[=EDITOR]`:
123
- Open the resulting GEM_NAME.gemspec in EDITOR, or the default editor if not
140
+ * `--rubocop`:
141
+ Add rubocop to the generated Rakefile and gemspec. Set a default with `bundle config set --global gem.rubocop true`.
142
+
143
+ * `--edit=EDIT`, `-e=EDIT`:
144
+ Open the resulting GEM_NAME.gemspec in EDIT, or the default editor if not
124
145
  specified. The default is `$BUNDLER_EDITOR`, `$VISUAL`, or `$EDITOR`.
125
146
 
126
147
  ## SEE ALSO
@@ -1,6 +1,6 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-HELP" "1" "October 2024" ""
3
+ .TH "BUNDLE\-HELP" "1" "December 2024" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-help\fR \- Displays detailed help for each subcommand
6
6
  .SH "SYNOPSIS"
@@ -1,14 +1,17 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-INFO" "1" "October 2024" ""
3
+ .TH "BUNDLE\-INFO" "1" "December 2024" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-info\fR \- Show information for the given gem in your bundle
6
6
  .SH "SYNOPSIS"
7
- \fBbundle info\fR [GEM_NAME] [\-\-path]
7
+ \fBbundle info\fR [GEM_NAME] [\-\-path] [\-\-version]
8
8
  .SH "DESCRIPTION"
9
9
  Given a gem name present in your bundle, print the basic information about it such as homepage, version, path and summary\.
10
10
  .SH "OPTIONS"
11
11
  .TP
12
12
  \fB\-\-path\fR
13
13
  Print the path of the given gem
14
+ .TP
15
+ \fB\-\-version\fR
16
+ Print gem version
14
17
 
@@ -1,10 +1,11 @@
1
1
  bundle-info(1) -- Show information for the given gem in your bundle
2
- =========================================================================
2
+ ===================================================================
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
6
  `bundle info` [GEM_NAME]
7
7
  [--path]
8
+ [--version]
8
9
 
9
10
  ## DESCRIPTION
10
11
 
@@ -14,4 +15,7 @@ Given a gem name present in your bundle, print the basic information about it
14
15
  ## OPTIONS
15
16
 
16
17
  * `--path`:
17
- Print the path of the given gem
18
+ Print the path of the given gem
19
+
20
+ * `--version`:
21
+ Print gem version
@@ -1,6 +1,6 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-INIT" "1" "October 2024" ""
3
+ .TH "BUNDLE\-INIT" "1" "December 2024" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-init\fR \- Generates a Gemfile into the current working directory
6
6
  .SH "SYNOPSIS"
@@ -9,10 +9,10 @@
9
9
  Init generates a default [\fBGemfile(5)\fR][Gemfile(5)] in the current working directory\. When adding a [\fBGemfile(5)\fR][Gemfile(5)] to a gem with a gemspec, the \fB\-\-gemspec\fR option will automatically add each dependency listed in the gemspec file to the newly created [\fBGemfile(5)\fR][Gemfile(5)]\.
10
10
  .SH "OPTIONS"
11
11
  .TP
12
- \fB\-\-gemspec\fR
12
+ \fB\-\-gemspec=GEMSPEC\fR
13
13
  Use the specified \.gemspec to create the [\fBGemfile(5)\fR][Gemfile(5)]
14
14
  .TP
15
- \fB\-\-gemfile\fR
15
+ \fB\-\-gemfile=GEMFILE\fR
16
16
  Use the specified name for the gemfile instead of \fBGemfile\fR
17
17
  .SH "FILES"
18
18
  Included in the default [\fBGemfile(5)\fR][Gemfile(5)] generated is the line \fB# frozen_string_literal: true\fR\. This is a magic comment supported for the first time in Ruby 2\.3\. The presence of this line results in all string literals in the file being implicitly frozen\.
@@ -14,9 +14,10 @@ created [`Gemfile(5)`][Gemfile(5)].
14
14
 
15
15
  ## OPTIONS
16
16
 
17
- * `--gemspec`:
17
+ * `--gemspec=GEMSPEC`:
18
18
  Use the specified .gemspec to create the [`Gemfile(5)`][Gemfile(5)]
19
- * `--gemfile`:
19
+
20
+ * `--gemfile=GEMFILE`:
20
21
  Use the specified name for the gemfile instead of `Gemfile`
21
22
 
22
23
  ## FILES
@@ -1,10 +1,10 @@
1
1
  .\" generated with nRonn/v0.11.1
2
2
  .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
- .TH "BUNDLE\-INJECT" "1" "October 2024" ""
3
+ .TH "BUNDLE\-INJECT" "1" "December 2024" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
6
6
  .SH "SYNOPSIS"
7
- \fBbundle inject\fR [GEM] [VERSION]
7
+ \fBbundle inject\fR [GEM] [VERSION] [\-\-source=SOURCE] [\-\-group=GROUP]
8
8
  .SH "DESCRIPTION"
9
9
  Adds the named gem(s) with their version requirements to the resolved [\fBGemfile(5)\fR][Gemfile(5)]\.
10
10
  .P
@@ -21,3 +21,11 @@ bundle inject 'rack' '> 0'
21
21
  This will inject the 'rack' gem with a version greater than 0 in your [\fBGemfile(5)\fR][Gemfile(5)] and Gemfile\.lock\.
22
22
  .P
23
23
  The \fBbundle inject\fR command was deprecated in Bundler 2\.1 and will be removed in Bundler 3\.0\.
24
+ .SH "OPTIONS"
25
+ .TP
26
+ \fB\-\-source=SOURCE\fR
27
+ Install gem from the given source\.
28
+ .TP
29
+ \fB\-\-group=GROUP\fR
30
+ Install gem into a bundler group\.
31
+
@@ -3,7 +3,7 @@ bundle-inject(1) -- Add named gem(s) with version requirements to Gemfile
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `bundle inject` [GEM] [VERSION]
6
+ `bundle inject` [GEM] [VERSION] [--source=SOURCE] [--group=GROUP]
7
7
 
8
8
  ## DESCRIPTION
9
9
 
@@ -22,3 +22,11 @@ This will inject the 'rack' gem with a version greater than 0 in your
22
22
  [`Gemfile(5)`][Gemfile(5)] and Gemfile.lock.
23
23
 
24
24
  The `bundle inject` command was deprecated in Bundler 2.1 and will be removed in Bundler 3.0.
25
+
26
+ ## OPTIONS
27
+
28
+ * `--source=SOURCE`:
29
+ Install gem from the given source.
30
+
31
+ * `--group=GROUP`:
32
+ Install gem into a bundler group.