bundler 2.5.23 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +59 -0
  3. data/bundler.gemspec +2 -2
  4. data/lib/bundler/build_metadata.rb +2 -2
  5. data/lib/bundler/cli/console.rb +0 -4
  6. data/lib/bundler/cli/doctor.rb +4 -4
  7. data/lib/bundler/cli/exec.rb +1 -0
  8. data/lib/bundler/cli/gem.rb +1 -1
  9. data/lib/bundler/cli/info.rb +2 -2
  10. data/lib/bundler/cli/inject.rb +1 -1
  11. data/lib/bundler/cli/install.rb +4 -0
  12. data/lib/bundler/cli/lock.rb +20 -1
  13. data/lib/bundler/cli/pristine.rb +1 -1
  14. data/lib/bundler/cli/show.rb +2 -2
  15. data/lib/bundler/cli.rb +22 -53
  16. data/lib/bundler/compact_index_client/cache_file.rb +0 -5
  17. data/lib/bundler/compact_index_client/updater.rb +0 -11
  18. data/lib/bundler/definition.rb +134 -61
  19. data/lib/bundler/dependency.rb +1 -1
  20. data/lib/bundler/dsl.rb +2 -13
  21. data/lib/bundler/endpoint_specification.rb +10 -1
  22. data/lib/bundler/errors.rb +10 -0
  23. data/lib/bundler/feature_flag.rb +1 -0
  24. data/lib/bundler/fetcher/compact_index.rb +1 -1
  25. data/lib/bundler/fetcher.rb +10 -3
  26. data/lib/bundler/gem_helpers.rb +21 -5
  27. data/lib/bundler/injector.rb +2 -2
  28. data/lib/bundler/installer/standalone.rb +2 -2
  29. data/lib/bundler/installer.rb +4 -38
  30. data/lib/bundler/lazy_specification.rb +65 -24
  31. data/lib/bundler/lockfile_parser.rb +9 -1
  32. data/lib/bundler/man/bundle-add.1 +13 -10
  33. data/lib/bundler/man/bundle-add.1.ronn +12 -9
  34. data/lib/bundler/man/bundle-binstubs.1 +7 -4
  35. data/lib/bundler/man/bundle-binstubs.1.ronn +6 -3
  36. data/lib/bundler/man/bundle-cache.1 +30 -2
  37. data/lib/bundler/man/bundle-cache.1.ronn +31 -2
  38. data/lib/bundler/man/bundle-check.1 +3 -3
  39. data/lib/bundler/man/bundle-check.1.ronn +4 -2
  40. data/lib/bundler/man/bundle-clean.1 +1 -1
  41. data/lib/bundler/man/bundle-config.1 +3 -1
  42. data/lib/bundler/man/bundle-config.1.ronn +2 -0
  43. data/lib/bundler/man/bundle-console.1 +2 -4
  44. data/lib/bundler/man/bundle-console.1.ronn +2 -7
  45. data/lib/bundler/man/bundle-doctor.1 +2 -2
  46. data/lib/bundler/man/bundle-doctor.1.ronn +1 -1
  47. data/lib/bundler/man/bundle-env.1 +9 -0
  48. data/lib/bundler/man/bundle-env.1.ronn +10 -0
  49. data/lib/bundler/man/bundle-exec.1 +5 -2
  50. data/lib/bundler/man/bundle-exec.1.ronn +4 -1
  51. data/lib/bundler/man/bundle-fund.1 +22 -0
  52. data/lib/bundler/man/bundle-fund.1.ronn +25 -0
  53. data/lib/bundler/man/bundle-gem.1 +17 -5
  54. data/lib/bundler/man/bundle-gem.1.ronn +27 -6
  55. data/lib/bundler/man/bundle-help.1 +1 -1
  56. data/lib/bundler/man/bundle-info.1 +5 -2
  57. data/lib/bundler/man/bundle-info.1.ronn +6 -2
  58. data/lib/bundler/man/bundle-init.1 +3 -3
  59. data/lib/bundler/man/bundle-init.1.ronn +3 -2
  60. data/lib/bundler/man/bundle-inject.1 +10 -2
  61. data/lib/bundler/man/bundle-inject.1.ronn +9 -1
  62. data/lib/bundler/man/bundle-install.1 +14 -11
  63. data/lib/bundler/man/bundle-install.1.ronn +21 -16
  64. data/lib/bundler/man/bundle-issue.1 +45 -0
  65. data/lib/bundler/man/bundle-issue.1.ronn +37 -0
  66. data/lib/bundler/man/bundle-licenses.1 +9 -0
  67. data/lib/bundler/man/bundle-licenses.1.ronn +10 -0
  68. data/lib/bundler/man/bundle-list.1 +1 -1
  69. data/lib/bundler/man/bundle-list.1.ronn +4 -1
  70. data/lib/bundler/man/bundle-lock.1 +21 -6
  71. data/lib/bundler/man/bundle-lock.1.ronn +25 -4
  72. data/lib/bundler/man/bundle-open.1 +2 -2
  73. data/lib/bundler/man/bundle-open.1.ronn +2 -1
  74. data/lib/bundler/man/bundle-outdated.1 +8 -5
  75. data/lib/bundler/man/bundle-outdated.1.ronn +8 -4
  76. data/lib/bundler/man/bundle-platform.1 +1 -1
  77. data/lib/bundler/man/bundle-plugin.1 +1 -1
  78. data/lib/bundler/man/bundle-pristine.1 +1 -1
  79. data/lib/bundler/man/bundle-pristine.1.ronn +1 -1
  80. data/lib/bundler/man/bundle-remove.1 +1 -1
  81. data/lib/bundler/man/bundle-remove.1.ronn +1 -1
  82. data/lib/bundler/man/bundle-show.1 +5 -2
  83. data/lib/bundler/man/bundle-show.1.ronn +4 -0
  84. data/lib/bundler/man/bundle-update.1 +13 -7
  85. data/lib/bundler/man/bundle-update.1.ronn +14 -6
  86. data/lib/bundler/man/bundle-version.1 +1 -1
  87. data/lib/bundler/man/bundle-viz.1 +4 -4
  88. data/lib/bundler/man/bundle-viz.1.ronn +7 -3
  89. data/lib/bundler/man/bundle.1 +1 -1
  90. data/lib/bundler/man/gemfile.5 +1 -1
  91. data/lib/bundler/man/index.txt +4 -0
  92. data/lib/bundler/materialization.rb +59 -0
  93. data/lib/bundler/plugin/events.rb +24 -0
  94. data/lib/bundler/plugin/installer.rb +1 -1
  95. data/lib/bundler/process_lock.rb +1 -1
  96. data/lib/bundler/remote_specification.rb +6 -1
  97. data/lib/bundler/resolver/base.rb +2 -6
  98. data/lib/bundler/resolver/candidate.rb +2 -2
  99. data/lib/bundler/resolver/spec_group.rb +4 -3
  100. data/lib/bundler/resolver.rb +5 -5
  101. data/lib/bundler/rubygems_ext.rb +17 -28
  102. data/lib/bundler/rubygems_gem_installer.rb +0 -1
  103. data/lib/bundler/rubygems_integration.rb +21 -11
  104. data/lib/bundler/runtime.rb +27 -7
  105. data/lib/bundler/self_manager.rb +2 -3
  106. data/lib/bundler/settings.rb +1 -0
  107. data/lib/bundler/shared_helpers.rb +2 -2
  108. data/lib/bundler/source/git/git_proxy.rb +0 -6
  109. data/lib/bundler/source/git.rb +56 -31
  110. data/lib/bundler/source/path.rb +2 -2
  111. data/lib/bundler/source_list.rb +1 -1
  112. data/lib/bundler/spec_set.rb +81 -56
  113. data/lib/bundler/stub_specification.rb +8 -0
  114. data/lib/bundler/templates/newgem/README.md.tt +1 -1
  115. data/lib/bundler/uri_credentials_filter.rb +1 -1
  116. data/lib/bundler/vendor/fileutils/COPYING +56 -0
  117. data/lib/bundler/vendor/fileutils/lib/fileutils.rb +15 -13
  118. data/lib/bundler/vendor/securerandom/COPYING +56 -0
  119. data/lib/bundler/vendor/securerandom/lib/securerandom.rb +5 -5
  120. data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +3 -5
  121. data/lib/bundler/vendor/thor/lib/thor/group.rb +11 -0
  122. data/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +1 -4
  123. data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +2 -2
  124. data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +2 -1
  125. data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +9 -9
  126. data/lib/bundler/vendor/thor/lib/thor/shell/html.rb +1 -1
  127. data/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +5 -21
  128. data/lib/bundler/vendor/thor/lib/thor/util.rb +1 -1
  129. data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  130. data/lib/bundler/vendor/thor/lib/thor.rb +11 -0
  131. data/lib/bundler/vendor/uri/COPYING +56 -0
  132. data/lib/bundler/vendor/uri/lib/uri/common.rb +37 -16
  133. data/lib/bundler/vendor/uri/lib/uri/file.rb +3 -3
  134. data/lib/bundler/vendor/uri/lib/uri/ftp.rb +1 -1
  135. data/lib/bundler/vendor/uri/lib/uri/generic.rb +16 -26
  136. data/lib/bundler/vendor/uri/lib/uri/http.rb +2 -2
  137. data/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +10 -3
  138. data/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +26 -3
  139. data/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
  140. data/lib/bundler/vendor/uri/lib/uri.rb +9 -9
  141. data/lib/bundler/vendored_securerandom.rb +0 -2
  142. data/lib/bundler/version.rb +1 -1
  143. data/lib/bundler.rb +37 -13
  144. metadata +18 -12
  145. data/lib/bundler/vendor/fileutils/LICENSE.txt +0 -22
  146. data/lib/bundler/vendor/securerandom/LICENSE.txt +0 -22
  147. data/lib/bundler/vendor/securerandom/lib/random/formatter.rb +0 -373
  148. data/lib/bundler/vendor/uri/LICENSE.txt +0 -22
