bundler 2.1.1 → 2.2.0.rc.2

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 (194) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1543 -1418
  3. data/README.md +6 -8
  4. data/bundler.gemspec +3 -3
  5. data/exe/bundle +3 -0
  6. data/lib/bundler.rb +21 -7
  7. data/lib/bundler/build_metadata.rb +3 -11
  8. data/lib/bundler/cli.rb +54 -20
  9. data/lib/bundler/cli/add.rb +1 -1
  10. data/lib/bundler/cli/cache.rb +1 -7
  11. data/lib/bundler/cli/clean.rb +1 -1
  12. data/lib/bundler/cli/common.rb +14 -0
  13. data/lib/bundler/cli/console.rb +1 -1
  14. data/lib/bundler/cli/doctor.rb +1 -1
  15. data/lib/bundler/cli/exec.rb +1 -1
  16. data/lib/bundler/cli/fund.rb +36 -0
  17. data/lib/bundler/cli/gem.rb +84 -11
  18. data/lib/bundler/cli/info.rb +15 -4
  19. data/lib/bundler/cli/init.rb +2 -2
  20. data/lib/bundler/cli/inject.rb +1 -1
  21. data/lib/bundler/cli/install.rb +12 -18
  22. data/lib/bundler/cli/issue.rb +2 -2
  23. data/lib/bundler/cli/list.rb +12 -10
  24. data/lib/bundler/cli/outdated.rb +89 -66
  25. data/lib/bundler/cli/plugin.rb +10 -0
  26. data/lib/bundler/cli/pristine.rb +5 -0
  27. data/lib/bundler/cli/show.rb +1 -1
  28. data/lib/bundler/cli/update.rb +2 -0
  29. data/lib/bundler/compact_index_client.rb +1 -1
  30. data/lib/bundler/compact_index_client/cache.rb +1 -1
  31. data/lib/bundler/definition.rb +51 -60
  32. data/lib/bundler/dep_proxy.rb +1 -1
  33. data/lib/bundler/dependency.rb +0 -9
  34. data/lib/bundler/dsl.rb +5 -9
  35. data/lib/bundler/endpoint_specification.rb +1 -1
  36. data/lib/bundler/environment_preserver.rb +26 -2
  37. data/lib/bundler/errors.rb +1 -0
  38. data/lib/bundler/feature_flag.rb +0 -2
  39. data/lib/bundler/fetcher.rb +4 -3
  40. data/lib/bundler/fetcher/base.rb +1 -1
  41. data/lib/bundler/fetcher/compact_index.rb +1 -1
  42. data/lib/bundler/fetcher/downloader.rb +1 -1
  43. data/lib/bundler/fetcher/index.rb +1 -1
  44. data/lib/bundler/friendly_errors.rb +7 -13
  45. data/lib/bundler/gem_helper.rb +33 -19
  46. data/lib/bundler/gem_helpers.rb +6 -1
  47. data/lib/bundler/gem_version_promoter.rb +2 -2
  48. data/lib/bundler/graph.rb +1 -1
  49. data/lib/bundler/index.rb +1 -1
  50. data/lib/bundler/injector.rb +15 -4
  51. data/lib/bundler/inline.rb +2 -2
  52. data/lib/bundler/installer.rb +30 -29
  53. data/lib/bundler/installer/gem_installer.rb +3 -3
  54. data/lib/bundler/installer/parallel_installer.rb +10 -10
  55. data/lib/bundler/installer/standalone.rb +2 -2
  56. data/lib/bundler/lazy_specification.rb +19 -6
  57. data/lib/bundler/lockfile_generator.rb +1 -1
  58. data/lib/bundler/lockfile_parser.rb +1 -1
  59. data/lib/bundler/mirror.rb +2 -2
  60. data/lib/bundler/plugin.rb +30 -5
  61. data/lib/bundler/plugin/index.rb +10 -1
  62. data/lib/bundler/plugin/installer.rb +1 -1
  63. data/lib/bundler/plugin/installer/rubygems.rb +1 -1
  64. data/lib/bundler/plugin/source_list.rb +1 -1
  65. data/lib/bundler/psyched_yaml.rb +0 -15
  66. data/lib/bundler/remote_specification.rb +5 -2
  67. data/lib/bundler/resolver.rb +32 -9
  68. data/lib/bundler/resolver/spec_group.rb +27 -6
  69. data/lib/bundler/retry.rb +1 -1
  70. data/lib/bundler/ruby_version.rb +1 -1
  71. data/lib/bundler/rubygems_ext.rb +53 -9
  72. data/lib/bundler/rubygems_gem_installer.rb +3 -9
  73. data/lib/bundler/rubygems_integration.rb +23 -54
  74. data/lib/bundler/runtime.rb +4 -14
  75. data/lib/bundler/settings.rb +49 -45
  76. data/lib/bundler/shared_helpers.rb +2 -2
  77. data/lib/bundler/similarity_detector.rb +1 -1
  78. data/lib/bundler/source.rb +1 -1
  79. data/lib/bundler/source/git.rb +5 -5
  80. data/lib/bundler/source/git/git_proxy.rb +56 -59
  81. data/lib/bundler/source/path.rb +7 -3
  82. data/lib/bundler/source/path/installer.rb +8 -10
  83. data/lib/bundler/source/rubygems.rb +13 -16
  84. data/lib/bundler/source/rubygems/remote.rb +1 -1
  85. data/lib/bundler/source_list.rb +2 -2
  86. data/lib/bundler/spec_set.rb +1 -1
  87. data/lib/bundler/stub_specification.rb +17 -5
  88. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  89. data/lib/bundler/templates/newgem/Gemfile.tt +9 -1
  90. data/lib/bundler/templates/newgem/README.md.tt +1 -1
  91. data/lib/bundler/templates/newgem/Rakefile.tt +19 -5
  92. data/lib/bundler/templates/newgem/bin/console.tt +1 -0
  93. data/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  94. data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  95. data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
  96. data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  97. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -0
  98. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  99. data/lib/bundler/templates/newgem/newgem.gemspec.tt +8 -6
  100. data/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
  101. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  102. data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
  103. data/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  104. data/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  105. data/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  106. data/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  107. data/lib/bundler/ui/shell.rb +5 -5
  108. data/lib/bundler/uri_credentials_filter.rb +1 -1
  109. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +79 -212
  110. data/lib/bundler/vendor/thor/lib/thor.rb +0 -7
  111. data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  112. data/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  113. data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  114. data/lib/bundler/vendored_persistent.rb +0 -7
  115. data/lib/bundler/version.rb +1 -1
  116. data/lib/bundler/worker.rb +1 -1
  117. data/lib/bundler/yaml_serializer.rb +1 -1
  118. data/man/bundle-add.1 +1 -1
  119. data/man/{bundle-add.ronn → bundle-add.1.ronn} +0 -0
  120. data/man/bundle-binstubs.1 +5 -3
  121. data/man/{bundle-binstubs.ronn → bundle-binstubs.1.ronn} +2 -4
  122. data/man/bundle-cache.1 +1 -1
  123. data/man/{bundle-cache.ronn → bundle-cache.1.ronn} +0 -0
  124. data/man/bundle-check.1 +1 -1
  125. data/man/{bundle-check.ronn → bundle-check.1.ronn} +0 -0
  126. data/man/bundle-clean.1 +1 -1
  127. data/man/{bundle-clean.ronn → bundle-clean.1.ronn} +0 -0
  128. data/man/bundle-config.1 +16 -22
  129. data/man/{bundle-config.ronn → bundle-config.1.ronn} +19 -22
  130. data/man/bundle-doctor.1 +1 -1
  131. data/man/{bundle-doctor.ronn → bundle-doctor.1.ronn} +0 -0
  132. data/man/bundle-exec.1 +1 -1
  133. data/man/{bundle-exec.ronn → bundle-exec.1.ronn} +0 -0
  134. data/man/bundle-gem.1 +25 -3
  135. data/man/{bundle-gem.ronn → bundle-gem.1.ronn} +30 -7
  136. data/man/bundle-info.1 +1 -1
  137. data/man/{bundle-info.ronn → bundle-info.1.ronn} +0 -0
  138. data/man/bundle-init.1 +1 -1
  139. data/man/{bundle-init.ronn → bundle-init.1.ronn} +0 -0
  140. data/man/bundle-inject.1 +1 -1
  141. data/man/{bundle-inject.ronn → bundle-inject.1.ronn} +0 -0
  142. data/man/bundle-install.1 +29 -2
  143. data/man/{bundle-install.ronn → bundle-install.1.ronn} +24 -2
  144. data/man/bundle-list.1 +7 -7
  145. data/man/{bundle-list.ronn → bundle-list.1.ronn} +6 -6
  146. data/man/bundle-lock.1 +1 -1
  147. data/man/{bundle-lock.ronn → bundle-lock.1.ronn} +0 -0
  148. data/man/bundle-open.1 +1 -1
  149. data/man/{bundle-open.ronn → bundle-open.1.ronn} +0 -0
  150. data/man/bundle-outdated.1 +1 -1
  151. data/man/{bundle-outdated.ronn → bundle-outdated.1.ronn} +0 -0
  152. data/man/bundle-platform.1 +1 -1
  153. data/man/{bundle-platform.ronn → bundle-platform.1.ronn} +0 -0
  154. data/man/bundle-pristine.1 +1 -1
  155. data/man/{bundle-pristine.ronn → bundle-pristine.1.ronn} +0 -0
  156. data/man/bundle-remove.1 +1 -1
  157. data/man/{bundle-remove.ronn → bundle-remove.1.ronn} +0 -0
  158. data/man/bundle-show.1 +1 -1
  159. data/man/{bundle-show.ronn → bundle-show.1.ronn} +0 -0
  160. data/man/bundle-update.1 +1 -1
  161. data/man/{bundle-update.ronn → bundle-update.1.ronn} +0 -0
  162. data/man/bundle-viz.1 +1 -1
  163. data/man/{bundle-viz.ronn → bundle-viz.1.ronn} +0 -0
  164. data/man/bundle.1 +1 -1
  165. data/man/{bundle.ronn → bundle.1.ronn} +0 -0
  166. data/man/gemfile.5 +4 -4
  167. data/man/gemfile.5.ronn +4 -4
  168. metadata +39 -58
  169. data/man/bundle-add.1.txt +0 -58
  170. data/man/bundle-binstubs.1.txt +0 -48
  171. data/man/bundle-cache.1.txt +0 -78
  172. data/man/bundle-check.1.txt +0 -33
  173. data/man/bundle-clean.1.txt +0 -26
  174. data/man/bundle-config.1.txt +0 -528
  175. data/man/bundle-doctor.1.txt +0 -44
  176. data/man/bundle-exec.1.txt +0 -178
  177. data/man/bundle-gem.1.txt +0 -91
  178. data/man/bundle-info.1.txt +0 -21
  179. data/man/bundle-init.1.txt +0 -34
  180. data/man/bundle-inject.1.txt +0 -32
  181. data/man/bundle-install.1.txt +0 -401
  182. data/man/bundle-list.1.txt +0 -43
  183. data/man/bundle-lock.1.txt +0 -93
  184. data/man/bundle-open.1.txt +0 -29
  185. data/man/bundle-outdated.1.txt +0 -131
  186. data/man/bundle-platform.1.txt +0 -57
  187. data/man/bundle-pristine.1.txt +0 -44
  188. data/man/bundle-remove.1.txt +0 -34
  189. data/man/bundle-show.1.txt +0 -27
  190. data/man/bundle-update.1.txt +0 -390
  191. data/man/bundle-viz.1.txt +0 -39
  192. data/man/bundle.1.txt +0 -116
  193. data/man/gemfile.5.txt +0 -649
  194. data/man/index.txt +0 -25
