rubygems-update 3.3.18 → 3.3.21

Sign up to get free protection for your applications and to get access to all the features.
Files changed (374) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +52 -0
  3. data/Manifest.txt +4 -0
  4. data/bin/gem +2 -2
  5. data/bin/update_rubygems +4 -4
  6. data/bundler/CHANGELOG.md +78 -0
  7. data/bundler/UPGRADING.md +11 -4
  8. data/bundler/lib/bundler/build_metadata.rb +2 -2
  9. data/bundler/lib/bundler/cli/common.rb +1 -0
  10. data/bundler/lib/bundler/cli/install.rb +5 -2
  11. data/bundler/lib/bundler/cli/outdated.rb +12 -3
  12. data/bundler/lib/bundler/cli/platform.rb +1 -1
  13. data/bundler/lib/bundler/cli.rb +5 -3
  14. data/bundler/lib/bundler/definition.rb +103 -29
  15. data/bundler/lib/bundler/dsl.rb +2 -2
  16. data/bundler/lib/bundler/endpoint_specification.rb +1 -12
  17. data/bundler/lib/bundler/fetcher.rb +6 -6
  18. data/bundler/lib/bundler/gem_helpers.rb +7 -1
  19. data/bundler/lib/bundler/gem_version_promoter.rb +4 -0
  20. data/bundler/lib/bundler/index.rb +10 -12
  21. data/bundler/lib/bundler/inline.rb +1 -1
  22. data/bundler/lib/bundler/installer/standalone.rb +1 -1
  23. data/bundler/lib/bundler/installer.rb +14 -12
  24. data/bundler/lib/bundler/lazy_specification.rb +30 -23
  25. data/bundler/lib/bundler/man/bundle-add.1 +1 -1
  26. data/bundler/lib/bundler/man/bundle-binstubs.1 +1 -1
  27. data/bundler/lib/bundler/man/bundle-cache.1 +7 -1
  28. data/bundler/lib/bundler/man/bundle-cache.1.ronn +7 -0
  29. data/bundler/lib/bundler/man/bundle-check.1 +1 -1
  30. data/bundler/lib/bundler/man/bundle-clean.1 +1 -1
  31. data/bundler/lib/bundler/man/bundle-config.1 +25 -6
  32. data/bundler/lib/bundler/man/bundle-config.1.ronn +16 -6
  33. data/bundler/lib/bundler/man/bundle-doctor.1 +1 -1
  34. data/bundler/lib/bundler/man/bundle-exec.1 +2 -2
  35. data/bundler/lib/bundler/man/bundle-exec.1.ronn +1 -1
  36. data/bundler/lib/bundler/man/bundle-gem.1 +1 -1
  37. data/bundler/lib/bundler/man/bundle-info.1 +1 -1
  38. data/bundler/lib/bundler/man/bundle-init.1 +1 -1
  39. data/bundler/lib/bundler/man/bundle-inject.1 +5 -2
  40. data/bundler/lib/bundler/man/bundle-inject.1.ronn +3 -1
  41. data/bundler/lib/bundler/man/bundle-install.1 +5 -1
  42. data/bundler/lib/bundler/man/bundle-install.1.ronn +6 -0
  43. data/bundler/lib/bundler/man/bundle-list.1 +1 -1
  44. data/bundler/lib/bundler/man/bundle-lock.1 +1 -1
  45. data/bundler/lib/bundler/man/bundle-open.1 +1 -1
  46. data/bundler/lib/bundler/man/bundle-outdated.1 +1 -1
  47. data/bundler/lib/bundler/man/bundle-platform.1 +16 -6
  48. data/bundler/lib/bundler/man/bundle-platform.1.ronn +14 -7
  49. data/bundler/lib/bundler/man/bundle-plugin.1 +81 -0
  50. data/bundler/lib/bundler/man/bundle-plugin.1.ronn +59 -0
  51. data/bundler/lib/bundler/man/bundle-pristine.1 +1 -1
  52. data/bundler/lib/bundler/man/bundle-remove.1 +1 -1
  53. data/bundler/lib/bundler/man/bundle-show.1 +1 -1
  54. data/bundler/lib/bundler/man/bundle-update.1 +1 -1
  55. data/bundler/lib/bundler/man/bundle-viz.1 +4 -1
  56. data/bundler/lib/bundler/man/bundle-viz.1.ronn +2 -0
  57. data/bundler/lib/bundler/man/bundle.1 +10 -9
  58. data/bundler/lib/bundler/man/bundle.1.ronn +8 -6
  59. data/bundler/lib/bundler/man/gemfile.5 +16 -10
  60. data/bundler/lib/bundler/man/gemfile.5.ronn +23 -16
  61. data/bundler/lib/bundler/man/index.txt +1 -0
  62. data/bundler/lib/bundler/match_metadata.rb +13 -0
  63. data/bundler/lib/bundler/match_remote_metadata.rb +26 -0
  64. data/bundler/lib/bundler/plugin.rb +2 -0
  65. data/bundler/lib/bundler/remote_specification.rb +6 -11
  66. data/bundler/lib/bundler/resolver/spec_group.rb +11 -8
  67. data/bundler/lib/bundler/resolver.rb +40 -18
  68. data/bundler/lib/bundler/ruby_dsl.rb +1 -1
  69. data/bundler/lib/bundler/ruby_version.rb +5 -5
  70. data/bundler/lib/bundler/rubygems_ext.rb +41 -0
  71. data/bundler/lib/bundler/rubygems_gem_installer.rb +19 -12
  72. data/bundler/lib/bundler/settings.rb +1 -0
  73. data/bundler/lib/bundler/source/metadata.rb +1 -1
  74. data/bundler/lib/bundler/source_list.rb +4 -0
  75. data/bundler/lib/bundler/spec_set.rb +38 -33
  76. data/bundler/lib/bundler/version.rb +1 -1
  77. data/bundler/lib/bundler.rb +3 -3
  78. data/lib/rubygems/available_set.rb +3 -3
  79. data/lib/rubygems/basic_specification.rb +4 -4
  80. data/lib/rubygems/command.rb +25 -25
  81. data/lib/rubygems/command_manager.rb +9 -9
  82. data/lib/rubygems/commands/build_command.rb +8 -8
  83. data/lib/rubygems/commands/cert_command.rb +33 -33
  84. data/lib/rubygems/commands/check_command.rb +20 -20
  85. data/lib/rubygems/commands/cleanup_command.rb +17 -17
  86. data/lib/rubygems/commands/contents_command.rb +13 -13
  87. data/lib/rubygems/commands/dependency_command.rb +16 -16
  88. data/lib/rubygems/commands/environment_command.rb +5 -5
  89. data/lib/rubygems/commands/fetch_command.rb +8 -8
  90. data/lib/rubygems/commands/generate_index_command.rb +17 -17
  91. data/lib/rubygems/commands/help_command.rb +3 -3
  92. data/lib/rubygems/commands/info_command.rb +3 -3
  93. data/lib/rubygems/commands/install_command.rb +20 -20
  94. data/lib/rubygems/commands/list_command.rb +3 -3
  95. data/lib/rubygems/commands/lock_command.rb +4 -4
  96. data/lib/rubygems/commands/mirror_command.rb +3 -3
  97. data/lib/rubygems/commands/open_command.rb +9 -9
  98. data/lib/rubygems/commands/outdated_command.rb +5 -5
  99. data/lib/rubygems/commands/owner_command.rb +11 -11
  100. data/lib/rubygems/commands/pristine_command.rb +36 -36
  101. data/lib/rubygems/commands/push_command.rb +8 -8
  102. data/lib/rubygems/commands/query_command.rb +8 -8
  103. data/lib/rubygems/commands/rdoc_command.rb +17 -17
  104. data/lib/rubygems/commands/search_command.rb +3 -3
  105. data/lib/rubygems/commands/server_command.rb +3 -3
  106. data/lib/rubygems/commands/setup_command.rb +96 -106
  107. data/lib/rubygems/commands/signin_command.rb +9 -9
  108. data/lib/rubygems/commands/signout_command.rb +7 -7
  109. data/lib/rubygems/commands/sources_command.rb +21 -21
  110. data/lib/rubygems/commands/specification_command.rb +13 -13
  111. data/lib/rubygems/commands/stale_command.rb +2 -2
  112. data/lib/rubygems/commands/uninstall_command.rb +40 -40
  113. data/lib/rubygems/commands/unpack_command.rb +12 -12
  114. data/lib/rubygems/commands/update_command.rb +40 -56
  115. data/lib/rubygems/commands/which_command.rb +7 -7
  116. data/lib/rubygems/commands/yank_command.rb +11 -11
  117. data/lib/rubygems/config_file.rb +21 -21
  118. data/lib/rubygems/core_ext/kernel_gem.rb +1 -1
  119. data/lib/rubygems/core_ext/kernel_require.rb +1 -1
  120. data/lib/rubygems/core_ext/kernel_warn.rb +1 -1
  121. data/lib/rubygems/core_ext/tcpsocket_init.rb +1 -1
  122. data/lib/rubygems/defaults.rb +16 -16
  123. data/lib/rubygems/dependency.rb +9 -9
  124. data/lib/rubygems/dependency_installer.rb +13 -13
  125. data/lib/rubygems/dependency_list.rb +6 -6
  126. data/lib/rubygems/doctor.rb +18 -18
  127. data/lib/rubygems/errors.rb +2 -2
  128. data/lib/rubygems/exceptions.rb +5 -5
  129. data/lib/rubygems/ext/build_error.rb +1 -1
  130. data/lib/rubygems/ext/builder.rb +16 -16
  131. data/lib/rubygems/ext/cargo_builder.rb +7 -7
  132. data/lib/rubygems/ext/cmake_builder.rb +2 -2
  133. data/lib/rubygems/ext/configure_builder.rb +1 -1
  134. data/lib/rubygems/ext/ext_conf_builder.rb +8 -8
  135. data/lib/rubygems/ext/rake_builder.rb +3 -3
  136. data/lib/rubygems/ext.rb +7 -7
  137. data/lib/rubygems/gem_runner.rb +5 -5
  138. data/lib/rubygems/gemcutter_utilities.rb +31 -28
  139. data/lib/rubygems/indexer.rb +27 -27
  140. data/lib/rubygems/install_default_message.rb +2 -2
  141. data/lib/rubygems/install_message.rb +2 -2
  142. data/lib/rubygems/install_update_options.rb +55 -55
  143. data/lib/rubygems/installer.rb +32 -40
  144. data/lib/rubygems/installer_uninstaller_utils.rb +2 -2
  145. data/lib/rubygems/local_remote_options.rb +18 -20
  146. data/lib/rubygems/mock_gem_ui.rb +2 -2
  147. data/lib/rubygems/name_tuple.rb +4 -4
  148. data/lib/rubygems/optparse.rb +1 -1
  149. data/lib/rubygems/package/file_source.rb +2 -2
  150. data/lib/rubygems/package/old.rb +8 -8
  151. data/lib/rubygems/package/tar_header.rb +50 -50
  152. data/lib/rubygems/package/tar_reader/entry.rb +2 -2
  153. data/lib/rubygems/package/tar_reader.rb +1 -1
  154. data/lib/rubygems/package/tar_writer.rb +7 -7
  155. data/lib/rubygems/package.rb +54 -43
  156. data/lib/rubygems/package_task.rb +4 -4
  157. data/lib/rubygems/platform.rb +66 -55
  158. data/lib/rubygems/psych_tree.rb +1 -1
  159. data/lib/rubygems/query_utils.rb +33 -33
  160. data/lib/rubygems/rdoc.rb +2 -2
  161. data/lib/rubygems/remote_fetcher.rb +22 -22
  162. data/lib/rubygems/request/connection_pools.rb +4 -4
  163. data/lib/rubygems/request/http_pool.rb +1 -1
  164. data/lib/rubygems/request.rb +22 -22
  165. data/lib/rubygems/request_set/gem_dependency_api.rb +18 -18
  166. data/lib/rubygems/request_set/lockfile/parser.rb +26 -26
  167. data/lib/rubygems/request_set/lockfile/tokenizer.rb +4 -4
  168. data/lib/rubygems/request_set/lockfile.rb +5 -5
  169. data/lib/rubygems/request_set.rb +17 -17
  170. data/lib/rubygems/requirement.rb +6 -6
  171. data/lib/rubygems/resolver/activation_request.rb +3 -3
  172. data/lib/rubygems/resolver/api_set.rb +4 -4
  173. data/lib/rubygems/resolver/api_specification.rb +6 -6
  174. data/lib/rubygems/resolver/best_set.rb +5 -5
  175. data/lib/rubygems/resolver/conflict.rb +10 -10
  176. data/lib/rubygems/resolver/dependency_request.rb +2 -2
  177. data/lib/rubygems/resolver/git_set.rb +2 -2
  178. data/lib/rubygems/resolver/git_specification.rb +6 -6
  179. data/lib/rubygems/resolver/index_set.rb +3 -3
  180. data/lib/rubygems/resolver/index_specification.rb +6 -5
  181. data/lib/rubygems/resolver/installed_specification.rb +4 -4
  182. data/lib/rubygems/resolver/installer_set.rb +11 -16
  183. data/lib/rubygems/resolver/local_specification.rb +2 -2
  184. data/lib/rubygems/resolver/lock_set.rb +4 -4
  185. data/lib/rubygems/resolver/lock_specification.rb +4 -4
  186. data/lib/rubygems/resolver/molinillo.rb +1 -1
  187. data/lib/rubygems/resolver/specification.rb +1 -1
  188. data/lib/rubygems/resolver/vendor_set.rb +1 -1
  189. data/lib/rubygems/resolver/vendor_specification.rb +3 -3
  190. data/lib/rubygems/resolver.rb +39 -39
  191. data/lib/rubygems/s3_uri_signer.rb +6 -6
  192. data/lib/rubygems/safe_yaml.rb +2 -2
  193. data/lib/rubygems/security/policies.rb +11 -11
  194. data/lib/rubygems/security/policy.rb +18 -18
  195. data/lib/rubygems/security/signer.rb +5 -5
  196. data/lib/rubygems/security/trust_dir.rb +3 -3
  197. data/lib/rubygems/security.rb +28 -28
  198. data/lib/rubygems/security_option.rb +5 -5
  199. data/lib/rubygems/source/git.rb +21 -21
  200. data/lib/rubygems/source/installed.rb +1 -1
  201. data/lib/rubygems/source/local.rb +2 -2
  202. data/lib/rubygems/source/specific_file.rb +1 -1
  203. data/lib/rubygems/source.rb +16 -16
  204. data/lib/rubygems/spec_fetcher.rb +9 -9
  205. data/lib/rubygems/specification.rb +63 -62
  206. data/lib/rubygems/specification_policy.rb +15 -15
  207. data/lib/rubygems/stub_specification.rb +5 -5
  208. data/lib/rubygems/tsort.rb +1 -1
  209. data/lib/rubygems/uninstaller.rb +18 -18
  210. data/lib/rubygems/uri.rb +4 -4
  211. data/lib/rubygems/uri_formatter.rb +1 -1
  212. data/lib/rubygems/user_interaction.rb +33 -19
  213. data/lib/rubygems/util/licenses.rb +3 -3
  214. data/lib/rubygems/util.rb +10 -10
  215. data/lib/rubygems/validator.rb +5 -5
  216. data/lib/rubygems/version.rb +15 -9
  217. data/lib/rubygems/version_option.rb +3 -3
  218. data/lib/rubygems.rb +62 -61
  219. data/rubygems-update.gemspec +2 -2
  220. data/setup.rb +9 -9
  221. data/test/rubygems/helper.rb +132 -132
  222. data/test/rubygems/installer_test_case.rb +13 -13
  223. data/test/rubygems/package/tar_test_case.rb +2 -2
  224. data/test/rubygems/plugin/exception/rubygems_plugin.rb +1 -1
  225. data/test/rubygems/plugin/standarderror/rubygems_plugin.rb +1 -1
  226. data/test/rubygems/rubygems_plugin.rb +2 -2
  227. data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +4 -4
  228. data/test/rubygems/test_bundled_ca.rb +10 -10
  229. data/test/rubygems/test_config.rb +3 -3
  230. data/test/rubygems/test_deprecate.rb +3 -3
  231. data/test/rubygems/test_exit.rb +2 -2
  232. data/test/rubygems/test_gem.rb +342 -342
  233. data/test/rubygems/test_gem_available_set.rb +21 -21
  234. data/test/rubygems/test_gem_bundler_version_finder.rb +1 -1
  235. data/test/rubygems/test_gem_command.rb +44 -44
  236. data/test/rubygems/test_gem_command_manager.rb +29 -29
  237. data/test/rubygems/test_gem_commands_build_command.rb +63 -63
  238. data/test/rubygems/test_gem_commands_cert_command.rb +97 -99
  239. data/test/rubygems/test_gem_commands_check_command.rb +4 -4
  240. data/test/rubygems/test_gem_commands_cleanup_command.rb +40 -40
  241. data/test/rubygems/test_gem_commands_contents_command.rb +27 -27
  242. data/test/rubygems/test_gem_commands_dependency_command.rb +36 -36
  243. data/test/rubygems/test_gem_commands_environment_command.rb +16 -16
  244. data/test/rubygems/test_gem_commands_fetch_command.rb +37 -37
  245. data/test/rubygems/test_gem_commands_generate_index_command.rb +7 -7
  246. data/test/rubygems/test_gem_commands_help_command.rb +13 -13
  247. data/test/rubygems/test_gem_commands_info_command.rb +2 -2
  248. data/test/rubygems/test_gem_commands_install_command.rb +131 -131
  249. data/test/rubygems/test_gem_commands_list_command.rb +4 -4
  250. data/test/rubygems/test_gem_commands_lock_command.rb +10 -10
  251. data/test/rubygems/test_gem_commands_mirror.rb +2 -2
  252. data/test/rubygems/test_gem_commands_open_command.rb +4 -4
  253. data/test/rubygems/test_gem_commands_outdated_command.rb +9 -9
  254. data/test/rubygems/test_gem_commands_owner_command.rb +41 -41
  255. data/test/rubygems/test_gem_commands_pristine_command.rb +92 -92
  256. data/test/rubygems/test_gem_commands_push_command.rb +54 -54
  257. data/test/rubygems/test_gem_commands_query_command.rb +73 -73
  258. data/test/rubygems/test_gem_commands_search_command.rb +2 -2
  259. data/test/rubygems/test_gem_commands_server_command.rb +2 -2
  260. data/test/rubygems/test_gem_commands_setup_command.rb +119 -85
  261. data/test/rubygems/test_gem_commands_signin_command.rb +45 -31
  262. data/test/rubygems/test_gem_commands_signout_command.rb +3 -3
  263. data/test/rubygems/test_gem_commands_sources_command.rb +28 -29
  264. data/test/rubygems/test_gem_commands_specification_command.rb +32 -32
  265. data/test/rubygems/test_gem_commands_stale_command.rb +4 -4
  266. data/test/rubygems/test_gem_commands_uninstall_command.rb +75 -75
  267. data/test/rubygems/test_gem_commands_unpack_command.rb +31 -31
  268. data/test/rubygems/test_gem_commands_update_command.rb +89 -89
  269. data/test/rubygems/test_gem_commands_which_command.rb +6 -6
  270. data/test/rubygems/test_gem_commands_yank_command.rb +40 -40
  271. data/test/rubygems/test_gem_config_file.rb +93 -81
  272. data/test/rubygems/test_gem_dependency.rb +73 -73
  273. data/test/rubygems/test_gem_dependency_installer.rb +165 -165
  274. data/test/rubygems/test_gem_dependency_list.rb +47 -47
  275. data/test/rubygems/test_gem_dependency_resolution_error.rb +4 -4
  276. data/test/rubygems/test_gem_doctor.rb +26 -26
  277. data/test/rubygems/test_gem_ext_builder.rb +59 -59
  278. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/Cargo.lock +6 -6
  279. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/Cargo.toml +1 -1
  280. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/build.rb +8 -8
  281. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec +1 -1
  282. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.lock +6 -6
  283. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.toml +1 -1
  284. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/build.rb +8 -8
  285. data/test/rubygems/test_gem_ext_cargo_builder.rb +26 -26
  286. data/test/rubygems/test_gem_ext_cargo_builder_link_flag_converter.rb +3 -3
  287. data/test/rubygems/test_gem_ext_cargo_builder_unit.rb +23 -23
  288. data/test/rubygems/test_gem_ext_cmake_builder.rb +15 -15
  289. data/test/rubygems/test_gem_ext_configure_builder.rb +13 -13
  290. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +51 -52
  291. data/test/rubygems/test_gem_ext_rake_builder.rb +15 -15
  292. data/test/rubygems/test_gem_gem_runner.rb +7 -7
  293. data/test/rubygems/test_gem_gemcutter_utilities.rb +66 -66
  294. data/test/rubygems/test_gem_impossible_dependencies_error.rb +4 -4
  295. data/test/rubygems/test_gem_indexer.rb +48 -48
  296. data/test/rubygems/test_gem_install_update_options.rb +16 -16
  297. data/test/rubygems/test_gem_installer.rb +303 -300
  298. data/test/rubygems/test_gem_local_remote_options.rb +10 -10
  299. data/test/rubygems/test_gem_name_tuple.rb +4 -4
  300. data/test/rubygems/test_gem_package.rb +228 -206
  301. data/test/rubygems/test_gem_package_old.rb +13 -13
  302. data/test/rubygems/test_gem_package_tar_header.rb +42 -42
  303. data/test/rubygems/test_gem_package_tar_reader.rb +8 -8
  304. data/test/rubygems/test_gem_package_tar_reader_entry.rb +10 -10
  305. data/test/rubygems/test_gem_package_tar_writer.rb +76 -76
  306. data/test/rubygems/test_gem_package_task.rb +18 -18
  307. data/test/rubygems/test_gem_path_support.rb +14 -14
  308. data/test/rubygems/test_gem_platform.rb +266 -227
  309. data/test/rubygems/test_gem_rdoc.rb +14 -14
  310. data/test/rubygems/test_gem_remote_fetcher.rb +149 -149
  311. data/test/rubygems/test_gem_request.rb +55 -55
  312. data/test/rubygems/test_gem_request_connection_pools.rb +29 -29
  313. data/test/rubygems/test_gem_request_set.rb +99 -99
  314. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +204 -206
  315. data/test/rubygems/test_gem_request_set_lockfile.rb +86 -86
  316. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +56 -56
  317. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +62 -62
  318. data/test/rubygems/test_gem_requirement.rb +47 -41
  319. data/test/rubygems/test_gem_resolver.rb +133 -99
  320. data/test/rubygems/test_gem_resolver_activation_request.rb +6 -6
  321. data/test/rubygems/test_gem_resolver_api_set.rb +33 -33
  322. data/test/rubygems/test_gem_resolver_api_specification.rb +47 -47
  323. data/test/rubygems/test_gem_resolver_best_set.rb +22 -22
  324. data/test/rubygems/test_gem_resolver_composed_set.rb +1 -1
  325. data/test/rubygems/test_gem_resolver_conflict.rb +12 -12
  326. data/test/rubygems/test_gem_resolver_dependency_request.rb +15 -15
  327. data/test/rubygems/test_gem_resolver_git_set.rb +21 -21
  328. data/test/rubygems/test_gem_resolver_git_specification.rb +21 -21
  329. data/test/rubygems/test_gem_resolver_index_set.rb +12 -12
  330. data/test/rubygems/test_gem_resolver_index_specification.rb +16 -16
  331. data/test/rubygems/test_gem_resolver_installed_specification.rb +5 -5
  332. data/test/rubygems/test_gem_resolver_installer_set.rb +78 -34
  333. data/test/rubygems/test_gem_resolver_local_specification.rb +7 -7
  334. data/test/rubygems/test_gem_resolver_lock_set.rb +12 -12
  335. data/test/rubygems/test_gem_resolver_lock_specification.rb +17 -17
  336. data/test/rubygems/test_gem_resolver_requirement_list.rb +1 -1
  337. data/test/rubygems/test_gem_resolver_specification.rb +8 -8
  338. data/test/rubygems/test_gem_resolver_vendor_set.rb +6 -6
  339. data/test/rubygems/test_gem_resolver_vendor_specification.rb +10 -10
  340. data/test/rubygems/test_gem_security.rb +67 -67
  341. data/test/rubygems/test_gem_security_policy.rb +62 -62
  342. data/test/rubygems/test_gem_security_signer.rb +28 -28
  343. data/test/rubygems/test_gem_security_trust_dir.rb +4 -4
  344. data/test/rubygems/test_gem_silent_ui.rb +38 -32
  345. data/test/rubygems/test_gem_source.rb +44 -44
  346. data/test/rubygems/test_gem_source_fetch_problem.rb +9 -9
  347. data/test/rubygems/test_gem_source_git.rb +59 -59
  348. data/test/rubygems/test_gem_source_installed.rb +16 -16
  349. data/test/rubygems/test_gem_source_list.rb +5 -5
  350. data/test/rubygems/test_gem_source_local.rb +14 -14
  351. data/test/rubygems/test_gem_source_lock.rb +31 -31
  352. data/test/rubygems/test_gem_source_specific_file.rb +17 -17
  353. data/test/rubygems/test_gem_source_subpath_problem.rb +7 -7
  354. data/test/rubygems/test_gem_source_vendor.rb +13 -13
  355. data/test/rubygems/test_gem_spec_fetcher.rb +72 -72
  356. data/test/rubygems/test_gem_specification.rb +444 -436
  357. data/test/rubygems/test_gem_stream_ui.rb +19 -19
  358. data/test/rubygems/test_gem_stub_specification.rb +32 -32
  359. data/test/rubygems/test_gem_text.rb +1 -1
  360. data/test/rubygems/test_gem_uninstaller.rb +112 -112
  361. data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +3 -3
  362. data/test/rubygems/test_gem_uri.rb +4 -4
  363. data/test/rubygems/test_gem_uri_formatter.rb +14 -14
  364. data/test/rubygems/test_gem_util.rb +23 -23
  365. data/test/rubygems/test_gem_validator.rb +8 -8
  366. data/test/rubygems/test_gem_version.rb +22 -15
  367. data/test/rubygems/test_gem_version_option.rb +15 -15
  368. data/test/rubygems/test_kernel.rb +31 -31
  369. data/test/rubygems/test_project_sanity.rb +1 -1
  370. data/test/rubygems/test_remote_fetch_error.rb +6 -6
  371. data/test/rubygems/test_require.rb +43 -43
  372. data/test/rubygems/test_rubygems.rb +8 -8
  373. data/test/rubygems/utilities.rb +19 -19
  374. metadata +7 -3