@@ -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.
@@ -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\-INSTALL" "1" "October 2024" ""
3
+ .TH "BUNDLE\-INSTALL" "1" "December 2024" ""
4
4
  .SH "NAME"
5
5
  \fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
6
6
  .SH "SYNOPSIS"
7
- \fBbundle install\fR [\-\-binstubs[=DIRECTORY]] [\-\-clean] [\-\-deployment] [\-\-frozen] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-local] [\-\-no\-cache] [\-\-no\-prune] [\-\-path PATH] [\-\-prefer\-local] [\-\-quiet] [\-\-redownload] [\-\-retry=NUMBER] [\-\-shebang] [\-\-standalone[=GROUP[ GROUP\|\.\|\.\|\.]]] [\-\-system] [\-\-trust\-policy=POLICY] [\-\-with=GROUP[ GROUP\|\.\|\.\|\.]] [\-\-without=GROUP[ GROUP\|\.\|\.\|\.]]
7
+ \fBbundle install\fR [\-\-binstubs[=DIRECTORY]] [\-\-clean] [\-\-deployment] [\-\-frozen] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-local] [\-\-no\-cache] [\-\-no\-prune] [\-\-path PATH] [\-\-prefer\-local] [\-\-quiet] [\-\-redownload] [\-\-retry=NUMBER] [\-\-shebang=SHEBANG] [\-\-standalone[=GROUP[ GROUP\|\.\|\.\|\.]]] [\-\-system] [\-\-trust\-policy=TRUST\-POLICY] [\-\-target\-rbconfig=TARGET\-RBCONFIG] [\-\-with=GROUP[ GROUP\|\.\|\.\|\.]] [\-\-without=GROUP[ GROUP\|\.\|\.\|\.]]
8
8
  .SH "DESCRIPTION"
