rubygems-update 3.1.6 → 3.2.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (347) hide show
  1. checksums.yaml +4 -4
  2. data/CODE_OF_CONDUCT.md +55 -19
  3. data/CONTRIBUTING.md +1 -2
  4. data/History.txt +122 -14
  5. data/Manifest.txt +13 -25
  6. data/POLICIES.md +2 -9
  7. data/README.md +1 -1
  8. data/Rakefile +31 -33
  9. data/bin/update_rubygems +1 -1
  10. data/bundler/CHANGELOG.md +806 -741
  11. data/bundler/README.md +6 -8
  12. data/bundler/UPGRADING.md +16 -30
  13. data/bundler/bundler.gemspec +3 -3
  14. data/bundler/exe/bundle +3 -0
  15. data/bundler/lib/bundler.rb +15 -4
  16. data/bundler/lib/bundler/build_metadata.rb +2 -2
  17. data/bundler/lib/bundler/cli.rb +32 -11
  18. data/bundler/lib/bundler/cli/console.rb +1 -1
  19. data/bundler/lib/bundler/cli/gem.rb +83 -10
  20. data/bundler/lib/bundler/cli/info.rb +13 -3
  21. data/bundler/lib/bundler/cli/init.rb +1 -1
  22. data/bundler/lib/bundler/cli/install.rb +5 -14
  23. data/bundler/lib/bundler/cli/issue.rb +2 -2
  24. data/bundler/lib/bundler/cli/list.rb +11 -9
  25. data/bundler/lib/bundler/cli/outdated.rb +88 -65
  26. data/bundler/lib/bundler/cli/plugin.rb +10 -0
  27. data/bundler/lib/bundler/cli/pristine.rb +5 -0
  28. data/bundler/lib/bundler/definition.rb +32 -32
  29. data/bundler/lib/bundler/dependency.rb +0 -9
  30. data/bundler/lib/bundler/dsl.rb +1 -5
  31. data/bundler/lib/bundler/environment_preserver.rb +26 -2
  32. data/bundler/lib/bundler/errors.rb +1 -0
  33. data/bundler/lib/bundler/feature_flag.rb +0 -2
  34. data/bundler/lib/bundler/fetcher.rb +1 -0
  35. data/bundler/lib/bundler/friendly_errors.rb +4 -10
  36. data/bundler/lib/bundler/gem_helper.rb +17 -10
  37. data/bundler/lib/bundler/gem_version_promoter.rb +1 -1
  38. data/bundler/lib/bundler/injector.rb +14 -3
  39. data/bundler/lib/bundler/inline.rb +1 -1
  40. data/bundler/lib/bundler/installer.rb +29 -28
  41. data/bundler/lib/bundler/installer/gem_installer.rb +2 -2
  42. data/bundler/lib/bundler/installer/parallel_installer.rb +9 -9
  43. data/bundler/lib/bundler/lazy_specification.rb +16 -3
  44. data/bundler/lib/bundler/plugin.rb +26 -0
  45. data/bundler/lib/bundler/plugin/index.rb +9 -0
  46. data/bundler/lib/bundler/psyched_yaml.rb +0 -15
  47. data/bundler/lib/bundler/remote_specification.rb +4 -1
  48. data/bundler/lib/bundler/resolver.rb +31 -8
  49. data/bundler/lib/bundler/resolver/spec_group.rb +26 -5
  50. data/bundler/lib/bundler/rubygems_ext.rb +7 -8
  51. data/bundler/lib/bundler/rubygems_gem_installer.rb +1 -7
  52. data/bundler/lib/bundler/rubygems_integration.rb +3 -48
  53. data/bundler/lib/bundler/runtime.rb +2 -12
  54. data/bundler/lib/bundler/settings.rb +0 -3
  55. data/bundler/lib/bundler/shared_helpers.rb +1 -1
  56. data/bundler/lib/bundler/source/git.rb +4 -4
  57. data/bundler/lib/bundler/source/git/git_proxy.rb +53 -58
  58. data/bundler/lib/bundler/source/path.rb +5 -1
  59. data/bundler/lib/bundler/source/path/installer.rb +7 -9
  60. data/bundler/lib/bundler/source/rubygems.rb +11 -14
  61. data/bundler/lib/bundler/stub_specification.rb +16 -4
  62. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  63. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +9 -1
  64. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +19 -5
  65. data/bundler/lib/bundler/templates/newgem/bin/console.tt +2 -0
  66. data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  67. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  68. data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
  69. data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  70. data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -0
  71. data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  72. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +6 -4
  73. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
  74. data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  75. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
  76. data/bundler/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  77. data/bundler/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  78. data/bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  79. data/bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  80. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +75 -189
  81. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +0 -7
  82. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  83. data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  84. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  85. data/bundler/lib/bundler/version.rb +1 -1
  86. data/bundler/man/bundle-add.1 +1 -1
  87. data/bundler/man/bundle-add.1.txt +15 -15
  88. data/bundler/man/bundle-binstubs.1 +1 -1
  89. data/bundler/man/bundle-binstubs.1.txt +10 -10
  90. data/bundler/man/bundle-cache.1 +1 -1
  91. data/bundler/man/bundle-cache.1.txt +15 -15
  92. data/bundler/man/bundle-check.1 +1 -1
  93. data/bundler/man/bundle-check.1.txt +8 -8
  94. data/bundler/man/bundle-clean.1 +1 -1
  95. data/bundler/man/bundle-clean.1.txt +6 -6
  96. data/bundler/man/bundle-config.1 +3 -9
  97. data/bundler/man/bundle-config.1.txt +271 -272
  98. data/bundler/man/bundle-config.ronn +5 -9
  99. data/bundler/man/bundle-doctor.1 +1 -1
  100. data/bundler/man/bundle-doctor.1.txt +9 -9
  101. data/bundler/man/bundle-exec.1 +1 -1
  102. data/bundler/man/bundle-exec.1.txt +84 -81
  103. data/bundler/man/bundle-gem.1 +25 -3
  104. data/bundler/man/bundle-gem.1.txt +65 -39
  105. data/bundler/man/bundle-gem.ronn +30 -7
  106. data/bundler/man/bundle-info.1 +1 -1
  107. data/bundler/man/bundle-info.1.txt +2 -2
  108. data/bundler/man/bundle-init.1 +1 -1
  109. data/bundler/man/bundle-init.1.txt +9 -9
  110. data/bundler/man/bundle-inject.1 +1 -1
  111. data/bundler/man/bundle-inject.1.txt +4 -4
  112. data/bundler/man/bundle-install.1 +1 -1
  113. data/bundler/man/bundle-install.1.txt +169 -169
  114. data/bundler/man/bundle-list.1 +7 -7
  115. data/bundler/man/bundle-list.1.txt +12 -11
  116. data/bundler/man/bundle-list.ronn +6 -6
  117. data/bundler/man/bundle-lock.1 +1 -1
  118. data/bundler/man/bundle-lock.1.txt +28 -28
  119. data/bundler/man/bundle-open.1 +1 -1
  120. data/bundler/man/bundle-open.1.txt +3 -3
  121. data/bundler/man/bundle-outdated.1 +1 -1
  122. data/bundler/man/bundle-outdated.1.txt +34 -34
  123. data/bundler/man/bundle-platform.1 +1 -1
  124. data/bundler/man/bundle-platform.1.txt +16 -16
  125. data/bundler/man/bundle-pristine.1 +1 -1
  126. data/bundler/man/bundle-pristine.1.txt +8 -8
  127. data/bundler/man/bundle-remove.1 +1 -1
  128. data/bundler/man/bundle-remove.1.txt +9 -9
  129. data/bundler/man/bundle-show.1 +1 -1
  130. data/bundler/man/bundle-show.1.txt +8 -8
  131. data/bundler/man/bundle-update.1 +1 -1
  132. data/bundler/man/bundle-update.1.txt +149 -148
  133. data/bundler/man/bundle-viz.1 +1 -1
  134. data/bundler/man/bundle-viz.1.txt +11 -11
  135. data/bundler/man/bundle.1 +1 -1
  136. data/bundler/man/bundle.1.txt +31 -31
  137. data/bundler/man/gemfile.5 +1 -1
  138. data/bundler/man/gemfile.5.txt +218 -216
  139. data/lib/rubygems.rb +68 -148
  140. data/lib/rubygems/available_set.rb +4 -4
  141. data/lib/rubygems/basic_specification.rb +11 -5
  142. data/lib/rubygems/bundler_version_finder.rb +14 -9
  143. data/lib/rubygems/command.rb +16 -14
  144. data/lib/rubygems/command_manager.rb +4 -3
  145. data/lib/rubygems/commands/cert_command.rb +1 -1
  146. data/lib/rubygems/commands/cleanup_command.rb +3 -3
  147. data/lib/rubygems/commands/contents_command.rb +4 -4
  148. data/lib/rubygems/commands/dependency_command.rb +6 -6
  149. data/lib/rubygems/commands/fetch_command.rb +2 -2
  150. data/lib/rubygems/commands/help_command.rb +1 -1
  151. data/lib/rubygems/commands/info_command.rb +9 -4
  152. data/lib/rubygems/commands/install_command.rb +3 -3
  153. data/lib/rubygems/commands/list_command.rb +9 -6
  154. data/lib/rubygems/commands/lock_command.rb +1 -1
  155. data/lib/rubygems/commands/open_command.rb +0 -2
  156. data/lib/rubygems/commands/pristine_command.rb +10 -2
  157. data/lib/rubygems/commands/push_command.rb +4 -42
  158. data/lib/rubygems/commands/query_command.rb +7 -352
  159. data/lib/rubygems/commands/search_command.rb +8 -6
  160. data/lib/rubygems/commands/setup_command.rb +128 -32
  161. data/lib/rubygems/commands/specification_command.rb +2 -2
  162. data/lib/rubygems/commands/stale_command.rb +1 -1
  163. data/lib/rubygems/commands/uninstall_command.rb +1 -1
  164. data/lib/rubygems/commands/unpack_command.rb +1 -1
  165. data/lib/rubygems/commands/update_command.rb +40 -10
  166. data/lib/rubygems/config_file.rb +11 -2
  167. data/lib/rubygems/core_ext/kernel_require.rb +2 -2
  168. data/lib/rubygems/defaults.rb +99 -5
  169. data/lib/rubygems/dependency.rb +2 -5
  170. data/lib/rubygems/dependency_installer.rb +1 -73
  171. data/lib/rubygems/dependency_list.rb +7 -7
  172. data/lib/rubygems/deprecate.rb +46 -1
  173. data/lib/rubygems/doctor.rb +4 -2
  174. data/lib/rubygems/errors.rb +3 -2
  175. data/lib/rubygems/exceptions.rb +2 -13
  176. data/lib/rubygems/ext.rb +6 -6
  177. data/lib/rubygems/ext/build_error.rb +2 -0
  178. data/lib/rubygems/ext/builder.rb +1 -1
  179. data/lib/rubygems/ext/cmake_builder.rb +1 -1
  180. data/lib/rubygems/ext/ext_conf_builder.rb +6 -7
  181. data/lib/rubygems/gem_runner.rb +3 -8
  182. data/lib/rubygems/gemcutter_utilities.rb +1 -1
  183. data/lib/rubygems/indexer.rb +1 -19
  184. data/lib/rubygems/install_update_options.rb +5 -5
  185. data/lib/rubygems/installer.rb +45 -42
  186. data/lib/rubygems/installer_test_case.rb +19 -2
  187. data/lib/rubygems/installer_uninstaller_utils.rb +24 -0
  188. data/lib/rubygems/local_remote_options.rb +1 -1
  189. data/lib/rubygems/name_tuple.rb +2 -4
  190. data/lib/rubygems/package.rb +8 -13
  191. data/lib/rubygems/package/old.rb +1 -1
  192. data/lib/rubygems/package/tar_header.rb +3 -3
  193. data/lib/rubygems/package/tar_reader.rb +0 -1
  194. data/lib/rubygems/package/tar_reader/entry.rb +0 -1
  195. data/lib/rubygems/package/tar_test_case.rb +1 -1
  196. data/lib/rubygems/package/tar_writer.rb +2 -6
  197. data/lib/rubygems/package_task.rb +1 -5
  198. data/lib/rubygems/path_support.rb +1 -1
  199. data/lib/rubygems/platform.rb +3 -3
  200. data/lib/rubygems/query_utils.rb +362 -0
  201. data/lib/rubygems/rdoc.rb +0 -12
  202. data/lib/rubygems/remote_fetcher.rb +5 -19
  203. data/lib/rubygems/request/connection_pools.rb +1 -1
  204. data/lib/rubygems/request_set.rb +5 -5
  205. data/lib/rubygems/request_set/gem_dependency_api.rb +1 -1
  206. data/lib/rubygems/request_set/lockfile.rb +8 -8
  207. data/lib/rubygems/request_set/lockfile/tokenizer.rb +1 -1
  208. data/lib/rubygems/requirement.rb +14 -15
  209. data/lib/rubygems/resolver.rb +7 -8
  210. data/lib/rubygems/resolver/api_set.rb +3 -3
  211. data/lib/rubygems/resolver/composed_set.rb +3 -3
  212. data/lib/rubygems/resolver/conflict.rb +1 -1
  213. data/lib/rubygems/resolver/index_set.rb +1 -1
  214. data/lib/rubygems/resolver/installer_set.rb +3 -3
  215. data/lib/rubygems/resolver/lock_set.rb +1 -1
  216. data/lib/rubygems/safe_yaml.rb +4 -4
  217. data/lib/rubygems/security.rb +25 -25
  218. data/lib/rubygems/security/policy.rb +3 -3
  219. data/lib/rubygems/security/signer.rb +4 -4
  220. data/lib/rubygems/security/trust_dir.rb +1 -1
  221. data/lib/rubygems/server.rb +8 -8
  222. data/lib/rubygems/source/git.rb +7 -6
  223. data/lib/rubygems/source/local.rb +2 -2
  224. data/lib/rubygems/source_list.rb +4 -5
  225. data/lib/rubygems/spec_fetcher.rb +18 -15
  226. data/lib/rubygems/specification.rb +79 -104
  227. data/lib/rubygems/specification_policy.rb +79 -27
  228. data/lib/rubygems/ssl_certs/{rubygems.org → index.rubygems.org}/GlobalSignRootCA.pem +0 -0
  229. data/lib/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +23 -0
  230. data/lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +25 -0
  231. data/lib/rubygems/test_case.rb +63 -83
  232. data/lib/rubygems/test_utilities.rb +6 -6
  233. data/lib/rubygems/uninstaller.rb +35 -14
  234. data/lib/rubygems/user_interaction.rb +1 -10
  235. data/lib/rubygems/util.rb +10 -2
  236. data/lib/rubygems/util/licenses.rb +4 -4
  237. data/lib/rubygems/validator.rb +1 -1
  238. data/lib/rubygems/version.rb +4 -4
  239. data/rubygems-update.gemspec +2 -2
  240. data/setup.rb +2 -7
  241. data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -2
  242. data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +0 -2
  243. data/test/rubygems/test_bundled_ca.rb +4 -12
  244. data/test/rubygems/test_deprecate.rb +43 -4
  245. data/test/rubygems/test_gem.rb +79 -74
  246. data/test/rubygems/test_gem_available_set.rb +3 -3
  247. data/test/rubygems/test_gem_bundler_version_finder.rb +19 -1
  248. data/test/rubygems/test_gem_command.rb +24 -3
  249. data/test/rubygems/test_gem_command_manager.rb +37 -4
  250. data/test/rubygems/test_gem_commands_build_command.rb +7 -2
  251. data/test/rubygems/test_gem_commands_cert_command.rb +2 -2
  252. data/test/rubygems/test_gem_commands_cleanup_command.rb +1 -1
  253. data/test/rubygems/test_gem_commands_contents_command.rb +48 -15
  254. data/test/rubygems/test_gem_commands_environment_command.rb +21 -21
  255. data/test/rubygems/test_gem_commands_generate_index_command.rb +1 -5
  256. data/test/rubygems/test_gem_commands_info_command.rb +6 -6
  257. data/test/rubygems/test_gem_commands_install_command.rb +31 -31
  258. data/test/rubygems/test_gem_commands_mirror.rb +1 -1
  259. data/test/rubygems/test_gem_commands_open_command.rb +4 -4
  260. data/test/rubygems/test_gem_commands_owner_command.rb +11 -3
  261. data/test/rubygems/test_gem_commands_pristine_command.rb +41 -8
  262. data/test/rubygems/test_gem_commands_push_command.rb +7 -2
  263. data/test/rubygems/test_gem_commands_query_command.rb +9 -5
  264. data/test/rubygems/test_gem_commands_setup_command.rb +160 -108
  265. data/test/rubygems/test_gem_commands_signin_command.rb +6 -4
  266. data/test/rubygems/test_gem_commands_signout_command.rb +0 -5
  267. data/test/rubygems/test_gem_commands_specification_command.rb +18 -18
  268. data/test/rubygems/test_gem_commands_uninstall_command.rb +1 -1
  269. data/test/rubygems/test_gem_commands_update_command.rb +68 -5
  270. data/test/rubygems/test_gem_commands_which_command.rb +3 -3
  271. data/test/rubygems/test_gem_commands_yank_command.rb +14 -6
  272. data/test/rubygems/test_gem_config_file.rb +7 -10
  273. data/test/rubygems/test_gem_dependency_installer.rb +52 -189
  274. data/test/rubygems/test_gem_dependency_list.rb +8 -8
  275. data/test/rubygems/test_gem_dependency_resolution_error.rb +1 -1
  276. data/test/rubygems/test_gem_doctor.rb +28 -0
  277. data/test/rubygems/test_gem_ext_builder.rb +14 -25
  278. data/test/rubygems/test_gem_ext_cmake_builder.rb +13 -12
  279. data/test/rubygems/test_gem_ext_configure_builder.rb +1 -9
  280. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -1
  281. data/test/rubygems/test_gem_ext_rake_builder.rb +9 -9
  282. data/test/rubygems/test_gem_gem_runner.rb +42 -0
  283. data/test/rubygems/test_gem_gemcutter_utilities.rb +5 -0
  284. data/test/rubygems/test_gem_indexer.rb +9 -13
  285. data/test/rubygems/test_gem_installer.rb +149 -45
  286. data/test/rubygems/test_gem_package.rb +13 -12
  287. data/test/rubygems/test_gem_package_tar_header.rb +19 -0
  288. data/test/rubygems/test_gem_package_tar_writer.rb +3 -3
  289. data/test/rubygems/test_gem_package_task.rb +46 -11
  290. data/test/rubygems/test_gem_remote_fetcher.rb +152 -190
  291. data/test/rubygems/test_gem_request.rb +11 -11
  292. data/test/rubygems/test_gem_request_set.rb +20 -20
  293. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +3 -3
  294. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +9 -9
  295. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +118 -118
  296. data/test/rubygems/test_gem_requirement.rb +2 -2
  297. data/test/rubygems/test_gem_resolver.rb +6 -6
  298. data/test/rubygems/test_gem_resolver_api_set.rb +3 -3
  299. data/test/rubygems/test_gem_resolver_best_set.rb +2 -2
  300. data/test/rubygems/test_gem_resolver_index_set.rb +2 -2
  301. data/test/rubygems/test_gem_resolver_installer_set.rb +7 -7
  302. data/test/rubygems/test_gem_resolver_lock_set.rb +3 -3
  303. data/test/rubygems/test_gem_security.rb +20 -20
  304. data/test/rubygems/test_gem_security_policy.rb +5 -8
  305. data/test/rubygems/test_gem_security_signer.rb +8 -8
  306. data/test/rubygems/test_gem_security_trust_dir.rb +2 -2
  307. data/test/rubygems/test_gem_server.rb +10 -10
  308. data/test/rubygems/test_gem_source.rb +12 -14
  309. data/test/rubygems/test_gem_source_git.rb +12 -11
  310. data/test/rubygems/test_gem_source_installed.rb +7 -7
  311. data/test/rubygems/test_gem_source_local.rb +8 -8
  312. data/test/rubygems/test_gem_source_lock.rb +10 -10
  313. data/test/rubygems/test_gem_source_specific_file.rb +7 -7
  314. data/test/rubygems/test_gem_source_vendor.rb +7 -7
  315. data/test/rubygems/test_gem_spec_fetcher.rb +11 -2
  316. data/test/rubygems/test_gem_specification.rb +143 -113
  317. data/test/rubygems/test_gem_stream_ui.rb +3 -1
  318. data/test/rubygems/test_gem_text.rb +1 -1
  319. data/test/rubygems/test_gem_uninstaller.rb +134 -10
  320. data/test/rubygems/test_gem_util.rb +7 -5
  321. data/test/rubygems/test_gem_version.rb +1 -1
  322. data/test/rubygems/test_kernel.rb +10 -12
  323. data/test/rubygems/test_project_sanity.rb +8 -1
  324. data/test/rubygems/test_require.rb +141 -43
  325. metadata +32 -45
  326. data/.bundle/config +0 -2
  327. data/.rubocop.yml +0 -91
  328. data/Gemfile +0 -8
  329. data/Gemfile.lock +0 -43
  330. data/bundler/CODE_OF_CONDUCT.md +0 -136
  331. data/lib/rubygems/source_local.rb +0 -7
  332. data/lib/rubygems/source_specific_file.rb +0 -6
  333. data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem +0 -21
  334. data/lib/ubygems.rb +0 -14
  335. data/tmp/.keep +0 -0
  336. data/util/CL2notes +0 -55
  337. data/util/bisect +0 -10
  338. data/util/ci.sh +0 -62
  339. data/util/cops/deprecations.rb +0 -52
  340. data/util/create_certs.rb +0 -171
  341. data/util/create_certs.sh +0 -27
  342. data/util/create_encrypted_key.rb +0 -16
  343. data/util/generate_spdx_license_list.rb +0 -63
  344. data/util/patch_with_prs.rb +0 -77
  345. data/util/rubocop +0 -8
  346. data/util/update_bundled_ca_certificates.rb +0 -137
  347. data/util/update_changelog.rb +0 -64