@@ -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\-INSTALL" "1" "June 2022" "" ""
4
+ .TH "BUNDLE\-INSTALL" "1" "August 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
@@ -70,6 +70,10 @@ The maximum number of parallel download and install jobs\. The default is the nu
70
70
  Do not attempt to connect to \fBrubygems\.org\fR\. Instead, Bundler will use the gems already present in Rubygems\' cache or in \fBvendor/cache\fR\. Note that if an appropriate platform\-specific gem exists on \fBrubygems\.org\fR it will not be found\.
71
71
  .
72
72
  .TP
73
+ \fB\-\-prefer\-local\fR
74
+ Force using locally installed gems, or gems already present in Rubygems\' cache or in \fBvendor/cache\fR, when resolving, even if newer versions are available remotely\. Only attempt to connect to \fBrubygems\.org\fR for gems that are not present locally\.
75
+ .
76
+ .TP
73
77
  \fB\-\-no\-cache\fR
74
78
  Do not update the cache in \fBvendor/cache\fR with the newly bundled gems\. This does not remove any gems in the cache but keeps the newly bundled gems from being cached during the install\.
75
79
  .
@@ -109,6 +109,12 @@ automatically and that requires `bundler` to silently remember them. Since
109
109
  appropriate platform-specific gem exists on `rubygems.org` it will not be