9
9
  Install the gems specified in your Gemfile(5)\. If this is the first time you run bundle install (and a \fBGemfile\.lock\fR does not exist), Bundler will fetch all remote sources, resolve dependencies and install all needed gems\.
10
10
  .P
@@ -14,10 +14,10 @@ If a \fBGemfile\.lock\fR does exist, and you have updated your Gemfile(5), Bundl
14
14
  .SH "OPTIONS"
15
15
  The \fB\-\-clean\fR, \fB\-\-deployment\fR, \fB\-\-frozen\fR, \fB\-\-no\-prune\fR, \fB\-\-path\fR, \fB\-\-shebang\fR, \fB\-\-system\fR, \fB\-\-without\fR and \fB\-\-with\fR options are deprecated because they only make sense if they are applied to every subsequent \fBbundle install\fR run automatically and that requires \fBbundler\fR to silently remember them\. Since \fBbundler\fR will no longer remember CLI flags in future versions, \fBbundle config\fR (see bundle\-config(1)) should be used to apply them permanently\.
16
16
  .TP
17
- \fB\-\-binstubs[=<directory>]\fR
17
+ \fB\-\-binstubs[=BINSTUBS]\fR
18
18
  Binstubs are scripts that wrap around executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it in \fBbin/\fR\. This lets you link the binstub inside of an application to the exact gem version the application needs\.