@@ -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\-PRISTINE" "1" "December 2019" "" ""
4
+ .TH "BUNDLE\-PRISTINE" "1" "October 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
@@ -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\-REMOVE" "1" "December 2019" "" ""
4
+ .TH "BUNDLE\-REMOVE" "1" "October 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-remove\fR \- Removes gems from the Gemfile
@@ -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\-SHOW" "1" "December 2019" "" ""
4
+ .TH "BUNDLE\-SHOW" "1" "October 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
@@ -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\-UPDATE" "1" "December 2019" "" ""
4
+ .TH "BUNDLE\-UPDATE" "1" "October 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-update\fR \- Update your gems to the latest available versions
@@ -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\-VIZ" "1" "December 2019" "" ""
4
+ .TH "BUNDLE\-VIZ" "1" "October 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
@@ -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" "1" "December 2019" "" ""
4
+ .TH "BUNDLE" "1" "October 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\fR \- Ruby Dependency Management
File without changes
@@ -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 "GEMFILE" "5" "December 2019" "" ""
4
+ .TH "GEMFILE" "5" "October 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
@@ -150,7 +150,7 @@ gem "RedCloth", ">= 4\.1\.0", "< 4\.2\.0"
150
150
  .IP "" 0
151
151
  .
152
152
  .SS "REQUIRE AS"
