bundler 2.1.4 → 2.2.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bundler might be problematic. Click here for more details.

Files changed (210) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1624 -1426
  3. data/README.md +6 -8
  4. data/bundler.gemspec +4 -4
  5. data/exe/bundle +3 -0
  6. data/lib/bundler.rb +32 -8
  7. data/lib/bundler/build_metadata.rb +3 -11
  8. data/lib/bundler/cli.rb +55 -21
  9. data/lib/bundler/cli/add.rb +1 -1
  10. data/lib/bundler/cli/binstubs.rb +6 -2
  11. data/lib/bundler/cli/cache.rb +1 -7
  12. data/lib/bundler/cli/clean.rb +1 -1
  13. data/lib/bundler/cli/common.rb +14 -0
  14. data/lib/bundler/cli/console.rb +1 -1
  15. data/lib/bundler/cli/doctor.rb +1 -1
  16. data/lib/bundler/cli/exec.rb +4 -4
  17. data/lib/bundler/cli/fund.rb +36 -0
  18. data/lib/bundler/cli/gem.rb +86 -11
  19. data/lib/bundler/cli/info.rb +15 -4
  20. data/lib/bundler/cli/init.rb +2 -2
  21. data/lib/bundler/cli/inject.rb +1 -1
  22. data/lib/bundler/cli/install.rb +13 -11
  23. data/lib/bundler/cli/issue.rb +2 -2
  24. data/lib/bundler/cli/list.rb +12 -10
  25. data/lib/bundler/cli/outdated.rb +87 -66
  26. data/lib/bundler/cli/plugin.rb +10 -0
  27. data/lib/bundler/cli/pristine.rb +5 -0
  28. data/lib/bundler/cli/show.rb +1 -1
  29. data/lib/bundler/cli/update.rb +3 -1
  30. data/lib/bundler/compact_index_client.rb +1 -1
  31. data/lib/bundler/compact_index_client/cache.rb +6 -14
  32. data/lib/bundler/compact_index_client/gem_parser.rb +28 -0
  33. data/lib/bundler/compact_index_client/updater.rb +5 -13
  34. data/lib/bundler/definition.rb +66 -82
  35. data/lib/bundler/dep_proxy.rb +16 -9
  36. data/lib/bundler/dependency.rb +3 -10
  37. data/lib/bundler/dsl.rb +5 -9
  38. data/lib/bundler/endpoint_specification.rb +1 -1
  39. data/lib/bundler/env.rb +1 -1
  40. data/lib/bundler/environment_preserver.rb +26 -2
  41. data/lib/bundler/errors.rb +1 -0
  42. data/lib/bundler/feature_flag.rb +0 -3
  43. data/lib/bundler/fetcher.rb +4 -3
  44. data/lib/bundler/fetcher/base.rb +1 -1
  45. data/lib/bundler/fetcher/compact_index.rb +1 -1
  46. data/lib/bundler/fetcher/downloader.rb +1 -1
  47. data/lib/bundler/fetcher/index.rb +3 -4
  48. data/lib/bundler/friendly_errors.rb +22 -13
  49. data/lib/bundler/gem_helper.rb +32 -17
  50. data/lib/bundler/gem_helpers.rb +36 -25
  51. data/lib/bundler/gem_version_promoter.rb +4 -4
  52. data/lib/bundler/graph.rb +1 -1
  53. data/lib/bundler/index.rb +6 -2
  54. data/lib/bundler/injector.rb +22 -4
  55. data/lib/bundler/inline.rb +1 -1
  56. data/lib/bundler/installer.rb +35 -32
  57. data/lib/bundler/installer/gem_installer.rb +3 -3
  58. data/lib/bundler/installer/parallel_installer.rb +10 -10
  59. data/lib/bundler/installer/standalone.rb +2 -2
  60. data/lib/bundler/lazy_specification.rb +35 -11
  61. data/lib/bundler/lockfile_generator.rb +1 -1
  62. data/lib/bundler/lockfile_parser.rb +1 -1
  63. data/lib/bundler/man/.document +1 -0
  64. data/{man → lib/bundler/man}/bundle-add.1 +1 -1
  65. data/{man/bundle-add.ronn → lib/bundler/man/bundle-add.1.ronn} +0 -0
  66. data/{man → lib/bundler/man}/bundle-binstubs.1 +5 -3
  67. data/{man/bundle-binstubs.ronn → lib/bundler/man/bundle-binstubs.1.ronn} +2 -4
  68. data/{man → lib/bundler/man}/bundle-cache.1 +1 -1
  69. data/{man/bundle-cache.ronn → lib/bundler/man/bundle-cache.1.ronn} +0 -0
  70. data/{man → lib/bundler/man}/bundle-check.1 +1 -1
  71. data/{man/bundle-check.ronn → lib/bundler/man/bundle-check.1.ronn} +0 -0
  72. data/{man → lib/bundler/man}/bundle-clean.1 +1 -1
  73. data/{man/bundle-clean.ronn → lib/bundler/man/bundle-clean.1.ronn} +0 -0
  74. data/{man → lib/bundler/man}/bundle-config.1 +16 -25
  75. data/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +19 -30
  76. data/{man → lib/bundler/man}/bundle-doctor.1 +1 -1
  77. data/{man/bundle-doctor.ronn → lib/bundler/man/bundle-doctor.1.ronn} +0 -0
  78. data/{man → lib/bundler/man}/bundle-exec.1 +1 -1
  79. data/{man/bundle-exec.ronn → lib/bundler/man/bundle-exec.1.ronn} +0 -0
  80. data/{man → lib/bundler/man}/bundle-gem.1 +25 -3
  81. data/{man/bundle-gem.ronn → lib/bundler/man/bundle-gem.1.ronn} +30 -7
  82. data/{man → lib/bundler/man}/bundle-info.1 +1 -1
  83. data/{man/bundle-info.ronn → lib/bundler/man/bundle-info.1.ronn} +0 -0
  84. data/{man → lib/bundler/man}/bundle-init.1 +1 -1
  85. data/{man/bundle-init.ronn → lib/bundler/man/bundle-init.1.ronn} +0 -0
  86. data/{man → lib/bundler/man}/bundle-inject.1 +1 -1
  87. data/{man/bundle-inject.ronn → lib/bundler/man/bundle-inject.1.ronn} +0 -0
  88. data/{man → lib/bundler/man}/bundle-install.1 +30 -3
  89. data/{man/bundle-install.ronn → lib/bundler/man/bundle-install.1.ronn} +25 -3
  90. data/{man → lib/bundler/man}/bundle-list.1 +7 -7
  91. data/{man/bundle-list.ronn → lib/bundler/man/bundle-list.1.ronn} +6 -6
  92. data/{man → lib/bundler/man}/bundle-lock.1 +1 -1
  93. data/{man/bundle-lock.ronn → lib/bundler/man/bundle-lock.1.ronn} +0 -0
  94. data/{man → lib/bundler/man}/bundle-open.1 +1 -1
  95. data/{man/bundle-open.ronn → lib/bundler/man/bundle-open.1.ronn} +0 -0
  96. data/{man → lib/bundler/man}/bundle-outdated.1 +1 -1
  97. data/{man/bundle-outdated.ronn → lib/bundler/man/bundle-outdated.1.ronn} +0 -0
  98. data/{man → lib/bundler/man}/bundle-platform.1 +1 -1
  99. data/{man/bundle-platform.ronn → lib/bundler/man/bundle-platform.1.ronn} +0 -0
  100. data/{man → lib/bundler/man}/bundle-pristine.1 +1 -1
  101. data/{man/bundle-pristine.ronn → lib/bundler/man/bundle-pristine.1.ronn} +0 -0
  102. data/{man → lib/bundler/man}/bundle-remove.1 +1 -1
  103. data/{man/bundle-remove.ronn → lib/bundler/man/bundle-remove.1.ronn} +0 -0
  104. data/{man → lib/bundler/man}/bundle-show.1 +1 -1
  105. data/{man/bundle-show.ronn → lib/bundler/man/bundle-show.1.ronn} +0 -0
  106. data/{man → lib/bundler/man}/bundle-update.1 +1 -1
  107. data/{man/bundle-update.ronn → lib/bundler/man/bundle-update.1.ronn} +0 -0
  108. data/{man → lib/bundler/man}/bundle-viz.1 +1 -1
  109. data/{man/bundle-viz.ronn → lib/bundler/man/bundle-viz.1.ronn} +0 -0
  110. data/{man → lib/bundler/man}/bundle.1 +1 -1
  111. data/{man/bundle.ronn → lib/bundler/man/bundle.1.ronn} +0 -0
  112. data/{man → lib/bundler/man}/gemfile.5 +4 -4
  113. data/{man → lib/bundler/man}/gemfile.5.ronn +4 -4
  114. data/{man → lib/bundler/man}/index.txt +0 -0
  115. data/lib/bundler/mirror.rb +2 -2
  116. data/lib/bundler/plugin.rb +30 -5
  117. data/lib/bundler/plugin/api/source.rb +1 -1
  118. data/lib/bundler/plugin/dsl.rb +1 -1
  119. data/lib/bundler/plugin/index.rb +10 -1
  120. data/lib/bundler/plugin/installer.rb +1 -1
  121. data/lib/bundler/plugin/installer/rubygems.rb +1 -1
  122. data/lib/bundler/plugin/source_list.rb +1 -1
  123. data/lib/bundler/psyched_yaml.rb +0 -15
  124. data/lib/bundler/remote_specification.rb +5 -2
  125. data/lib/bundler/resolver.rb +43 -19
  126. data/lib/bundler/resolver/spec_group.rb +39 -24
  127. data/lib/bundler/retry.rb +1 -1
  128. data/lib/bundler/ruby_version.rb +1 -1
  129. data/lib/bundler/rubygems_ext.rb +69 -9
  130. data/lib/bundler/rubygems_gem_installer.rb +3 -9
  131. data/lib/bundler/rubygems_integration.rb +25 -60
  132. data/lib/bundler/runtime.rb +4 -14
  133. data/lib/bundler/settings.rb +49 -46
  134. data/lib/bundler/shared_helpers.rb +2 -2
  135. data/lib/bundler/similarity_detector.rb +1 -1
  136. data/lib/bundler/source.rb +1 -1
  137. data/lib/bundler/source/git.rb +23 -21
  138. data/lib/bundler/source/git/git_proxy.rb +82 -80
  139. data/lib/bundler/source/path.rb +7 -3
  140. data/lib/bundler/source/path/installer.rb +10 -10
  141. data/lib/bundler/source/rubygems.rb +23 -17
  142. data/lib/bundler/source/rubygems/remote.rb +1 -1
  143. data/lib/bundler/source_list.rb +2 -2
  144. data/lib/bundler/spec_set.rb +8 -10
  145. data/lib/bundler/stub_specification.rb +17 -7
  146. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  147. data/lib/bundler/templates/newgem/Gemfile.tt +9 -1
  148. data/lib/bundler/templates/newgem/README.md.tt +1 -2
  149. data/lib/bundler/templates/newgem/Rakefile.tt +19 -5
  150. data/lib/bundler/templates/newgem/bin/console.tt +1 -0
  151. data/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  152. data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  153. data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
  154. data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  155. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +4 -2
  156. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  157. data/lib/bundler/templates/newgem/newgem.gemspec.tt +15 -7
  158. data/lib/bundler/templates/newgem/rubocop.yml.tt +13 -0
  159. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  160. data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
  161. data/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  162. data/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  163. data/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  164. data/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  165. data/lib/bundler/ui/shell.rb +5 -5
  166. data/lib/bundler/uri_credentials_filter.rb +3 -1
  167. data/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -1
  168. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +34 -1
  169. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +2 -2
  170. data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +1 -1
  171. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  172. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +48 -46
  173. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +82 -189
  174. data/lib/bundler/vendor/thor/lib/thor.rb +0 -7
  175. data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  176. data/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  177. data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  178. data/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +154 -0
  179. data/lib/bundler/vendored_persistent.rb +0 -7
  180. data/lib/bundler/vendored_tmpdir.rb +4 -0
  181. data/lib/bundler/version.rb +1 -1
  182. data/lib/bundler/worker.rb +1 -1
  183. data/lib/bundler/yaml_serializer.rb +1 -1
  184. metadata +70 -85
  185. data/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +0 -26
  186. data/man/bundle-add.1.txt +0 -58
  187. data/man/bundle-binstubs.1.txt +0 -48
  188. data/man/bundle-cache.1.txt +0 -78
  189. data/man/bundle-check.1.txt +0 -33
  190. data/man/bundle-clean.1.txt +0 -26
  191. data/man/bundle-config.1.txt +0 -528
  192. data/man/bundle-doctor.1.txt +0 -44
  193. data/man/bundle-exec.1.txt +0 -178
  194. data/man/bundle-gem.1.txt +0 -91
  195. data/man/bundle-info.1.txt +0 -21
  196. data/man/bundle-init.1.txt +0 -34
  197. data/man/bundle-inject.1.txt +0 -32
  198. data/man/bundle-install.1.txt +0 -401
  199. data/man/bundle-list.1.txt +0 -43
  200. data/man/bundle-lock.1.txt +0 -93
  201. data/man/bundle-open.1.txt +0 -29
  202. data/man/bundle-outdated.1.txt +0 -131
  203. data/man/bundle-platform.1.txt +0 -57
  204. data/man/bundle-pristine.1.txt +0 -44
  205. data/man/bundle-remove.1.txt +0 -34
  206. data/man/bundle-show.1.txt +0 -27
  207. data/man/bundle-update.1.txt +0 -390
  208. data/man/bundle-viz.1.txt +0 -39
  209. data/man/bundle.1.txt +0 -116
  210. data/man/gemfile.5.txt +0 -649