19
19
  .IP
20
- Creates a directory (defaults to \fB~/bin\fR) and places any executables from the gem there\. These executables run in Bundler's context\. If used, you might add this directory to your environment's \fBPATH\fR variable\. For instance, if the \fBrails\fR gem comes with a \fBrails\fR executable, this flag will create a \fBbin/rails\fR executable that ensures that all referred dependencies will be resolved using the bundled gems\.
20
+ Creates a directory (defaults to \fB~/bin\fR when the option is used without a value, or to the given \fB<BINSTUBS>\fR directory otherwise) and places any executables from the gem there\. These executables run in Bundler's context\. If used, you might add this directory to your environment's \fBPATH\fR variable\. For instance, if the \fBrails\fR gem comes with a \fBrails\fR executable, this flag will create a \fBbin/rails\fR executable that ensures that all referred dependencies will be resolved using the bundled gems\.
21
21
  .TP
22
22
  \fB\-\-clean\fR
23
23
  On finishing the installation Bundler is going to remove any gems not present in the current Gemfile(5)\. Don't worry, gems currently in use will not be removed\.
@@ -29,7 +29,7 @@ In \fIdeployment mode\fR, Bundler will 'roll\-out' the bundle for production or
29
29
  .IP
30
30
  This option is deprecated in favor of the \fBdeployment\fR setting\.
31
31
  .TP
32
- \fB\-\-redownload\fR
32
+ \fB\-\-redownload\fR, \fB\-\-force\fR
33
33
  Force download every gem, even if the required versions are already available locally\.
34
34
  .TP
35
35
  \fB\-\-frozen\fR
@@ -40,10 +40,10 @@ This option is deprecated in favor of the \fBfrozen\fR setting\.
40
40
  \fB\-\-full\-index\fR
41
41
  Bundler will not call Rubygems' API endpoint (default) but download and cache a (currently big) index file of all gems\. Performance can be improved for large bundles that seldom change by enabling this option\.
42
42
  .TP
43
- \fB\-\-gemfile=<gemfile>\fR
43
+ \fB\-\-gemfile=GEMFILE\fR
44
44
  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\.
45
45
  .TP
46
- \fB\-\-jobs=[<number>]\fR, \fB\-j[<number>]\fR
46
+ \fB\-\-jobs=<number>\fR, \fB\-j=<number>\fR
47
47
  The maximum number of parallel download and install jobs\. The default is the number of available processors\.
48
48
  .TP
49
49
  \fB\-\-local\fR
@@ -60,7 +60,7 @@ Don't remove stale gems from the cache when the installation finishes\.
60
60
  .IP