153
- Each \fIgem\fR \fBMAY\fR specify files that should be used when autorequiring via \fBBundler\.require\fR\. You may pass an array with multiple files or \fBtrue\fR if file you want \fBrequired\fR has same name as \fIgem\fR or \fBfalse\fR to prevent any file from being autorequired\.
153
+ Each \fIgem\fR \fBMAY\fR specify files that should be used when autorequiring via \fBBundler\.require\fR\. You may pass an array with multiple files or \fBtrue\fR if the file you want \fBrequired\fR has the same name as \fIgem\fR or \fBfalse\fR to prevent any file from being autorequired\.
154
154
  .
155
155
  .IP "" 4
156
156
  .
@@ -227,8 +227,8 @@ To specify multiple groups to ignore, specify a list of groups separated by spac
227
227
  .
228
228
  .nf
229
229
 
230
- bundle config set without test
231
- bundle config set without development test
230
+ bundle config set \-\-local without test
231
+ bundle config set \-\-local without development test
232
232
  .
233
233
  .fi
234
234
  .
@@ -120,8 +120,8 @@ Each _gem_ `MAY` have one or more version specifiers.
120
120
  ### REQUIRE AS
121
121
 
122
122
  Each _gem_ `MAY` specify files that should be used when autorequiring via
123
- `Bundler.require`. You may pass an array with multiple files or `true` if file
124
- you want `required` has same name as _gem_ or `false` to
123
+ `Bundler.require`. You may pass an array with multiple files or `true` if the file
124
+ you want `required` has the same name as _gem_ or `false` to
125
125
  prevent any file from being autorequired.