@@ -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" "January 2020" "" ""
4
+ .TH "BUNDLE\-PRISTINE" "1" "July 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
@@ -1,4 +1,4 @@
1
- BUNDLE-PRISTINE(1) BUNDLE-PRISTINE(1)
1
+ BUNDLE-PRISTINE(1) BUNDLE-PRISTINE(1)
2
2
 
3
3
 
4
4
 
@@ -9,7 +9,7 @@ SYNOPSIS
9
9
  bundle pristine
10
10
 
11
11
  DESCRIPTION
12
- pristine restores the installed gems in the bundle to their pristine
12
+ pristine restores the installed gems in the bundle to their pristine
13
13
  condition using the local gem cache from RubyGems. For git gems, a
14
14
  forced checkout will be performed.
15
15
 
@@ -18,8 +18,8 @@ DESCRIPTION
18
18
  gem's git repository as if one were installing from scratch.
19
19
 
20
20
  Note: the Bundler gem cannot be restored to its original state with
21
- pristine. One also cannot use bundle pristine on gems with a 'path'
22
- option in the Gemfile, because bundler has no original copy it can
21
+ pristine. One also cannot use bundle pristine on gems with a 'path'
22
+ option in the Gemfile, because bundler has no original copy it can
23
23
  restore from.
24
24
 