110
110
  found.
111
111
 
112
+ * `--prefer-local`:
113
+ Force using locally installed gems, or gems already present in Rubygems' cache
114
+ or in `vendor/cache`, when resolving, even if newer versions are available
115
+ remotely. Only attempt to connect to `rubygems.org` for gems that are not
116
+ present locally.
117
+
112
118
  * `--no-cache`:
113
119
  Do not update the cache in `vendor/cache` with the newly bundled gems. This
114
120
  does not remove any gems in the cache but keeps the newly bundled gems from
@@ -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\-LIST" "1" "June 2022" "" ""
4
+ .TH "BUNDLE\-LIST" "1" "August 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-list\fR \- List all the 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\-LOCK" "1" "June 2022" "" ""
4
+ .TH "BUNDLE\-LOCK" "1" "August 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
@@ -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\-OPEN" "1" "June 2022" "" ""
4
+ .TH "BUNDLE\-OPEN" "1" "August 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-open\fR \- Opens the source directory for a gem in your 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\-OUTDATED" "1" "June 2022" "" ""
4
+ .TH "BUNDLE\-OUTDATED" "1" "August 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-outdated\fR \- List installed gems with newer versions available
@@ -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\-PLATFORM" "1" "June 2022" "" ""
4
+ .TH "BUNDLE\-PLATFORM" "1" "August 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-platform\fR \- Displays platform compatibility information
@@ -10,7 +10,7 @@
10
10
  \fBbundle platform\fR [\-\-ruby]