61
61
  This option is deprecated in favor of the \fBno_prune\fR setting\.
62
62
  .TP
63
- \fB\-\-path=<path>\fR
63
+ \fB\-\-path=PATH\fR
64
64
  The location to install the specified gems to\. This defaults to Rubygems' setting\. Bundler shares this location with Rubygems, \fBgem install \|\.\|\.\|\.\fR will have gem installed there, too\. Therefore, gems installed without a \fB\-\-path \|\.\|\.\|\.\fR setting will show up by calling \fBgem list\fR\. Accordingly, gems installed to other locations will not get listed\.
65
65
  .IP
66
66
  This option is deprecated in favor of the \fBpath\fR setting\.
@@ -71,22 +71,25 @@ Do not print progress information to the standard output\.
71
71
  \fB\-\-retry=[<number>]\fR
72
72
  Retry failed network or git requests for \fInumber\fR times\.
73
73
  .TP
74
- \fB\-\-shebang=<ruby\-executable>\fR
74
+ \fB\-\-shebang=SHEBANG\fR
75
75
  Uses the specified ruby executable (usually \fBruby\fR) to execute the scripts created with \fB\-\-binstubs\fR\. In addition, if you use \fB\-\-binstubs\fR together with \fB\-\-shebang jruby\fR these executables will be changed to execute \fBjruby\fR instead\.
76
76
  .IP
77
77
  This option is deprecated in favor of the \fBshebang\fR setting\.
78
78
  .TP
79
79
  \fB\-\-standalone[=<list>]\fR
80
- Makes a bundle that can work without depending on Rubygems or Bundler at runtime\. A space separated list of groups to install has to be specified\. Bundler creates a directory named \fBbundle\fR and installs the bundle there\. It also generates a \fBbundle/bundler/setup\.rb\fR file to replace Bundler's own setup in the manner required\. Using this option implicitly sets \fBpath\fR, which is a [remembered option][REMEMBERED OPTIONS]\.
80
+ Makes a bundle that can work without depending on Rubygems or Bundler at runtime\. A space separated list of groups to install can be specified\. Bundler creates a directory named \fBbundle\fR and installs the bundle there\. It also generates a \fBbundle/bundler/setup\.rb\fR file to replace Bundler's own setup in the manner required\. Using this option implicitly sets \fBpath\fR, which is a [remembered option][REMEMBERED OPTIONS]\.
81
81
  .TP
82
82
  \fB\-\-system\fR
83
83
  Installs the gems specified in the bundle to the system's Rubygems location\. This overrides any previous configuration of \fB\-\-path\fR\.
84
84
  .IP
85
85
  This option is deprecated in favor of the \fBsystem\fR setting\.
86
86
  .TP
87
- \fB\-\-trust\-policy=[<policy>]\fR
87
+ \fB\-\-trust\-policy=TRUST\-POLICY\fR
88
88
  Apply the Rubygems security policy \fIpolicy\fR, where policy is one of \fBHighSecurity\fR, \fBMediumSecurity\fR, \fBLowSecurity\fR, \fBAlmostNoSecurity\fR, or \fBNoSecurity\fR\. For more details, please see the Rubygems signing documentation linked below in \fISEE ALSO\fR\.
89
89
  .TP
90
+ \fB\-\-target\-rbconfig=TARGET\-RBCONFIG\fR
91
+ Path to rbconfig\.rb for the deployment target platform\.
92
+ .TP
90
93
  \fB\-\-with=<list>\fR
91
94
  A space\-separated list of groups referencing gems to install\. If an optional group is given it is installed\. If a group is given that is in the remembered list of groups given to \-\-without, it is removed from that list\.
92
95
  .IP
@@ -18,10 +18,11 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile
18
18
  [--quiet]
19
19
  [--redownload]
20
20
  [--retry=NUMBER]
21
- [--shebang]
21
+ [--shebang=SHEBANG]
22
22
  [--standalone[=GROUP[ GROUP...]]]