25
25
  When is it practical to use bundle pristine?
@@ -35,10 +35,10 @@ DESCRIPTION
35
35
  --all cleans all installed gems for that Ruby version.
36
36
 
37
37
  If a developer forgets which gems in their project they might have been
38
- debugging, the Rubygems gem pristine [GEMNAME] command may be inconve-
39
- nient. One can avoid waiting for gem pristine --all, and instead run
40
- bundle pristine.
38
+ debugging, the Rubygems gem pristine [GEMNAME] command may be
39
+ inconvenient. One can avoid waiting for gem pristine --all, and instead
40
+ run bundle pristine.
41
41
 
42
42
 
43
43
 
44
- January 2020 BUNDLE-PRISTINE(1)
44
+ July 2020 BUNDLE-PRISTINE(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 "BUNDLE\-REMOVE" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-REMOVE" "1" "July 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-remove\fR \- Removes gems from the Gemfile
@@ -1,4 +1,4 @@
1
- BUNDLE-REMOVE(1) BUNDLE-REMOVE(1)
1
+ BUNDLE-REMOVE(1) BUNDLE-REMOVE(1)
2
2
 
3
3
 
4
4
 
@@ -9,17 +9,17 @@ SYNOPSIS
9
9
  bundle remove [GEM [GEM ...]] [--install]
10
10
 
11
11
  DESCRIPTION
12
- Removes the given gems from the Gemfile while ensuring that the result-
13
- ing Gemfile is still valid. If a gem cannot be removed, a warning is
14
- printed. If a gem is already absent from the Gemfile, and error is
12
+ Removes the given gems from the Gemfile while ensuring that the
13
+ resulting Gemfile is still valid. If a gem cannot be removed, a warning
14
+ is printed. If a gem is already absent from the Gemfile, and error is
15
15
  raised.
16
16
 
17
17
  OPTIONS
18
18
  --install
19
- Runs bundle install after the given gems have been removed from
20
- the Gemfile, which ensures that both the lockfile and the
21
- installed gems on disk are also updated to remove the given
22
- gem(s).
19
+ Runs bundle install after the given gems have been removed from
20
+ the Gemfile, which ensures that both the lockfile and the
21
+ installed gems on disk are also updated to remove the given
22
+ gem(s).
23
23
 
24
24
  Example:
25
25
 
@@ -31,4 +31,4 @@ OPTIONS
31
31
 
32
32
 
33
33
 
34
- January 2020 BUNDLE-REMOVE(1)
34
+ July 2020 BUNDLE-REMOVE(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 "BUNDLE\-SHOW" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-SHOW" "1" "July 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,4 +1,4 @@
1
- BUNDLE-SHOW(1) BUNDLE-SHOW(1)
1
+ BUNDLE-SHOW(1) BUNDLE-SHOW(1)
2
2
 
3
3
 
4
4
 
@@ -9,19 +9,19 @@ SYNOPSIS
9
9
  bundle show [GEM] [--paths]
10
10
 
11
11
  DESCRIPTION
12
- Without the [GEM] option, show will print a list of the names and ver-
13
- sions of all gems that are required by your [Gemfile(5)][Gemfile(5)],
14
- sorted by name.
12
+ Without the [GEM] option, show will print a list of the names and
13
+ versions of all gems that are required by your
14
+ [Gemfile(5)][Gemfile(5)], sorted by name.
15
15
 
16
- Calling show with [GEM] will list the exact location of that gem on
16
+ Calling show with [GEM] will list the exact location of that gem on
17
17
  your machine.
18
18
 
19
19
  OPTIONS
20
20
  --paths
21
- List the paths of all gems that are required by your [Gem-
22
- file(5)][Gemfile(5)], sorted by gem name.
21
+ List the paths of all gems that are required by your
22
+ [Gemfile(5)][Gemfile(5)], sorted by gem name.
23
23
 
24
24
 
25
25
 
26
26
 
27
- January 2020 BUNDLE-SHOW(1)
27
+ July 2020 BUNDLE-SHOW(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 "BUNDLE\-UPDATE" "1" "January 2020" "" ""
4
+ .TH "BUNDLE\-UPDATE" "1" "July 2020" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-update\fR \- Update your gems to the latest available versions
@@ -1,4 +1,4 @@
1
- BUNDLE-UPDATE(1) BUNDLE-UPDATE(1)
1
+ BUNDLE-UPDATE(1) BUNDLE-UPDATE(1)
2
2
 
3
3
 
4
4
 
@@ -12,9 +12,9 @@ SYNOPSIS
12
12
 
13
13
  DESCRIPTION
14
14
  Update the gems specified (all gems, if --all flag is used), ignoring
15
- the previously installed gems specified in the Gemfile.lock. In gen-
16
- eral, you should use bundle install(1) bundle-install.1.html to install
17
- the same exact gems and versions across machines.
15
+ the previously installed gems specified in the Gemfile.lock. In
16
+ general, you should use bundle install(1) bundle-install.1.html to
17
+ install the same exact gems and versions across machines.
18
18
 
19
19
  You would use bundle update to explicitly update the version of a gem.
20
20
 
@@ -22,114 +22,114 @@ OPTIONS
22
22
  --all Update all gems specified in Gemfile.
23
23
 
24
24
  --group=<name>, -g=[<name>]
25
- Only update the gems in the specified group. For instance, you
26
- can update all gems in the development group with bundle update
27
- --group development. You can also call bundle update rails
28
- --group test to update the rails gem and all gems in the test
29
- group, for example.
25
+ Only update the gems in the specified group. For instance, you
26
+ can update all gems in the development group with bundle update
27
+ --group development. You can also call bundle update rails
28
+ --group test to update the rails gem and all gems in the test
29
+ group, for example.
30
30
 
31
31
  --source=<name>
32
- The name of a :git or :path source used in the Gemfile(5). For
33
- instance, with a :git source of
34
- http://github.com/rails/rails.git, you would call bundle update
35
- --source rails
32
+ The name of a :git or :path source used in the Gemfile(5). For
33
+ instance, with a :git source of
34
+ http://github.com/rails/rails.git, you would call bundle update
35
+ --source rails
36
36
 
37
37
  --local
38
- Do not attempt to fetch gems remotely and use the gem cache
39
- instead.
38
+ Do not attempt to fetch gems remotely and use the gem cache
39
+ instead.
40
40
 
41
41
  --ruby Update the locked version of Ruby to the current version of
42
- Ruby.
42
+ Ruby.
43
43
 
44
44
  --bundler
45
- Update the locked version of bundler to the invoked bundler ver-
46
- sion.
45
+ Update the locked version of bundler to the invoked bundler
46
+ version.
47
47
 
48
48
  --full-index
49
- Fall back to using the single-file index of all gems.
49
+ Fall back to using the single-file index of all gems.
50
50
 
51
51
  --jobs=[<number>], -j[<number>]
52
- Specify the number of jobs to run in parallel. The default is 1.
52
+ Specify the number of jobs to run in parallel. The default is 1.
53
53
 
54
54
  --retry=[<number>]
55
- Retry failed network or git requests for number times.
55
+ Retry failed network or git requests for number times.
56
56
 
57
57
  --quiet
58
- Only output warnings and errors.
58
+ Only output warnings and errors.
59
59
 
60
60
  --redownload
61
- Force downloading every gem.
61
+ Force downloading every gem.
62
62
 
63
63
  --patch
64
- Prefer updating only to next patch version.
64
+ Prefer updating only to next patch version.
65
65
 
66
66
  --minor
67
- Prefer updating only to next minor version.
67
+ Prefer updating only to next minor version.
68
68
 
69
69
  --major
70
- Prefer updating to next major version (default).
70
+ Prefer updating to next major version (default).
71
71
 
72
72
  --strict
73
- Do not allow any gem to be updated past latest --patch | --minor
74
- | --major.
73
+ Do not allow any gem to be updated past latest --patch | --minor
74
+ | --major.
75
75
 
76
76
  --conservative
77
- Use bundle install conservative update behavior and do not allow
78
- shared dependencies to be updated.
77
+ Use bundle install conservative update behavior and do not allow
78
+ shared dependencies to be updated.
79
79
 
80
80
  UPDATING ALL GEMS
81
- If you run bundle update --all, bundler will ignore any previously
82
- installed gems and resolve all dependencies again based on the latest
81
+ If you run bundle update --all, bundler will ignore any previously
82
+ installed gems and resolve all dependencies again based on the latest
83
83
  versions of all gems available in the sources.
84
84
 
85
85
  Consider the following Gemfile(5):
86
86
 
87
87
 
88
88
 
89
- source "https://rubygems.org"
89
+ source "https://rubygems.org"
90
90
 
91
- gem "rails", "3.0.0.rc"
92
- gem "nokogiri"
91
+ gem "rails", "3.0.0.rc"
92
+ gem "nokogiri"
93
93
 
94
94
 
95
95
 
96
96
  When you run bundle install(1) bundle-install.1.html the first time,
97
- bundler will resolve all of the dependencies, all the way down, and
97
+ bundler will resolve all of the dependencies, all the way down, and
98
98
  install what you need:
99
99
 
100
100
 
101
101
 
102
- Fetching gem metadata from https://rubygems.org/.........
103
- Resolving dependencies...
104
- Installing builder 2.1.2
105
- Installing abstract 1.0.0
106
- Installing rack 1.2.8
107
- Using bundler 1.7.6
108
- Installing rake 10.4.0
109
- Installing polyglot 0.3.5
110
- Installing mime-types 1.25.1
111
- Installing i18n 0.4.2
112
- Installing mini_portile 0.6.1
113
- Installing tzinfo 0.3.42
114
- Installing rack-mount 0.6.14
115
- Installing rack-test 0.5.7
116
- Installing treetop 1.4.15
117
- Installing thor 0.14.6
118
- Installing activesupport 3.0.0.rc
119
- Installing erubis 2.6.6
120
- Installing activemodel 3.0.0.rc
121
- Installing arel 0.4.0
122
- Installing mail 2.2.20
123
- Installing activeresource 3.0.0.rc
124
- Installing actionpack 3.0.0.rc
125
- Installing activerecord 3.0.0.rc
126
- Installing actionmailer 3.0.0.rc
127
- Installing railties 3.0.0.rc
128
- Installing rails 3.0.0.rc
129
- Installing nokogiri 1.6.5
130
-
131
- Bundle complete! 2 Gemfile dependencies, 26 gems total.
132
- Use `bundle show [gemname]` to see where a bundled gem is installed.
102
+ Fetching gem metadata from https://rubygems.org/.........
103
+ Resolving dependencies...
104
+ Installing builder 2.1.2
105
+ Installing abstract 1.0.0
106
+ Installing rack 1.2.8
107
+ Using bundler 1.7.6
108
+ Installing rake 10.4.0
109
+ Installing polyglot 0.3.5
110
+ Installing mime-types 1.25.1
111
+ Installing i18n 0.4.2
112
+ Installing mini_portile 0.6.1
113
+ Installing tzinfo 0.3.42
114
+ Installing rack-mount 0.6.14
115
+ Installing rack-test 0.5.7
116
+ Installing treetop 1.4.15
117
+ Installing thor 0.14.6
118
+ Installing activesupport 3.0.0.rc
119
+ Installing erubis 2.6.6
120
+ Installing activemodel 3.0.0.rc
121
+ Installing arel 0.4.0
122
+ Installing mail 2.2.20
123
+ Installing activeresource 3.0.0.rc
124
+ Installing actionpack 3.0.0.rc
125
+ Installing activerecord 3.0.0.rc
126
+ Installing actionmailer 3.0.0.rc
127
+ Installing railties 3.0.0.rc
128
+ Installing rails 3.0.0.rc
129
+ Installing nokogiri 1.6.5
130
+
131
+ Bundle complete! 2 Gemfile dependencies, 26 gems total.
132
+ Use `bundle show [gemname]` to see where a bundled gem is installed.
133
133
 
134
134
 
135
135
 
@@ -146,13 +146,13 @@ UPDATING ALL GEMS
146
146
  use.
147
147
 
148
148
  However, from time to time, you might want to update the gems you are
149
- using to the newest versions that still match the gems in your Gem-
150
- file(5).
149
+ using to the newest versions that still match the gems in your
150
+ Gemfile(5).
151
151
 
152
- To do this, run bundle update --all, which will ignore the Gem-
153
- file.lock, and resolve all the dependencies again. Keep in mind that
152
+ To do this, run bundle update --all, which will ignore the
153
+ Gemfile.lock, and resolve all the dependencies again. Keep in mind that
154
154
  this process can result in a significantly different set of the 25
155
- gems, based on the requirements of new gems that the gem authors
155
+ gems, based on the requirements of new gems that the gem authors
156
156
  released since the last time you ran bundle update --all.
157
157
 
158
158
  UPDATING A LIST OF GEMS
@@ -164,7 +164,7 @@ UPDATING A LIST OF GEMS
164
164
  version 1.4.4, and you want to update it without updating Rails and all
165
165
  of its dependencies. To do this, run bundle update nokogiri.
166
166
 
167
- Bundler will update nokogiri and any of its dependencies, but leave
167
+ Bundler will update nokogiri and any of its dependencies, but leave
168
168
  alone Rails and its dependencies.
169
169
 
170
170
  OVERLAPPING DEPENDENCIES
@@ -174,34 +174,34 @@ OVERLAPPING DEPENDENCIES
174
174
 
175
175
 
176
176
 
177
- source "https://rubygems.org"
177
+ source "https://rubygems.org"
178
178
 
179
- gem "thin"
180
- gem "rack-perftools-profiler"
179
+ gem "thin"
180
+ gem "rack-perftools-profiler"
181
181
 
182
182
 
183
183
 
184
- The thin gem depends on rack >= 1.0, while rack-perftools-profiler
184
+ The thin gem depends on rack >= 1.0, while rack-perftools-profiler
185
185
  depends on rack ~> 1.0. If you run bundle install, you get:
186
186
 
187
187
 
188
188
 
189
- Fetching source index for https://rubygems.org/
190
- Installing daemons (1.1.0)
191
- Installing eventmachine (0.12.10) with native extensions
192
- Installing open4 (1.0.1)
193
- Installing perftools.rb (0.4.7) with native extensions
194
- Installing rack (1.2.1)
195
- Installing rack-perftools_profiler (0.0.2)
196
- Installing thin (1.2.7) with native extensions
197
- Using bundler (1.0.0.rc.3)
189
+ Fetching source index for https://rubygems.org/
190
+ Installing daemons (1.1.0)
191
+ Installing eventmachine (0.12.10) with native extensions
192
+ Installing open4 (1.0.1)
193
+ Installing perftools.rb (0.4.7) with native extensions
194
+ Installing rack (1.2.1)
195
+ Installing rack-perftools_profiler (0.0.2)
196
+ Installing thin (1.2.7) with native extensions
197
+ Using bundler (1.0.0.rc.3)
198
198
 
199
199
 
200
200
 
201
201
  In this case, the two gems have their own set of dependencies, but they
202
- share rack in common. If you run bundle update thin, bundler will
202
+ share rack in common. If you run bundle update thin, bundler will
203
203
  update daemons, eventmachine and rack, which are dependencies of thin,
204
- but not open4 or perftools.rb, which are dependencies of
204
+ but not open4 or perftools.rb, which are dependencies of
205
205
  rack-perftools_profiler. Note that bundle update thin will update rack
206
206
  even though it's also a dependency of rack-perftools_profiler.
207
207
 
@@ -210,85 +210,85 @@ OVERLAPPING DEPENDENCIES
210
210
  are also dependencies of another gem.
211
211
 
212
212
  To prevent updating shared dependencies, prior to version 1.14 the only
213
- option was the CONSERVATIVE UPDATING behavior in bundle install(1) bun-
214
- dle-install.1.html:
213
+ option was the CONSERVATIVE UPDATING behavior in bundle install(1)
214
+ bundle-install.1.html:
215
215
 
216
216
  In this scenario, updating the thin version manually in the Gemfile(5),
217
217
  and then running bundle install(1) bundle-install.1.html will only
218
- update daemons and eventmachine, but not rack. For more information,
219
- see the CONSERVATIVE UPDATING section of bundle install(1) bun-
220
- dle-install.1.html.
218
+ update daemons and eventmachine, but not rack. For more information,
219
+ see the CONSERVATIVE UPDATING section of bundle install(1)
220
+ bundle-install.1.html.
221
221
 
222
- Starting with 1.14, specifying the --conservative option will also pre-
223
- vent shared dependencies from being updated.
222
+ Starting with 1.14, specifying the --conservative option will also
223
+ prevent shared dependencies from being updated.
224
224
 
225
225
  PATCH LEVEL OPTIONS
226
- Version 1.14 introduced 4 patch-level options that will influence how
226
+ Version 1.14 introduced 4 patch-level options that will influence how
227
227
  gem versions are resolved. One of the following options can be used:
228
228
  --patch, --minor or --major. --strict can be added to further influence
229
229
  resolution.
230
230
 
231
231
  --patch
232
- Prefer updating only to next patch version.
232
+ Prefer updating only to next patch version.
233
233
 
234
234
  --minor
235
- Prefer updating only to next minor version.
235
+ Prefer updating only to next minor version.
236
236
 
237
237
  --major
238
- Prefer updating to next major version (default).
238
+ Prefer updating to next major version (default).
239
239
 
240
240
  --strict
241
- Do not allow any gem to be updated past latest --patch | --minor
242
- | --major.
241
+ Do not allow any gem to be updated past latest --patch | --minor
242
+ | --major.
243
243
 
244
- When Bundler is resolving what versions to use to satisfy declared
245
- requirements in the Gemfile or in parent gems, it looks up all avail-
246
- able versions, filters out any versions that don't satisfy the require-
247
- ment, and then, by default, sorts them from newest to oldest, consider-
248
- ing them in that order.
244
+ When Bundler is resolving what versions to use to satisfy declared
245
+ requirements in the Gemfile or in parent gems, it looks up all
246
+ available versions, filters out any versions that don't satisfy the
247
+ requirement, and then, by default, sorts them from newest to oldest,
248
+ considering them in that order.
249
249
 
250
- Providing one of the patch level options (e.g. --patch) changes the
250
+ Providing one of the patch level options (e.g. --patch) changes the
251
251
  sort order of the satisfying versions, causing Bundler to consider the
252
252
  latest --patch or --minor version available before other versions. Note
253
253
  that versions outside the stated patch level could still be resolved to
254
254
  if necessary to find a suitable dependency graph.
255
255
 
256
256
  For example, if gem 'foo' is locked at 1.0.2, with no gem requirement
257
- defined in the Gemfile, and versions 1.0.3, 1.0.4, 1.1.0, 1.1.1, 2.0.0
257
+ defined in the Gemfile, and versions 1.0.3, 1.0.4, 1.1.0, 1.1.1, 2.0.0
258
258
  all exist, the default order of preference by default (--major) will be
259
259
  "2.0.0, 1.1.1, 1.1.0, 1.0.4, 1.0.3, 1.0.2".
260
260
 
261
- If the --patch option is used, the order of preference will change to
261
+ If the --patch option is used, the order of preference will change to
262
262
  "1.0.4, 1.0.3, 1.0.2, 1.1.1, 1.1.0, 2.0.0".
263
263
 
264
264
  If the --minor option is used, the order of preference will change to
265
265
  "1.1.1, 1.1.0, 1.0.4, 1.0.3, 1.0.2, 2.0.0".
266
266
 
267
267
  Combining the --strict option with any of the patch level options will
268
- remove any versions beyond the scope of the patch level option, to
268
+ remove any versions beyond the scope of the patch level option, to
269
269
  ensure that no gem is updated that far.
270
270
 
271
271
  To continue the previous example, if both --patch and --strict options
272
272
  are used, the available versions for resolution would be "1.0.4, 1.0.3,
273
- 1.0.2". If --minor and --strict are used, it would be "1.1.1, 1.1.0,
273
+ 1.0.2". If --minor and --strict are used, it would be "1.1.1, 1.1.0,
274
274
  1.0.4, 1.0.3, 1.0.2".
275
275
 
276
- Gem requirements as defined in the Gemfile will still be the first
277
- determining factor for what versions are available. If the gem require-
278
- ment for foo in the Gemfile is '~> 1.0', that will accomplish the same
279
- thing as providing the --minor and --strict options.
276
+ Gem requirements as defined in the Gemfile will still be the first
277
+ determining factor for what versions are available. If the gem
278
+ requirement for foo in the Gemfile is '~> 1.0', that will accomplish
279
+ the same thing as providing the --minor and --strict options.
280
280
 
281
281
  PATCH LEVEL EXAMPLES
282
282
  Given the following gem specifications:
283
283
 
284
284
 
285
285
 
286
- foo 1.4.3, requires: ~> bar 2.0
287
- foo 1.4.4, requires: ~> bar 2.0
288
- foo 1.4.5, requires: ~> bar 2.1
289
- foo 1.5.0, requires: ~> bar 2.1
290
- foo 1.5.1, requires: ~> bar 3.0
291
- bar with versions 2.0.3, 2.0.4, 2.1.0, 2.1.1, 3.0.0
286
+ foo 1.4.3, requires: ~> bar 2.0
287
+ foo 1.4.4, requires: ~> bar 2.0
288
+ foo 1.4.5, requires: ~> bar 2.1
289
+ foo 1.5.0, requires: ~> bar 2.1
290
+ foo 1.5.1, requires: ~> bar 3.0
291
+ bar with versions 2.0.3, 2.0.4, 2.1.0, 2.1.1, 3.0.0
292
292
 
293
293
 
294
294
 
@@ -296,7 +296,7 @@ PATCH LEVEL EXAMPLES
296
296
 
297
297
 
298
298
 
299
- gem 'foo'
299
+ gem 'foo'
300
300
 
301
301
 
302
302
 
@@ -304,9 +304,9 @@ PATCH LEVEL EXAMPLES
304
304
 
305
305
 
306
306
 
307
- foo (1.4.3)
308
- bar (~> 2.0)
309
- bar (2.0.3)
307
+ foo (1.4.3)
308
+ bar (~> 2.0)
309
+ bar (2.0.3)
310
310
 
311
311
 
312
312
 
@@ -314,13 +314,13 @@ PATCH LEVEL EXAMPLES
314
314
 
315
315
 
316
316
 
317
- # Command Line Result
318
- ------------------------------------------------------------
319
- 1 bundle update --patch 'foo 1.4.5', 'bar 2.1.1'
320
- 2 bundle update --patch foo 'foo 1.4.5', 'bar 2.1.1'
321
- 3 bundle update --minor 'foo 1.5.1', 'bar 3.0.0'
322
- 4 bundle update --minor --strict 'foo 1.5.0', 'bar 2.1.1'
323
- 5 bundle update --patch --strict 'foo 1.4.4', 'bar 2.0.4'
317
+ # Command Line Result
318
+ ------------------------------------------------------------
319
+ 1 bundle update --patch 'foo 1.4.5', 'bar 2.1.1'
320
+ 2 bundle update --patch foo 'foo 1.4.5', 'bar 2.1.1'
321
+ 3 bundle update --minor 'foo 1.5.1', 'bar 3.0.0'
322
+ 4 bundle update --minor --strict 'foo 1.5.0', 'bar 2.1.1'
323
+ 5 bundle update --patch --strict 'foo 1.4.4', 'bar 2.0.4'
324
324
 
325
325
 
326
326
 
@@ -348,43 +348,44 @@ RECOMMENDED WORKFLOW
348
348
 
349
349
  o After you create your Gemfile(5) for the first time, run
350
350
 
351
- $ bundle install
351
+ $ bundle install
352
352
 
353
353
  o Check the resulting Gemfile.lock into version control
354
354
 
355
- $ git add Gemfile.lock
355
+ $ git add Gemfile.lock
356
356
 
357
357
  o When checking out this repository on another development machine,
358
- run
358
+ run
359
359
 
360
- $ bundle install
360
+ $ bundle install
361
361
 
362
362
  o When checking out this repository on a deployment machine, run
363
363
 
364
- $ bundle install --deployment
364
+ $ bundle install --deployment
365
365
 
366
- o After changing the Gemfile(5) to reflect a new or update depen-
367
- dency, run
366
+ o After changing the Gemfile(5) to reflect a new or update
367
+ dependency, run
368
368
 
369
- $ bundle install
369
+ $ bundle install
370
370
 
371
371
  o Make sure to check the updated Gemfile.lock into version control
372
372
 
373
- $ git add Gemfile.lock
373
+ $ git add Gemfile.lock
374
374
 
375
- o If bundle install(1) bundle-install.1.html reports a conflict, man-
376
- ually update the specific gems that you changed in the Gemfile(5)
375
+ o If bundle install(1) bundle-install.1.html reports a conflict,
376
+ manually update the specific gems that you changed in the
377
+ Gemfile(5)
377
378
 
378
- $ bundle update rails thin
379
+ $ bundle update rails thin
379
380
 
380
- o If you want to update all the gems to the latest possible versions
381
- that still match the gems listed in the Gemfile(5), run
381
+ o If you want to update all the gems to the latest possible versions
382
+ that still match the gems listed in the Gemfile(5), run
382
383
 
383
- $ bundle update --all
384
+ $ bundle update --all
384
385
 
385
386
 
386
387
 
387
388
 
388
389
 
389
390
 
390
- January 2020 BUNDLE-UPDATE(1)
391
+ July 2020 BUNDLE-UPDATE(1)