11
11
  .
12
12
  .SH "DESCRIPTION"
13
- \fBplatform\fR will display information from your Gemfile, Gemfile\.lock, and Ruby VM about your platform\.
13
+ \fBplatform\fR displays information from your Gemfile, Gemfile\.lock, and Ruby VM about your platform\.
14
14
  .
15
15
  .P
16
16
  For instance, using this Gemfile(5):
@@ -21,7 +21,7 @@ For instance, using this Gemfile(5):
21
21
 
22
22
  source "https://rubygems\.org"
23
23
 
24
- ruby "1\.9\.3"
24
+ ruby "3\.1\.2"
25
25
 
26
26
  gem "rack"
27
27
  .
@@ -30,7 +30,7 @@ gem "rack"
30
30
  .IP "" 0
31
31
  .
32
32
  .P
33
- If you run \fBbundle platform\fR on Ruby 1\.9\.3, it will display the following output:
33
+ If you run \fBbundle platform\fR on Ruby 3\.1\.2, it displays the following output:
34
34
  .
35
35
  .IP "" 4
36
36
  .
@@ -39,10 +39,13 @@ If you run \fBbundle platform\fR on Ruby 1\.9\.3, it will display the following
39
39
  Your platform is: x86_64\-linux
40
40
 
41
41
  Your app has gems that work on these platforms:
42
+ * arm64\-darwin\-21
42
43
  * ruby
44
+ * x64\-mingw\-ucrt
45
+ * x86_64\-linux
43
46
 
44
47
  Your Gemfile specifies a Ruby version requirement:
45
- * ruby 1\.9\.3
48
+ * ruby 3\.1\.2
46
49
 
47
50
  Your current platform satisfies the Ruby version requirement\.
48
51
  .
@@ -51,11 +54,18 @@ Your current platform satisfies the Ruby version requirement\.
51
54
  .IP "" 0
52
55
  .
53
56
  .P
54
- \fBplatform\fR will list all the platforms in your \fBGemfile\.lock\fR as well as the \fBruby\fR directive if applicable from your Gemfile(5)\. It will also let you know if the \fBruby\fR directive requirement has been met\. If \fBruby\fR directive doesn\'t match the running Ruby VM, it will tell you what part does not\.
57
+ \fBplatform\fR lists all the platforms in your \fBGemfile\.lock\fR as well as the \fBruby\fR directive if applicable from your Gemfile(5)\. It also lets you know if the \fBruby\fR directive requirement has been met\. If \fBruby\fR directive doesn\'t match the running Ruby VM, it tells you what part does not\.
55
58
  .
56
59
  .SH "OPTIONS"
57
60
  .
58
61
  .TP
59
62
  \fB\-\-ruby\fR
60
63
  It will display the ruby directive information, so you don\'t have to parse it from the Gemfile(5)\.
64
+ .
65
+ .SH "SEE ALSO"
66
+ .
67
+ .IP "\(bu" 4
68
+ bundle\-lock(1) \fIbundle\-lock\.1\.ronn\fR
69
+ .
70
+ .IP "" 0
61
71
 
@@ -7,36 +7,43 @@ bundle-platform(1) -- Displays platform compatibility information
7
7
 
8
8
  ## DESCRIPTION
9
9
 
10
- `platform` will display information from your Gemfile, Gemfile.lock, and Ruby
10
+ `platform` displays information from your Gemfile, Gemfile.lock, and Ruby
11
11
  VM about your platform.
12
12
 
13
13
  For instance, using this Gemfile(5):
14
14
 
15
15
  source "https://rubygems.org"
16
16
 
17
- ruby "1.9.3"
17
+ ruby "3.1.2"
18
18
 
19
19
  gem "rack"
20
20
 