@@ -25,7 +25,7 @@ module Bundler
25
25
  out
26
26
  end
27
27
 
28
- private
28
+ private
29
29
 
30
30
  def add_sources
31
31
  definition.send(:sources).lock_sources.each_with_index do |source, idx|
@@ -109,7 +109,7 @@ module Bundler
109
109
  "bundler:#{bundler_version}#{prerelease_text}`.\n"
110
110
  end
111
111
 
112
- private
112
+ private
113
113
 
114
114
  TYPES = {
115
115
  GIT => Bundler::Source::Git,
@@ -0,0 +1 @@
1
+ # Ignore all files in this directory
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-ADD" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-ADD" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-BINSTUBS" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-BINSTUBS" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
@@ -36,5 +36,7 @@ Makes binstubs that can work without depending on Rubygems or Bundler at runtime
36
36
  \fB\-\-shebang\fR
37
37
  Specify a different shebang executable name than the default (default \'ruby\')
38
38
  .
39
- .SH "BUNDLE INSTALL \-\-BINSTUBS"
40
- To create binstubs for all the gems in the bundle you can use the \fB\-\-binstubs\fR flag in bundle install(1) \fIbundle\-install\.1\.html\fR\.
39
+ .TP
40
+ \fB\-\-all\fR
41
+ Create binstubs for all gems in the bundle\.
42
+
@@ -37,7 +37,5 @@ Calling binstubs with [GEM [GEM]] will create binstubs for all given gems.
37
37
  * `--shebang`:
38
38
  Specify a different shebang executable name than the default (default 'ruby')
39
39
 
40
- ## BUNDLE INSTALL --BINSTUBS
41
-
42
- To create binstubs for all the gems in the bundle you can use the `--binstubs`
43
- flag in [bundle install(1)](bundle-install.1.html).
40
+ * `--all`:
41
+ Create binstubs for all gems in the bundle.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CACHE" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-CACHE" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CHECK" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-CHECK" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CLEAN" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-CLEAN" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CONFIG" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-CONFIG" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-config\fR \- Set bundler configuration options
@@ -16,7 +16,7 @@ This command allows you to interact with Bundler\'s configuration system\.
16
16
  Bundler loads configuration settings in this order:
17
17
  .
18
18
  .IP "1." 4
19
- Local config (\fBapp/\.bundle/config\fR)
19
+ Local config (\fB<project_root>/\.bundle/config\fR or \fB$BUNDLE_APP_CONFIG/config\fR)
20
20
  .
21
21
  .IP "2." 4
22
22
  Environmental variables (\fBENV\fR)
@@ -42,7 +42,7 @@ Executing \fBbundle config set <name> <value>\fR will set that configuration to
42
42
  Executing \fBbundle config set \-\-global <name> <value>\fR works the same as above\.
43
43
  .
44
44
  .P
45
- Executing \fBbundle config set \-\-local <name> <value>\fR will set that configuration to the local application\. The configuration will be stored in \fBapp/\.bundle/config\fR\.
45
+ Executing \fBbundle config set \-\-local <name> <value>\fR will set that configuration in the directory for the local application\. The configuration will be stored in \fB<project_root>/\.bundle/config\fR\. If \fBBUNDLE_APP_CONFIG\fR is set, the configuration will be stored in \fB$BUNDLE_APP_CONFIG/config\fR\.
46
46
  .
47
47
  .P
48
48
  Executing \fBbundle config unset <name>\fR will delete the configuration in both local and global sources\.
@@ -57,13 +57,13 @@ Executing \fBbundle config unset \-\-local <name> <value>\fR will delete the con
57
57
  Executing bundle with the \fBBUNDLE_IGNORE_CONFIG\fR environment variable set will cause it to ignore all configuration\.
58
58
  .
59
59
  .P
60
- Executing \fBbundle config set disable_multisource true\fR upgrades the warning about the Gemfile containing multiple primary sources to an error\. Executing \fBbundle config unset disable_multisource\fR downgrades this error to a warning\.
60
+ Executing \fBbundle config set \-\-local disable_multisource true\fR upgrades the warning about the Gemfile containing multiple primary sources to an error\. Executing \fBbundle config unset disable_multisource\fR downgrades this error to a warning\.
61
61
  .
62
62
  .SH "REMEMBERING OPTIONS"
63
63
  Flags passed to \fBbundle install\fR or the Bundler runtime, such as \fB\-\-path foo\fR or \fB\-\-without production\fR, are remembered between commands and saved to your local application\'s configuration (normally, \fB\./\.bundle/config\fR)\.
64
64
  .
65
65
  .P
66
- However, this will be changed in bundler 3, so it\'s better not to rely on this behavior\. If these options must be remembered, it\'s better to set them using \fBbundle config\fR (e\.g\., \fBbundle config set path foo\fR)\.
66
+ However, this will be changed in bundler 3, so it\'s better not to rely on this behavior\. If these options must be remembered, it\'s better to set them using \fBbundle config\fR (e\.g\., \fBbundle config set \-\-local path foo\fR)\.
67
67
  .
68
68
  .P
69
69
  The options that can be configured are:
@@ -111,7 +111,7 @@ Since the specific location of that executable can change from machine to machin
111
111
  .
112
112
  .nf
113
113
 
114
- bundle config set build\.mysql \-\-with\-mysql\-config=/usr/local/mysql/bin/mysql_config
114
+ bundle config set \-\-global build\.mysql \-\-with\-mysql\-config=/usr/local/mysql/bin/mysql_config
115
115
  .
116
116
  .fi
117
117
  .
@@ -154,7 +154,7 @@ The following is a list of all configuration keys and their purpose\. You can le
154
154
  \fBbin\fR (\fBBUNDLE_BIN\fR): Install executables from gems in the bundle to the specified directory\. Defaults to \fBfalse\fR\.
155
155
  .
156
156
  .IP "\(bu" 4
157
- \fBcache_all\fR (\fBBUNDLE_CACHE_ALL\fR): Cache all gems, including path and git gems\.
157
+ \fBcache_all\fR (\fBBUNDLE_CACHE_ALL\fR): Cache all gems, including path and git gems\. This needs to be explicitly configured on bundler 1 and bundler 2, but will be the default on bundler 3\.
158
158
  .
159
159
  .IP "\(bu" 4
160
160
  \fBcache_all_platforms\fR (\fBBUNDLE_CACHE_ALL_PLATFORMS\fR): Cache gems for all platforms\.
@@ -187,9 +187,6 @@ The following is a list of all configuration keys and their purpose\. You can le
187
187
  \fBdisable_multisource\fR (\fBBUNDLE_DISABLE_MULTISOURCE\fR): When set, Gemfiles containing multiple sources will produce errors instead of warnings\. Use \fBbundle config unset disable_multisource\fR to unset\.
188
188
  .
189
189
  .IP "\(bu" 4
190
- \fBdisable_platform_warnings\fR (\fBBUNDLE_DISABLE_PLATFORM_WARNINGS\fR): Disable warnings during bundle install when a dependency is unused on the current platform\.
191
- .
192
- .IP "\(bu" 4
193
190
  \fBdisable_shared_gems\fR (\fBBUNDLE_DISABLE_SHARED_GEMS\fR): Stop Bundler from accessing gems installed to RubyGems\' normal location\.
194
191
  .
195
192
  .IP "\(bu" 4
@@ -265,12 +262,6 @@ The following is a list of all configuration keys and their purpose\. You can le
265
262
  \fBsilence_root_warning\fR (\fBBUNDLE_SILENCE_ROOT_WARNING\fR): Silence the warning Bundler prints when installing gems as root\.
266
263
  .
267
264
  .IP "\(bu" 4
268
- \fBskip_default_git_sources\fR (\fBBUNDLE_SKIP_DEFAULT_GIT_SOURCES\fR): Whether Bundler should skip adding default git source shortcuts to the Gemfile DSL\.
269
- .
270
- .IP "\(bu" 4
271
- \fBspecific_platform\fR (\fBBUNDLE_SPECIFIC_PLATFORM\fR): Allow bundler to resolve for the specific running platform and store it in the lockfile, instead of only using a generic platform\. A specific platform is the exact platform triple reported by \fBGem::Platform\.local\fR, such as \fBx86_64\-darwin\-16\fR or \fBuniversal\-java\-1\.8\fR\. On the other hand, generic platforms are those such as \fBruby\fR, \fBmswin\fR, or \fBjava\fR\. In this example, \fBx86_64\-darwin\-16\fR would map to \fBruby\fR and \fBuniversal\-java\-1\.8\fR to \fBjava\fR\.
272
- .
273
- .IP "\(bu" 4
274
265
  \fBssl_ca_cert\fR (\fBBUNDLE_SSL_CA_CERT\fR): Path to a designated CA certificate file or folder containing multiple certificates for trusted CAs in PEM format\.
275
266
  .
276
267
  .IP "\(bu" 4
@@ -318,7 +309,7 @@ Bundler also allows you to work against a git repository locally instead of usin
318
309
  .
319
310
  .nf
320
311
 
321
- bundle config set local\.GEM_NAME /path/to/local/git/repository
312
+ bundle config set \-\-local local\.GEM_NAME /path/to/local/git/repository
322
313
  .
323
314
  .fi
324
315
  .
@@ -331,7 +322,7 @@ For example, in order to use a local Rack repository, a developer could call:
331
322
  .
332
323
  .nf
333
324
 
334
- bundle config set local\.rack ~/Work/git/rack
325
+ bundle config set \-\-local local\.rack ~/Work/git/rack
335
326
  .
336
327
  .fi
337
328
  .
@@ -353,7 +344,7 @@ Bundler supports overriding gem sources with mirrors\. This allows you to config
353
344
  .
354
345
  .nf
355
346
 
356
- bundle config set mirror\.SOURCE_URL MIRROR_URL
347
+ bundle config set \-\-global mirror\.SOURCE_URL MIRROR_URL
357
348
  .
358
349
  .fi
359
350
  .
@@ -366,7 +357,7 @@ For example, to use a mirror of rubygems\.org hosted at rubygems\-mirror\.org:
366
357
  .
367
358
  .nf
368
359
 
369
- bundle config set mirror\.http://rubygems\.org http://rubygems\-mirror\.org
360
+ bundle config set \-\-global mirror\.http://rubygems\.org http://rubygems\-mirror\.org
370
361
  .
371
362
  .fi
372
363
  .
@@ -379,7 +370,7 @@ Each mirror also provides a fallback timeout setting\. If the mirror does not re
379
370
  .
380
371
  .nf
381
372
 
382
- bundle config set mirror\.SOURCE_URL\.fallback_timeout TIMEOUT
373
+ bundle config set \-\-global mirror\.SOURCE_URL\.fallback_timeout TIMEOUT
383
374
  .
384
375
  .fi
385
376
  .
@@ -392,7 +383,7 @@ For example, to fall back to rubygems\.org after 3 seconds:
392
383
  .
393
384
  .nf
394
385
 
395
- bundle config set mirror\.https://rubygems\.org\.fallback_timeout 3
386
+ bundle config set \-\-global mirror\.https://rubygems\.org\.fallback_timeout 3
396
387
  .
397
388
  .fi
398
389
  .
@@ -408,7 +399,7 @@ Bundler allows you to configure credentials for any gem source, which allows you
408
399
  .
409
400
  .nf
410
401
 
411
- bundle config set SOURCE_HOSTNAME USERNAME:PASSWORD
402
+ bundle config set \-\-global SOURCE_HOSTNAME USERNAME:PASSWORD
412
403
  .
413
404
  .fi
414
405
  .
@@ -421,7 +412,7 @@ For example, to save the credentials of user \fBclaudette\fR for the gem source
421
412
  .
422
413
  .nf
423
414
 
424
- bundle config set gems\.longerous\.com claudette:s00pers3krit
415
+ bundle config set \-\-global gems\.longerous\.com claudette:s00pers3krit
425
416
  .
426
417
  .fi
427
418
  .
@@ -447,7 +438,7 @@ For gems with a git source with HTTP(S) URL you can specify credentials like so:
447
438
  .
448
439
  .nf
449
440
 
450
- bundle config set https://github\.com/bundler/bundler\.git username:password
441
+ bundle config set \-\-global https://github\.com/rubygems/rubygems\.git username:password
451
442
  .
452
443
  .fi
453
444
  .
@@ -11,7 +11,7 @@ This command allows you to interact with Bundler's configuration system.
11
11
 
12
12
  Bundler loads configuration settings in this order:
13
13
 
14
- 1. Local config (`app/.bundle/config`)
14
+ 1. Local config (`<project_root>/.bundle/config` or `$BUNDLE_APP_CONFIG/config`)
15
15
  2. Environmental variables (`ENV`)
16
16
  3. Global config (`~/.bundle/config`)
17
17
  4. Bundler default config
@@ -30,8 +30,10 @@ overridden and user will be warned.
30
30
 
31
31
  Executing `bundle config set --global <name> <value>` works the same as above.
32
32
 
33
- Executing `bundle config set --local <name> <value>` will set that configuration to
34
- the local application. The configuration will be stored in `app/.bundle/config`.
33
+ Executing `bundle config set --local <name> <value>` will set that configuration
34
+ in the directory for the local application. The configuration will be stored in
35
+ `<project_root>/.bundle/config`. If `BUNDLE_APP_CONFIG` is set, the configuration
36
+ will be stored in `$BUNDLE_APP_CONFIG/config`.
35
37
 
36
38
  Executing `bundle config unset <name>` will delete the configuration in both
37
39
  local and global sources.
@@ -45,7 +47,7 @@ configuration only from the local application.
45
47
  Executing bundle with the `BUNDLE_IGNORE_CONFIG` environment variable set will
46
48
  cause it to ignore all configuration.
47
49
 
48
- Executing `bundle config set disable_multisource true` upgrades the warning about
50
+ Executing `bundle config set --local disable_multisource true` upgrades the warning about
49
51
  the Gemfile containing multiple primary sources to an error. Executing `bundle
50
52
  config unset disable_multisource` downgrades this error to a warning.
51
53
 
@@ -57,7 +59,7 @@ application's configuration (normally, `./.bundle/config`).
57
59
 
58
60
  However, this will be changed in bundler 3, so it's better not to rely on this
59
61
  behavior. If these options must be remembered, it's better to set them using
60
- `bundle config` (e.g., `bundle config set path foo`).
62
+ `bundle config` (e.g., `bundle config set --local path foo`).
61
63
 
62
64
  The options that can be configured are:
63
65
 
@@ -101,7 +103,7 @@ pass configuration flags to `gem install` to specify where to find the
101
103
  Since the specific location of that executable can change from machine
102
104
  to machine, you can specify these flags on a per-machine basis.
103
105
 
104
- bundle config set build.mysql --with-mysql-config=/usr/local/mysql/bin/mysql_config
106
+ bundle config set --global build.mysql --with-mysql-config=/usr/local/mysql/bin/mysql_config
105
107
 
106
108
  After running this command, every time bundler needs to install the
107
109
  `mysql` gem, it will pass along the flags you specified.
@@ -148,7 +150,8 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
148
150
  Install executables from gems in the bundle to the specified directory.
149
151
  Defaults to `false`.
150
152
  * `cache_all` (`BUNDLE_CACHE_ALL`):
151
- Cache all gems, including path and git gems.
153
+ Cache all gems, including path and git gems. This needs to be explicitly
154
+ configured on bundler 1 and bundler 2, but will be the default on bundler 3.
152
155
  * `cache_all_platforms` (`BUNDLE_CACHE_ALL_PLATFORMS`):
153
156
  Cache gems for all platforms.
154
157
  * `cache_path` (`BUNDLE_CACHE_PATH`):
@@ -179,8 +182,6 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
179
182
  When set, Gemfiles containing multiple sources will produce errors
180
183
  instead of warnings.
181
184
  Use `bundle config unset disable_multisource` to unset.
182
- * `disable_platform_warnings` (`BUNDLE_DISABLE_PLATFORM_WARNINGS`):
183
- Disable warnings during bundle install when a dependency is unused on the current platform.
184
185
  * `disable_shared_gems` (`BUNDLE_DISABLE_SHARED_GEMS`):
185
186
  Stop Bundler from accessing gems installed to RubyGems' normal location.
186
187
  * `disable_version_check` (`BUNDLE_DISABLE_VERSION_CHECK`):
@@ -249,17 +250,6 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
249
250
  be changed in the next major version.
250
251
  * `silence_root_warning` (`BUNDLE_SILENCE_ROOT_WARNING`):
251
252
  Silence the warning Bundler prints when installing gems as root.
252
- * `skip_default_git_sources` (`BUNDLE_SKIP_DEFAULT_GIT_SOURCES`):
253
- Whether Bundler should skip adding default git source shortcuts to the
254
- Gemfile DSL.
255
- * `specific_platform` (`BUNDLE_SPECIFIC_PLATFORM`):
256
- Allow bundler to resolve for the specific running platform and store it in
257
- the lockfile, instead of only using a generic platform.
258
- A specific platform is the exact platform triple reported by
259
- `Gem::Platform.local`, such as `x86_64-darwin-16` or `universal-java-1.8`.
260
- On the other hand, generic platforms are those such as `ruby`, `mswin`, or
261
- `java`. In this example, `x86_64-darwin-16` would map to `ruby` and
262
- `universal-java-1.8` to `java`.
263
253
  * `ssl_ca_cert` (`BUNDLE_SSL_CA_CERT`):
264
254
  Path to a designated CA certificate file or folder containing multiple
265
255
  certificates for trusted CAs in PEM format.
@@ -302,11 +292,11 @@ Bundler also allows you to work against a git repository locally
302
292
  instead of using the remote version. This can be achieved by setting
303
293
  up a local override:
304
294
 
305
- bundle config set local.GEM_NAME /path/to/local/git/repository
295
+ bundle config set --local local.GEM_NAME /path/to/local/git/repository
306
296
 
307
297
  For example, in order to use a local Rack repository, a developer could call:
308
298
 
309
- bundle config set local.rack ~/Work/git/rack
299
+ bundle config set --local local.rack ~/Work/git/rack
310
300
 
311
301
  Now instead of checking out the remote git repository, the local
312
302
  override will be used. Similar to a path source, every time the local
@@ -336,21 +326,21 @@ Bundler supports overriding gem sources with mirrors. This allows you to
336
326
  configure rubygems.org as the gem source in your Gemfile while still using your
337
327
  mirror to fetch gems.
338
328
 
339
- bundle config set mirror.SOURCE_URL MIRROR_URL
329
+ bundle config set --global mirror.SOURCE_URL MIRROR_URL
340
330
 
341
331
  For example, to use a mirror of rubygems.org hosted at rubygems-mirror.org:
342
332
 
343
- bundle config set mirror.http://rubygems.org http://rubygems-mirror.org
333
+ bundle config set --global mirror.http://rubygems.org http://rubygems-mirror.org
344
334
 
345
335
  Each mirror also provides a fallback timeout setting. If the mirror does not
346
336
  respond within the fallback timeout, Bundler will try to use the original
347
337
  server instead of the mirror.
348
338
 
349
- bundle config set mirror.SOURCE_URL.fallback_timeout TIMEOUT
339
+ bundle config set --global mirror.SOURCE_URL.fallback_timeout TIMEOUT
350
340
 
351
341
  For example, to fall back to rubygems.org after 3 seconds:
352
342
 
353
- bundle config set mirror.https://rubygems.org.fallback_timeout 3
343
+ bundle config set --global mirror.https://rubygems.org.fallback_timeout 3
354
344
 
355
345
  The default fallback timeout is 0.1 seconds, but the setting can currently
356
346
  only accept whole seconds (for example, 1, 15, or 30).
@@ -360,12 +350,12 @@ only accept whole seconds (for example, 1, 15, or 30).
360
350
  Bundler allows you to configure credentials for any gem source, which allows
361
351
  you to avoid putting secrets into your Gemfile.
362
352
 
363
- bundle config set SOURCE_HOSTNAME USERNAME:PASSWORD
353
+ bundle config set --global SOURCE_HOSTNAME USERNAME:PASSWORD
364
354
 
365
355
  For example, to save the credentials of user `claudette` for the gem source at
366
356
  `gems.longerous.com`, you would run:
367
357
 
368
- bundle config set gems.longerous.com claudette:s00pers3krit
358
+ bundle config set --global gems.longerous.com claudette:s00pers3krit
369
359
 
370
360
  Or you can set the credentials as an environment variable like this:
371
361
 
@@ -373,7 +363,7 @@ Or you can set the credentials as an environment variable like this:
373
363
 
374
364
  For gems with a git source with HTTP(S) URL you can specify credentials like so:
375
365
 
376
- bundle config set https://github.com/bundler/bundler.git username:password
366
+ bundle config set --global https://github.com/rubygems/rubygems.git username:password
377
367
 
378
368
  Or you can set the credentials as an environment variable like so:
379
369
 
@@ -396,4 +386,3 @@ outlines the available environment variables and their default values
396
386
  BUNDLE_USER_CACHE : $BUNDLE_USER_HOME/cache
397
387
  BUNDLE_USER_CONFIG : $BUNDLE_USER_HOME/config
398
388
  BUNDLE_USER_PLUGIN : $BUNDLE_USER_HOME/plugin
399
-
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-DOCTOR" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-DOCTOR" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-doctor\fR \- Checks the bundle for common problems
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-EXEC" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-EXEC" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-exec\fR \- Execute a command in the context of the bundle
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-GEM" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-GEM" "1" "November 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
@@ -64,8 +64,30 @@ Add an MIT license to a \fBLICENSE\.txt\fR file in the root of the generated pro
64
64
  Do not create a \fBLICENSE\.txt\fR (overrides \fB\-\-mit\fR specified in the global config)\.
65
65
  .
66
66
  .TP
67
- \fB\-t\fR, \fB\-\-test=minitest\fR, \fB\-\-test=rspec\fR
68
- Specify the test framework that Bundler should use when generating the project\. Acceptable values are \fBminitest\fR and \fBrspec\fR\. The \fBGEM_NAME\.gemspec\fR will be configured and a skeleton test/spec directory will be created based on this option\. 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\. If no option is specified, the default testing framework is RSpec\.
67
+ \fB\-t\fR, \fB\-\-test=minitest\fR, \fB\-\-test=rspec\fR, \fB\-\-test=test\-unit\fR
68
+ 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:
69
+ .
70
+ .IP
71
+ When Bundler is configured to generate tests, this defaults to Bundler\'s global config setting \fBgem\.test\fR\.
72
+ .
73
+ .IP
74
+ 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\.
75
+ .
76
+ .IP
77
+ 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\.
78
+ .
79
+ .TP
80
+ \fB\-\-ci\fR, \fB\-\-ci=github\fR, \fB\-\-ci=travis\fR, \fB\-\-ci=gitlab\fR, \fB\-\-ci=circle\fR
81
+ Specify the continuous integration service that Bundler should use when generating the project\. Acceptable values are \fBgithub\fR, \fBtravis\fR, \fBgitlab\fR and \fBcircle\fR\. A configuration file will be generated in the project directory\. Given no option is specified:
82
+ .
83
+ .IP
84
+ When Bundler is configured to generate CI files, this defaults to Bundler\'s global config setting \fBgem\.ci\fR\.
85
+ .
86
+ .IP
87
+ 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\.
88
+ .
89
+ .IP
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\.
69
91
  .
70
92
  .TP
71
93
  \fB\-e\fR, \fB\-\-edit[=EDITOR]\fR