23
23
  [--system]
24
- [--trust-policy=POLICY]
24
+ [--trust-policy=TRUST-POLICY]
25
+ [--target-rbconfig=TARGET-RBCONFIG]
25
26
  [--with=GROUP[ GROUP...]]
26
27
  [--without=GROUP[ GROUP...]]
27
28
 
@@ -51,18 +52,19 @@ automatically and that requires `bundler` to silently remember them. Since
51
52
  `bundler` will no longer remember CLI flags in future versions, `bundle config`
52
53
  (see bundle-config(1)) should be used to apply them permanently.
53
54
 
54
- * `--binstubs[=<directory>]`:
55
+ * `--binstubs[=BINSTUBS]`:
55
56
  Binstubs are scripts that wrap around executables. Bundler creates a small Ruby
56
57
  file (a binstub) that loads Bundler, runs the command, and puts it in `bin/`.
57
58
  This lets you link the binstub inside of an application to the exact gem
58
59
  version the application needs.
59
60
 
60
- Creates a directory (defaults to `~/bin`) and places any executables from the
61
- gem there. These executables run in Bundler's context. If used, you might add
62
- this directory to your environment's `PATH` variable. For instance, if the
63
- `rails` gem comes with a `rails` executable, this flag will create a
64
- `bin/rails` executable that ensures that all referred dependencies will be
65
- resolved using the bundled gems.
61
+ Creates a directory (defaults to `~/bin` when the option is used without a
62
+ value, or to the given `<BINSTUBS>` directory otherwise) and places any
63
+ executables from the gem there. These executables run in Bundler's context. If
64
+ used, you might add this directory to your environment's `PATH` variable. For
65
+ instance, if the `rails` gem comes with a `rails` executable, this flag will
66
+ create a `bin/rails` executable that ensures that all referred dependencies
67
+ will be resolved using the bundled gems.
66
68
 
67
69
  * `--clean`:
68
70
  On finishing the installation Bundler is going to remove any gems not present
@@ -78,7 +80,7 @@ automatically and that requires `bundler` to silently remember them. Since
78
80
 
79
81
  This option is deprecated in favor of the `deployment` setting.
80
82
 
81
- * `--redownload`:
83
+ * `--redownload`, `--force`:
82
84
  Force download every gem, even if the required versions are already available
83
85
  locally.
84
86
 
@@ -93,14 +95,14 @@ automatically and that requires `bundler` to silently remember them. Since
93
95
  a (currently big) index file of all gems. Performance can be improved for
94
96
  large bundles that seldom change by enabling this option.
95
97
 
96
- * `--gemfile=<gemfile>`:
98
+ * `--gemfile=GEMFILE`:
97
99
  The location of the Gemfile(5) which Bundler should use. This defaults
98
100
  to a Gemfile(5) in the current working directory. In general, Bundler
99
101
  will assume that the location of the Gemfile(5) is also the project's
100
102
  root and will try to find `Gemfile.lock` and `vendor/cache` relative
101
103
  to this location.
102
104
 
103
- * `--jobs=[<number>]`, `-j[<number>]`:
105
+ * `--jobs=<number>`, `-j=<number>`:
104
106
  The maximum number of parallel download and install jobs. The default is the
105
107
  number of available processors.
106
108
 
@@ -126,7 +128,7 @@ automatically and that requires `bundler` to silently remember them. Since
126
128
 
127
129
  This option is deprecated in favor of the `no_prune` setting.
128
130
 
129
- * `--path=<path>`:
131
+ * `--path=PATH`:
130
132
  The location to install the specified gems to. This defaults to Rubygems'
131
133
  setting. Bundler shares this location with Rubygems, `gem install ...` will
132
134
  have gem installed there, too. Therefore, gems installed without a
@@ -141,7 +143,7 @@ automatically and that requires `bundler` to silently remember them. Since
141
143
  * `--retry=[<number>]`:
142
144
  Retry failed network or git requests for <number> times.