21
- If you run `bundle platform` on Ruby 1.9.3, it will display the following output:
21
+ If you run `bundle platform` on Ruby 3.1.2, it displays the following output:
22
22
 
23
23
  Your platform is: x86_64-linux
24
24
 
25
25
  Your app has gems that work on these platforms:
26
+ * arm64-darwin-21
26
27
  * ruby
28
+ * x64-mingw-ucrt
29
+ * x86_64-linux
27
30
 
28
31
  Your Gemfile specifies a Ruby version requirement:
29
- * ruby 1.9.3
32
+ * ruby 3.1.2
30
33
 
31
34
  Your current platform satisfies the Ruby version requirement.
32
35
 
33
- `platform` will list all the platforms in your `Gemfile.lock` as well as the
34
- `ruby` directive if applicable from your Gemfile(5). It will also let you know
36
+ `platform` lists all the platforms in your `Gemfile.lock` as well as the
37
+ `ruby` directive if applicable from your Gemfile(5). It also lets you know
35
38
  if the `ruby` directive requirement has been met. If `ruby` directive doesn't
36
- match the running Ruby VM, it will tell you what part does not.
39
+ match the running Ruby VM, it tells you what part does not.
37
40
 
38
41
  ## OPTIONS
39
42
 
40
43
  * `--ruby`:
41
44
  It will display the ruby directive information, so you don't have to
42
45
  parse it from the Gemfile(5).