126
126
 
127
127
  gem "redis", :require => ["redis/connection/hiredis", "redis"]
@@ -163,8 +163,8 @@ not install with the `without` configuration.
163
163
 
164
164
  To specify multiple groups to ignore, specify a list of groups separated by spaces.
165
165
 
166
- bundle config set without test
167
- bundle config set without development test
166
+ bundle config set --local without test
167
+ bundle config set --local without development test
168
168
 
169
169
  Also, calling `Bundler.setup` with no parameters, or calling `require "bundler/setup"`
170
170
  will setup all groups except for the ones you excluded via `--without` (since they
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.2.0.rc.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -22,7 +22,7 @@ authors:
22
22
  autorequire:
23
23
  bindir: exe
24
24
  cert_chain: []
25
- date: 2019-12-18 00:00:00.000000000 Z
25
+ date: 2020-10-07 00:00:00.000000000 Z
26
26
  dependencies: []
27
27
  description: Bundler manages an application's dependencies through its entire life,
28
28
  across many machines, systematically and repeatably
@@ -54,6 +54,7 @@ files:
54
54
  - lib/bundler/cli/console.rb
55
55
  - lib/bundler/cli/doctor.rb
56
56
  - lib/bundler/cli/exec.rb
57
+ - lib/bundler/cli/fund.rb
57
58
  - lib/bundler/cli/gem.rb
58
59
  - lib/bundler/cli/info.rb
59
60
  - lib/bundler/cli/init.rb
@@ -164,19 +165,25 @@ files:
164
165
  - lib/bundler/templates/newgem/Rakefile.tt
165
166
  - lib/bundler/templates/newgem/bin/console.tt
166
167
  - lib/bundler/templates/newgem/bin/setup.tt
168
+ - lib/bundler/templates/newgem/circleci/config.yml.tt
167
169
  - lib/bundler/templates/newgem/exe/newgem.tt
168
170
  - lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt
169
171
  - lib/bundler/templates/newgem/ext/newgem/newgem.c.tt
170
172
  - lib/bundler/templates/newgem/ext/newgem/newgem.h.tt
173
+ - lib/bundler/templates/newgem/github/workflows/main.yml.tt
171
174
  - lib/bundler/templates/newgem/gitignore.tt
175
+ - lib/bundler/templates/newgem/gitlab-ci.yml.tt
172
176
  - lib/bundler/templates/newgem/lib/newgem.rb.tt
173
177
  - lib/bundler/templates/newgem/lib/newgem/version.rb.tt
174
178
  - lib/bundler/templates/newgem/newgem.gemspec.tt
175
179
  - lib/bundler/templates/newgem/rspec.tt
180
+ - lib/bundler/templates/newgem/rubocop.yml.tt
176
181
  - lib/bundler/templates/newgem/spec/newgem_spec.rb.tt
177
182
  - lib/bundler/templates/newgem/spec/spec_helper.rb.tt
178
- - lib/bundler/templates/newgem/test/newgem_test.rb.tt
179
- - lib/bundler/templates/newgem/test/test_helper.rb.tt
183
+ - lib/bundler/templates/newgem/test/minitest/newgem_test.rb.tt
184
+ - lib/bundler/templates/newgem/test/minitest/test_helper.rb.tt
185
+ - lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt
186
+ - lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt
180
187
  - lib/bundler/templates/newgem/travis.yml.tt
181
188
  - lib/bundler/ui.rb
182
189
  - lib/bundler/ui/rg_proxy.rb
@@ -268,89 +275,63 @@ files:
268
275
  - lib/bundler/worker.rb
269
276
  - lib/bundler/yaml_serializer.rb
270
277
  - man/bundle-add.1
271
- - man/bundle-add.1.txt
272
- - man/bundle-add.ronn
278
+ - man/bundle-add.1.ronn
273
279
  - man/bundle-binstubs.1
274
- - man/bundle-binstubs.1.txt
275
- - man/bundle-binstubs.ronn
280
+ - man/bundle-binstubs.1.ronn
276
281
  - man/bundle-cache.1
277
- - man/bundle-cache.1.txt
278
- - man/bundle-cache.ronn
282
+ - man/bundle-cache.1.ronn
279
283
  - man/bundle-check.1
280
- - man/bundle-check.1.txt
281
- - man/bundle-check.ronn
284
+ - man/bundle-check.1.ronn
282
285
  - man/bundle-clean.1
283
- - man/bundle-clean.1.txt
284
- - man/bundle-clean.ronn
286
+ - man/bundle-clean.1.ronn
285
287
  - man/bundle-config.1
286
- - man/bundle-config.1.txt
287
- - man/bundle-config.ronn
288
+ - man/bundle-config.1.ronn
288
289
  - man/bundle-doctor.1
289
- - man/bundle-doctor.1.txt
290
- - man/bundle-doctor.ronn
290
+ - man/bundle-doctor.1.ronn
291
291
  - man/bundle-exec.1
292
- - man/bundle-exec.1.txt
293
- - man/bundle-exec.ronn
292
+ - man/bundle-exec.1.ronn
294
293
  - man/bundle-gem.1
295
- - man/bundle-gem.1.txt
296
- - man/bundle-gem.ronn
294
+ - man/bundle-gem.1.ronn
297
295
  - man/bundle-info.1
298
- - man/bundle-info.1.txt
299
- - man/bundle-info.ronn
296
+ - man/bundle-info.1.ronn
300
297
  - man/bundle-init.1
301
- - man/bundle-init.1.txt
302
- - man/bundle-init.ronn
298
+ - man/bundle-init.1.ronn
303
299
  - man/bundle-inject.1
304
- - man/bundle-inject.1.txt
305
- - man/bundle-inject.ronn
300
+ - man/bundle-inject.1.ronn
306
301
  - man/bundle-install.1
307
- - man/bundle-install.1.txt
308
- - man/bundle-install.ronn
302
+ - man/bundle-install.1.ronn
309
303
  - man/bundle-list.1
310
- - man/bundle-list.1.txt
311
- - man/bundle-list.ronn
304
+ - man/bundle-list.1.ronn
312
305
  - man/bundle-lock.1
313
- - man/bundle-lock.1.txt
314
- - man/bundle-lock.ronn
306
+ - man/bundle-lock.1.ronn
315
307
  - man/bundle-open.1
316
- - man/bundle-open.1.txt
317
- - man/bundle-open.ronn
308
+ - man/bundle-open.1.ronn
318
309
  - man/bundle-outdated.1
319
- - man/bundle-outdated.1.txt
320
- - man/bundle-outdated.ronn
310
+ - man/bundle-outdated.1.ronn
321
311
  - man/bundle-platform.1
322
- - man/bundle-platform.1.txt
323
- - man/bundle-platform.ronn
312
+ - man/bundle-platform.1.ronn
324
313
  - man/bundle-pristine.1
325
- - man/bundle-pristine.1.txt
326
- - man/bundle-pristine.ronn
314
+ - man/bundle-pristine.1.ronn
327
315
  - man/bundle-remove.1
328
- - man/bundle-remove.1.txt
329
- - man/bundle-remove.ronn
316
+ - man/bundle-remove.1.ronn
330
317
  - man/bundle-show.1
331
- - man/bundle-show.1.txt
332
- - man/bundle-show.ronn
318
+ - man/bundle-show.1.ronn
333
319
  - man/bundle-update.1
334
- - man/bundle-update.1.txt
335
- - man/bundle-update.ronn
320
+ - man/bundle-update.1.ronn
336
321
  - man/bundle-viz.1
337
- - man/bundle-viz.1.txt
338
- - man/bundle-viz.ronn
322
+ - man/bundle-viz.1.ronn
339
323
  - man/bundle.1
340
- - man/bundle.1.txt
341
- - man/bundle.ronn
324
+ - man/bundle.1.ronn
342
325
  - man/gemfile.5
343
326
  - man/gemfile.5.ronn
344
- - man/gemfile.5.txt
345
- - man/index.txt
346
327
  homepage: https://bundler.io
347
328
  licenses:
348
329
  - MIT
349
330
  metadata:
350
- bug_tracker_uri: https://github.com/bundler/bundler/issues
351
- changelog_uri: https://github.com/bundler/bundler/blob/master/CHANGELOG.md
331
+ bug_tracker_uri: https://github.com/rubygems/rubygems/issues?q=is%3Aopen+is%3Aissue+label%3ABundler
332
+ changelog_uri: https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md
352
333
  homepage_uri: https://bundler.io/
353
- source_code_uri: https://github.com/bundler/bundler/
334
+ source_code_uri: https://github.com/rubygems/rubygems/
354
335
  post_install_message:
355
336
  rdoc_options: []
356
337
  require_paths:
@@ -366,7 +347,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
366
347
  - !ruby/object:Gem::Version
367
348
  version: 2.5.2
368
349
  requirements: []
369
- rubygems_version: 3.1.1
350
+ rubygems_version: 3.2.0.rc.1
370
351
  signing_key:
371
352
  specification_version: 4
372
353
  summary: The best way to manage your application's dependencies
@@ -1,58 +0,0 @@
1
- BUNDLE-ADD(1) BUNDLE-ADD(1)
2
-
3
-
4
-
5
- NAME
6
- bundle-add - Add gem to the Gemfile and run bundle install
7
-
8
- SYNOPSIS
9
- bundle add GEM_NAME [--group=GROUP] [--version=VERSION]
10
- [--source=SOURCE] [--git=GIT] [--branch=BRANCH] [--skip-install]
11
- [--strict] [--optimistic]
12
-
13
- DESCRIPTION
14
- Adds the named gem to the Gemfile and run bundle install. bundle
15
- install can be avoided by using the flag --skip-install.
16
-
17
- Example:
18
-
19
- bundle add rails
20
-
21
- bundle add rails --version "< 3.0, > 1.1"
22
-
23
- bundle add rails --version "~> 5.0.0" --source "https://gems.exam-
24
- ple.com" --group "development"
25
-
26
- bundle add rails --skip-install
27
-
28
- bundle add rails --group "development, test"
29
-
30
- OPTIONS
31
- --version, -v
32
- Specify version requirements(s) for the added gem.
33
-
34
- --group, -g
35
- Specify the group(s) for the added gem. Multiple groups should
36
- be separated by commas.
37
-
38
- --source, , -s
39
- Specify the source for the added gem.
40
-
41
- --git Specify the git source for the added gem.
42
-
43
- --branch
44
- Specify the git branch for the added gem.
45
-
46
- --skip-install
47
- Adds the gem to the Gemfile but does not install it.
48
-
49
- --optimistic
50
- Adds optimistic declaration of version
51
-
52
- --strict
53
- Adds strict declaration of version
54
-
55
-
56
-
57
-
58
- December 2019 BUNDLE-ADD(1)
@@ -1,48 +0,0 @@
1
- BUNDLE-BINSTUBS(1) BUNDLE-BINSTUBS(1)
2
-
3
-
4
-
5
- NAME
6
- bundle-binstubs - Install the binstubs of the listed gems
7
-
8
- SYNOPSIS
9
- bundle binstubs GEM_NAME [--force] [--path PATH] [--standalone]
10
-
11
- DESCRIPTION
12
- Binstubs are scripts that wrap around executables. Bundler creates a
13
- small Ruby file (a binstub) that loads Bundler, runs the command, and
14
- puts it into bin/. Binstubs are a shortcut-or alternative- to always
15
- using bundle exec. This gives you a file that can be run directly, and
16
- one that will always run the correct gem version used by the applica-
17
- tion.
18
-
19
- For example, if you run bundle binstubs rspec-core, Bundler will create
20
- the file bin/rspec. That file will contain enough code to load Bundler,
21
- tell it to load the bundled gems, and then run rspec.
22
-
23
- This command generates binstubs for executables in GEM_NAME. Binstubs
24
- are put into bin, or the --path directory if one has been set. Calling
25
- binstubs with [GEM [GEM]] will create binstubs for all given gems.
26
-
27
- OPTIONS
28
- --force
29
- Overwrite existing binstubs if they exist.
30
-
31
- --path The location to install the specified binstubs to. This defaults
32
- to bin.
33
-
34
- --standalone
35
- Makes binstubs that can work without depending on Rubygems or
36
- Bundler at runtime.
37
-
38
- --shebang
39
- Specify a different shebang executable name than the default
40
- (default 'ruby')
41
-
42
- BUNDLE INSTALL --BINSTUBS
43
- To create binstubs for all the gems in the bundle you can use the
44
- --binstubs flag in bundle install(1) bundle-install.1.html.
45
-
46
-
47
-
48
- December 2019 BUNDLE-BINSTUBS(1)
@@ -1,78 +0,0 @@
1
- BUNDLE-CACHE(1) BUNDLE-CACHE(1)
2
-
3
-
4
-
5
- NAME
6
- bundle-cache - Package your needed .gem files into your application
7
-
8
- SYNOPSIS
9
- bundle cache
10
-
11
- DESCRIPTION
12
- Copy all of the .gem files needed to run the application into the ven-
13
- dor/cache directory. In the future, when running [bundle
14
- install(1)][bundle-install], use the gems in the cache in preference to
15
- the ones on rubygems.org.
16
-
17
- GIT AND PATH GEMS
18
- The bundle cache command can also package :git and :path dependencies
19
- besides .gem files. This needs to be explicitly enabled via the --all
20
- option. Once used, the --all option will be remembered.
21
-
22
- SUPPORT FOR MULTIPLE PLATFORMS
23
- When using gems that have different packages for different platforms,
24
- Bundler supports caching of gems for other platforms where the Gemfile
25
- has been resolved (i.e. present in the lockfile) in vendor/cache. This
26
- needs to be enabled via the --all-platforms option. This setting will
27
- be remembered in your local bundler configuration.
28
-
29
- REMOTE FETCHING
30
- By default, if you run bundle install(1)](bundle-install.1.html) after
31
- running bundle cache(1) bundle-cache.1.html, bundler will still connect
32
- to rubygems.org to check whether a platform-specific gem exists for any
33
- of the gems in vendor/cache.
34
-
35
- For instance, consider this Gemfile(5):
36
-
37
-
38
-
39
- source "https://rubygems.org"
40
-
41
- gem "nokogiri"
42
-
43
-
44
-
45
- If you run bundle cache under C Ruby, bundler will retrieve the version
46
- of nokogiri for the "ruby" platform. If you deploy to JRuby and run
47
- bundle install, bundler is forced to check to see whether a "java"
48
- platformed nokogiri exists.
49
-
50
- Even though the nokogiri gem for the Ruby platform is technically
51
- acceptable on JRuby, it has a C extension that does not run on JRuby.
52
- As a result, bundler will, by default, still connect to rubygems.org to
53
- check whether it has a version of one of your gems more specific to
54
- your platform.
55
-
56
- This problem is also not limited to the "java" platform. A similar
57
- (common) problem can happen when developing on Windows and deploying to
58
- Linux, or even when developing on OSX and deploying to Linux.
59
-
60
- If you know for sure that the gems packaged in vendor/cache are appro-
61
- priate for the platform you are on, you can run bundle install --local
62
- to skip checking for more appropriate gems, and use the ones in ven-
63
- dor/cache.
64
-
65
- One way to be sure that you have the right platformed versions of all
66
- your gems is to run bundle cache on an identical machine and check in
67
- the gems. For instance, you can run bundle cache on an identical stag-
68
- ing box during your staging process, and check in the vendor/cache
69
- before deploying to production.
70
-
71
- By default, bundle cache(1) bundle-cache.1.html fetches and also
72
- installs the gems to the default location. To package the dependencies
73
- to vendor/cache without installing them to the local install location,
74
- you can run bundle cache --no-install.
75
-
76
-
77
-
78
- December 2019 BUNDLE-CACHE(1)