143
145
 
144
- * `--shebang=<ruby-executable>`:
146
+ * `--shebang=SHEBANG`:
145
147
  Uses the specified ruby executable (usually `ruby`) to execute the scripts
146
148
  created with `--binstubs`. In addition, if you use `--binstubs` together with
147
149
  `--shebang jruby` these executables will be changed to execute `jruby`
@@ -151,7 +153,7 @@ automatically and that requires `bundler` to silently remember them. Since
151
153
 
152
154
  * `--standalone[=<list>]`:
153
155
  Makes a bundle that can work without depending on Rubygems or Bundler at
154
- runtime. A space separated list of groups to install has to be specified.
156
+ runtime. A space separated list of groups to install can be specified.
155
157
  Bundler creates a directory named `bundle` and installs the bundle there. It
156
158
  also generates a `bundle/bundler/setup.rb` file to replace Bundler's own setup
157
159
  in the manner required. Using this option implicitly sets `path`, which is a
@@ -163,12 +165,15 @@ automatically and that requires `bundler` to silently remember them. Since
163
165
 
164
166
  This option is deprecated in favor of the `system` setting.
165
167
 
166
- * `--trust-policy=[<policy>]`:
168
+ * `--trust-policy=TRUST-POLICY`:
167
169
  Apply the Rubygems security policy <policy>, where policy is one of
168
170
  `HighSecurity`, `MediumSecurity`, `LowSecurity`, `AlmostNoSecurity`, or
169
171
  `NoSecurity`. For more details, please see the Rubygems signing documentation
170
172
  linked below in [SEE ALSO][].
171
173
 
174
+ * `--target-rbconfig=TARGET-RBCONFIG`:
175
+ Path to rbconfig.rb for the deployment target platform.
176
+
172
177
  * `--with=<list>`:
173
178
  A space-separated list of groups referencing gems to install. If an
174
179
  optional group is given it is installed. If a group is given that is
@@ -0,0 +1,45 @@
1
+ .\" generated with nRonn/v0.11.1
2
+ .\" https://github.com/n-ronn/nronn/tree/0.11.1
3
+ .TH "BUNDLE\-ISSUE" "1" "December 2024" ""
4
+ .SH "NAME"
5
+ \fBbundle\-issue\fR \- Get help reporting Bundler issues
6
+ .SH "SYNOPSIS"
7
+ \fBbundle issue\fR
8
+ .SH "DESCRIPTION"
9
+ Provides guidance on reporting Bundler issues and outputs detailed system information that should be included when filing a bug report\. This command:
10
+ .IP "1." 4
11
+ Displays links to troubleshooting resources
12
+ .IP "2." 4
13
+ Shows instructions for reporting issues
14
+ .IP "3." 4
15
+ Outputs comprehensive environment information needed for debugging
16
+ .IP "" 0
17
+ .P
18
+ The command helps ensure that bug reports include all necessary system details for effective troubleshooting\.
19
+ .SH "OUTPUT"
20
+ The command outputs several sections:
21
+ .IP "\(bu" 4
22
+ Troubleshooting links and resources
23
+ .IP "\(bu" 4
24
+ Link to the GitHub issue template
25
+ .IP "\(bu" 4
26
+ Environment information including: Bundler version and platforms, Ruby version and configuration, RubyGems version and paths, Development tool versions (Git, RVM, rbenv, chruby)
27
+ .IP "\(bu" 4
28
+ Bundler build metadata
29
+ .IP "\(bu" 4
30
+ Current Bundler settings
31
+ .IP "\(bu" 4
32
+ Bundle Doctor output
33
+ .IP "" 0
34
+ .SH "EXAMPLES"
35
+ Get issue reporting information:
36
+ .IP "" 4
37
+ .nf
38
+ $ bundle issue
39
+ .fi
40
+ .IP "" 0
41
+ .SH "SEE ALSO"
42
+ .IP "\(bu" 4
43
+ bundle\-doctor(1)
44
+ .IP "" 0
45
+