46
+
47
+ ## SEE ALSO
48
+
49
+ * [bundle-lock(1)](bundle-lock.1.ronn)
@@ -0,0 +1,81 @@
1
+ .\" generated with Ronn/v0.7.3
2
+ .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
+ .
4
+ .TH "BUNDLE\-PLUGIN" "1" "August 2022" "" ""
5
+ .
6
+ .SH "NAME"
7
+ \fBbundle\-plugin\fR \- Manage Bundler plugins
8
+ .
9
+ .SH "SYNOPSIS"
10
+ \fBbundle plugin\fR install PLUGINS [\-\-source=\fISOURCE\fR] [\-\-version=\fIversion\fR] [\-\-git|\-\-local_git=\fIgit\-url\fR] [\-\-branch=\fIbranch\fR|\-\-ref=\fIrev\fR]
11
+ .
12
+ .br
13
+ \fBbundle plugin\fR uninstall PLUGINS
14
+ .
15
+ .br
16
+ \fBbundle plugin\fR list
17
+ .
18
+ .br
19
+ \fBbundle plugin\fR help [COMMAND]
20
+ .
21
+ .SH "DESCRIPTION"
22
+ You can install, uninstall, and list plugin(s) with this command to extend functionalities of Bundler\.
23
+ .
24
+ .SH "SUB\-COMMANDS"
25
+ .
26
+ .SS "install"
27
+ Install the given plugin(s)\.
28
+ .
29
+ .IP "\(bu" 4
30
+ \fBbundle plugin install bundler\-graph\fR: Install bundler\-graph gem from RubyGems\.org\. The global source, specified in source in Gemfile is ignored\.
31
+ .
32
+ .IP "\(bu" 4
33
+ \fBbundle plugin install bundler\-graph \-\-source https://example\.com\fR: Install bundler\-graph gem from example\.com\. The global source, specified in source in Gemfile is not considered\.
34
+ .
35
+ .IP "\(bu" 4
36
+ \fBbundle plugin install bundler\-graph \-\-version 0\.2\.1\fR: You can specify the version of the gem via \fB\-\-version\fR\.
37
+ .
38
+ .IP "\(bu" 4
39
+ \fBbundle plugin install bundler\-graph \-\-git https://github\.com/rubygems/bundler\-graph\fR: Install bundler\-graph gem from Git repository\. \fB\-\-git\fR can be replaced with \fB\-\-local\-git\fR\. You cannot use both \fB\-\-git\fR and \fB\-\-local\-git\fR\. You can use standard Git URLs like:
40
+ .
41
+ .IP "\(bu" 4
42
+ \fBssh://[user@]host\.xz[:port]/path/to/repo\.git\fR
43
+ .
44
+ .IP "\(bu" 4
45
+ \fBhttp[s]://host\.xz[:port]/path/to/repo\.git\fR
46
+ .
47
+ .IP "\(bu" 4
48
+ \fB/path/to/repo\fR
49
+ .
50
+ .IP "\(bu" 4
51
+ \fBfile:///path/to/repo\fR
52
+ .
53
+ .IP "" 0
54
+ .
55
+ .IP
56
+ When you specify \fB\-\-git\fR/\fB\-\-local\-git\fR, you can use \fB\-\-branch\fR or \fB\-\-ref\fR to specify any branch, tag, or commit hash (revision) to use\. When you specify both, only the latter is used\.
57
+ .
58
+ .IP "" 0
59
+ .
60
+ .SS "uninstall"
61
+ Uninstall the plugin(s) specified in PLUGINS\.
62
+ .
63
+ .SS "list"
64
+ List the installed plugins and available commands\.
65
+ .
66
+ .P
67
+ No options\.
68
+ .
69
+ .SS "help"
70
+ Describe subcommands or one specific subcommand\.
71
+ .
72
+ .P
73
+ No options\.
74
+ .
75
+ .SH "SEE ALSO"
76
+ .
77
+ .IP "\(bu" 4
78
+ How to write a Bundler plugin \fIhttps://bundler\.io/guides/bundler_plugins\.html\fR
79
+ .
80
+ .IP "" 0
81
+
@@ -0,0 +1,59 @@
1
+ bundle-plugin(1) -- Manage Bundler plugins
2
+ ==========================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `bundle plugin` install PLUGINS [--source=<SOURCE>] [--version=<version>]
7
+ [--git|--local_git=<git-url>] [--branch=<branch>|--ref=<rev>]<br>
8
+ `bundle plugin` uninstall PLUGINS<br>
9
+ `bundle plugin` list<br>
10
+ `bundle plugin` help [COMMAND]
11
+
12
+ ## DESCRIPTION
13
+
14
+ You can install, uninstall, and list plugin(s) with this command to extend functionalities of Bundler.
15
+
16
+ ## SUB-COMMANDS
17
+
18
+ ### install
19
+
20
+ Install the given plugin(s).
21
+
22
+ * `bundle plugin install bundler-graph`:
23
+ Install bundler-graph gem from RubyGems.org. The global source, specified in source in Gemfile is ignored.
24
+
25
+ * `bundle plugin install bundler-graph --source https://example.com`:
26
+ Install bundler-graph gem from example.com. The global source, specified in source in Gemfile is not considered.
27
+
28
+ * `bundle plugin install bundler-graph --version 0.2.1`:
29
+ You can specify the version of the gem via `--version`.
30
+
31
+ * `bundle plugin install bundler-graph --git https://github.com/rubygems/bundler-graph`:
32
+ Install bundler-graph gem from Git repository. `--git` can be replaced with `--local-git`. You cannot use both `--git` and `--local-git`. You can use standard Git URLs like:
33
+
34
+ * `ssh://[user@]host.xz[:port]/path/to/repo.git`
35
+ * `http[s]://host.xz[:port]/path/to/repo.git`
36
+ * `/path/to/repo`
37
+ * `file:///path/to/repo`
38
+
39
+ When you specify `--git`/`--local-git`, you can use `--branch` or `--ref` to specify any branch, tag, or commit hash (revision) to use. When you specify both, only the latter is used.
40
+
41
+ ### uninstall
42
+
43
+ Uninstall the plugin(s) specified in PLUGINS.
44
+
45
+ ### list
46
+
47
+ List the installed plugins and available commands.
48
+
49
+ No options.
50
+
51
+ ### help
52
+
53
+ Describe subcommands or one specific subcommand.
54
+
55
+ No options.
56
+
57
+ ## SEE ALSO
58
+
59
+ * [How to write a Bundler plugin](https://bundler.io/guides/bundler_plugins.html)
@@ -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" "June 2022" "" ""
4
+ .TH "BUNDLE\-PRISTINE" "1" "August 2022" "" ""
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" "June 2022" "" ""
4
+ .TH "BUNDLE\-REMOVE" "1" "August 2022" "" ""
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" "June 2022" "" ""
4
+ .TH "BUNDLE\-SHOW" "1" "August 2022" "" ""
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" "June 2022" "" ""
4
+ .TH "BUNDLE\-UPDATE" "1" "August 2022" "" ""
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" "June 2022" "" ""
4
+ .TH "BUNDLE\-VIZ" "1" "August 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
@@ -15,6 +15,9 @@
15
15
  .P
16
16
  The associated gems must also be installed via \fBbundle install(1)\fR \fIbundle\-install\.1\.html\fR\.
17
17
  .
18
+ .P
19
+ \fBviz\fR command was deprecated in Bundler 2\.2\. Use bundler\-graph plugin \fIhttps://github\.com/rubygems/bundler\-graph\fR instead\.
20
+ .
18
21
  .SH "OPTIONS"
19
22
  .
20
23
  .TP
@@ -16,6 +16,8 @@ bundle-viz(1) -- Generates a visual dependency graph for your Gemfile
16
16
 
17
17
  The associated gems must also be installed via [`bundle install(1)`](bundle-install.1.html).
18
18
 
19
+ `viz` command was deprecated in Bundler 2.2. Use [bundler-graph plugin](https://github.com/rubygems/bundler-graph) instead.
20
+
19
21
  ## OPTIONS
20
22
 
21
23
  * `--file`, `-f`:
@@ -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" "June 2022" "" ""
4
+ .TH "BUNDLE" "1" "August 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\fR \- Ruby Dependency Management
@@ -43,8 +43,8 @@ Install the gems specified by the \fBGemfile\fR or \fBGemfile\.lock\fR
43
43
  Update dependencies to their latest versions
44
44
  .
45
45
  .TP
46
- \fBbundle package(1)\fR \fIbundle\-package\.1\.html\fR
47
- Package the \.gem files required by your application into the \fBvendor/cache\fR directory
46
+ \fBbundle cache(1)\fR \fIbundle\-cache\.1\.html\fR
47
+ Package the \.gem files required by your application into the \fBvendor/cache\fR directory (aliases: \fBbundle package\fR, \fBbundle pack\fR)
48
48
  .
49
49
  .TP
50
50
  \fBbundle exec(1)\fR \fIbundle\-exec\.1\.html\fR
@@ -81,7 +81,7 @@ Show the source location of a particular gem in the bundle
81
81
  Show all of the outdated gems in the current bundle
82
82
  .
83
83
  .TP
84
- \fBbundle console(1)\fR
84
+ \fBbundle console(1)\fR (deprecated)
85
85
  Start an IRB session in the current bundle
86
86
  .
87
87
  .TP
@@ -93,7 +93,7 @@ Open an installed gem in the editor
93
93
  Generate a lockfile for your dependencies
94
94
  .
95
95
  .TP
96
- \fBbundle viz(1)\fR \fIbundle\-viz\.1\.html\fR
96
+ \fBbundle viz(1)\fR \fIbundle\-viz\.1\.html\fR (deprecated)
97
97
  Generate a visual representation of your dependencies
98
98
  .
99
99
  .TP
@@ -120,6 +120,10 @@ Display warnings about common problems
120
120
  \fBbundle remove(1)\fR \fIbundle\-remove\.1\.html\fR
121
121
  Removes gems from the Gemfile
122
122
  .
123
+ .TP
124
+ \fBbundle plugin(1)\fR \fIbundle\-plugin\.1\.html\fR
125
+ Manage Bundler plugins
126
+ .
123
127
  .SH "PLUGINS"
124
128
  When running a command that isn\'t listed in PRIMARY COMMANDS or UTILITIES, Bundler will try to find an executable on your path named \fBbundler\-<command>\fR and execute it, passing down any extra arguments to it\.
125
129
  .
@@ -127,10 +131,7 @@ When running a command that isn\'t listed in PRIMARY COMMANDS or UTILITIES, Bund
127
131
  These commands are obsolete and should no longer be used:
128
132
  .
129
133
  .IP "\(bu" 4
130
- \fBbundle cache(1)\fR
131
- .
132
- .IP "\(bu" 4
133
- \fBbundle show(1)\fR
134
+ \fBbundle inject(1)\fR
134
135
  .
135
136
  .IP "" 0
136
137
 
@@ -36,9 +36,9 @@ We divide `bundle` subcommands into primary commands and utilities:
36
36
  * [`bundle update(1)`](bundle-update.1.html):
37
37
  Update dependencies to their latest versions
38
38
 
39
- * [`bundle package(1)`](bundle-package.1.html):
39
+ * [`bundle cache(1)`](bundle-cache.1.html):
40
40
  Package the .gem files required by your application into the
41
- `vendor/cache` directory
41
+ `vendor/cache` directory (aliases: `bundle package`, `bundle pack`)
42
42
 
43
43
  * [`bundle exec(1)`](bundle-exec.1.html):
44
44
  Execute a script in the current bundle
@@ -67,7 +67,7 @@ We divide `bundle` subcommands into primary commands and utilities:
67
67
  * [`bundle outdated(1)`](bundle-outdated.1.html):
68
68
  Show all of the outdated gems in the current bundle
69
69
 
70
- * `bundle console(1)`:
70
+ * `bundle console(1)` (deprecated):
71
71
  Start an IRB session in the current bundle
72
72
 
73
73
  * [`bundle open(1)`](bundle-open.1.html):
@@ -76,7 +76,7 @@ We divide `bundle` subcommands into primary commands and utilities:
76
76
  * [`bundle lock(1)`](bundle-lock.1.html):
77
77
  Generate a lockfile for your dependencies
78
78
 
79
- * [`bundle viz(1)`](bundle-viz.1.html):
79
+ * [`bundle viz(1)`](bundle-viz.1.html) (deprecated):
80
80
  Generate a visual representation of your dependencies
81
81
 
82
82
  * [`bundle init(1)`](bundle-init.1.html):
@@ -97,6 +97,9 @@ We divide `bundle` subcommands into primary commands and utilities:
97
97
  * [`bundle remove(1)`](bundle-remove.1.html):
98
98
  Removes gems from the Gemfile
99
99
 
100
+ * [`bundle plugin(1)`](bundle-plugin.1.html):
101
+ Manage Bundler plugins
102
+
100
103
  ## PLUGINS
101
104
 
102
105
  When running a command that isn't listed in PRIMARY COMMANDS or UTILITIES,
@@ -107,5 +110,4 @@ and execute it, passing down any extra arguments to it.
107
110
 
108
111
  These commands are obsolete and should no longer be used:
109
112
 
110
- * `bundle cache(1)`
111
- * `bundle show(1)`
113
+ * `bundle inject(1)`
@@ -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" "June 2022" "" ""
4
+ .TH "GEMFILE" "5" "August 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
@@ -15,8 +15,8 @@ Place the \fBGemfile\fR in the root of the directory containing the associated c
15
15
  .SH "SYNTAX"
16
16
  A \fBGemfile\fR is evaluated as Ruby code, in a context which makes available a number of methods used to describe the gem requirements\.
17
17
  .
18
- .SH "GLOBAL SOURCES"
19
- At the top of the \fBGemfile\fR, add a line for the \fBRubygems\fR source that contains the gems listed in the \fBGemfile\fR\.
18
+ .SH "GLOBAL SOURCE"
19
+ At the top of the \fBGemfile\fR, add a single line for the \fBRubyGems\fR source that contains the gems listed in the \fBGemfile\fR\.
20
20
  .
21
21
  .IP "" 4
22
22
  .
@@ -29,10 +29,16 @@ source "https://rubygems\.org"
29
29
  .IP "" 0
30
30
  .
31
31
  .P
32
- It is possible, but not recommended as of Bundler 1\.7, to add multiple global \fBsource\fR lines\. Each of these \fBsource\fRs \fBMUST\fR be a valid Rubygems repository\.
32
+ You can add only one global source\. In Bundler 1\.13, adding multiple global sources was deprecated\. The \fBsource\fR \fBMUST\fR be a valid RubyGems repository\.
33
33
  .
34
34
  .P
35
- Sources are checked for gems following the heuristics described in \fISOURCE PRIORITY\fR\. If a gem is found in more than one global source, Bundler will print a warning after installing the gem indicating which source was used, and listing the other sources where the gem is available\. A specific source can be selected for gems that need to use a non\-standard repository, suppressing this warning, by using the \fI\fB:source\fR option\fR or a \fI\fBsource\fR block\fR\.
35
+ To use more than one source of RubyGems, you should use \fI\fBsource\fR block\fR\.
36
+ .
37
+ .P
38
+ A source is checked for gems following the heuristics described in \fISOURCE PRIORITY\fR\.
39
+ .
40
+ .P
41
+ \fBNote about a behavior of the feature deprecated in Bundler 1\.13\fR: If a gem is found in more than one global source, Bundler will print a warning after installing the gem indicating which source was used, and listing the other sources where the gem is available\. A specific source can be selected for gems that need to use a non\-standard repository, suppressing this warning, by using the \fI\fB:source\fR option\fR or \fBsource\fR block\.
36
42
  .
37
43
  .SS "CREDENTIALS"
38
44
  Some gem sources require a username and password\. Use bundle config(1) \fIbundle\-config\.1\.html\fR to set the username and password for any of the sources that need it\. The command must be run once on each computer that will install the Gemfile, but this keeps the credentials from being stored in plain text in version control\.
@@ -356,7 +362,7 @@ The platform specific variant does not yet support a newer ruby (and thus has a
356
362
  .IP "" 0
357
363
  .
358
364
  .SS "SOURCE"
359
- You can select an alternate Rubygems repository for a gem using the \':source\' option\.
365
+ You can select an alternate RubyGems repository for a gem using the \':source\' option\.
360
366
  .
361
367
  .IP "" 4
362
368
  .
@@ -369,13 +375,13 @@ gem "some_internal_gem", source: "https://gems\.example\.com"
369
375
  .IP "" 0
370
376
  .
371
377
  .P
372
- This forces the gem to be loaded from this source and ignores any global sources declared at the top level of the file\. If the gem does not exist in this source, it will not be installed\.
378
+ This forces the gem to be loaded from this source and ignores the global source declared at the top level of the file\. If the gem does not exist in this source, it will not be installed\.
373
379
  .
374
380
  .P
375
- Bundler will search for child dependencies of this gem by first looking in the source selected for the parent, but if they are not found there, it will fall back on global sources using the ordering described in \fISOURCE PRIORITY\fR\.
381
+ Bundler will search for child dependencies of this gem by first looking in the source selected for the parent, but if they are not found there, it will fall back on the global source\.
376
382
  .
377
383
  .P
378
- Selecting a specific source repository this way also suppresses the ambiguous gem warning described above in \fIGLOBAL SOURCES (#source)\fR\.
384
+ \fBNote about a behavior of the feature deprecated in Bundler 1\.13\fR: Selecting a specific source repository this way also suppresses the ambiguous gem warning described above in \fIGLOBAL SOURCE\fR\.
379
385
  .
380
386
  .P
381
387
  Using the \fB:source\fR option for an individual gem will also make that source available as a possible global source for any other gems which do not specify explicit sources\. Thus, when adding gems with explicit sources, it is recommended that you also ensure all other gems in the Gemfile are using explicit sources\.
@@ -730,7 +736,7 @@ The source explicitly attached to the gem (using \fB:source\fR, \fB:path\fR, or
730
736
  For implicit gems (dependencies of explicit gems), any source, git, or path repository declared on the parent\. This results in bundler prioritizing the ActiveSupport gem from the Rails git repository over ones from \fBrubygems\.org\fR
731
737
  .
732
738
  .IP "3." 4
733
- The sources specified via global \fBsource\fR lines, searching each source in your \fBGemfile\fR from last added to first added\.
739
+ If neither of the above conditions are met, the global source will be used\. If multiple global sources are specified, they will be prioritized from last to first, but this is deprecated since Bundler 1\.13, so Bundler prints a warning and will abort with an error in the future\.
734
740
  .
735
741
  .IP "" 0
736
742