rubygems-update 3.1.1 → 3.2.0.rc.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (518) hide show
  1. checksums.yaml +4 -4
  2. data/CODE_OF_CONDUCT.md +55 -19
  3. data/CONTRIBUTING.md +25 -11
  4. data/History.txt +389 -144
  5. data/Manifest.txt +37 -73
  6. data/POLICIES.md +2 -9
  7. data/README.md +5 -5
  8. data/Rakefile +47 -82
  9. data/bin/update_rubygems +2 -2
  10. data/bundler/CHANGELOG.md +1546 -1414
  11. data/bundler/README.md +6 -8
  12. data/bundler/UPGRADING.md +18 -32
  13. data/bundler/bundler.gemspec +3 -3
  14. data/bundler/exe/bundle +3 -0
  15. data/bundler/lib/bundler.rb +21 -7
  16. data/bundler/lib/bundler/build_metadata.rb +4 -12
  17. data/bundler/lib/bundler/cli.rb +54 -20
  18. data/bundler/lib/bundler/cli/add.rb +1 -1
  19. data/bundler/lib/bundler/cli/cache.rb +1 -7
  20. data/bundler/lib/bundler/cli/clean.rb +1 -1
  21. data/bundler/lib/bundler/cli/common.rb +14 -0
  22. data/bundler/lib/bundler/cli/console.rb +1 -1
  23. data/bundler/lib/bundler/cli/doctor.rb +1 -1
  24. data/bundler/lib/bundler/cli/exec.rb +4 -13
  25. data/bundler/lib/bundler/cli/fund.rb +36 -0
  26. data/bundler/lib/bundler/cli/gem.rb +84 -11
  27. data/bundler/lib/bundler/cli/info.rb +15 -4
  28. data/bundler/lib/bundler/cli/init.rb +2 -2
  29. data/bundler/lib/bundler/cli/inject.rb +1 -1
  30. data/bundler/lib/bundler/cli/install.rb +12 -18
  31. data/bundler/lib/bundler/cli/issue.rb +2 -2
  32. data/bundler/lib/bundler/cli/list.rb +12 -10
  33. data/bundler/lib/bundler/cli/outdated.rb +89 -66
  34. data/bundler/lib/bundler/cli/plugin.rb +10 -0
  35. data/bundler/lib/bundler/cli/pristine.rb +5 -0
  36. data/bundler/lib/bundler/cli/show.rb +1 -1
  37. data/bundler/lib/bundler/cli/update.rb +2 -0
  38. data/bundler/lib/bundler/compact_index_client.rb +1 -1
  39. data/bundler/lib/bundler/compact_index_client/cache.rb +1 -1
  40. data/bundler/lib/bundler/definition.rb +51 -60
  41. data/bundler/lib/bundler/dep_proxy.rb +1 -1
  42. data/bundler/lib/bundler/dependency.rb +0 -9
  43. data/bundler/lib/bundler/dsl.rb +5 -9
  44. data/bundler/lib/bundler/endpoint_specification.rb +1 -1
  45. data/bundler/lib/bundler/environment_preserver.rb +26 -2
  46. data/bundler/lib/bundler/errors.rb +1 -0
  47. data/bundler/lib/bundler/feature_flag.rb +0 -2
  48. data/bundler/lib/bundler/fetcher.rb +4 -3
  49. data/bundler/lib/bundler/fetcher/base.rb +1 -1
  50. data/bundler/lib/bundler/fetcher/compact_index.rb +1 -1
  51. data/bundler/lib/bundler/fetcher/downloader.rb +1 -1
  52. data/bundler/lib/bundler/fetcher/index.rb +1 -1
  53. data/bundler/lib/bundler/friendly_errors.rb +7 -13
  54. data/bundler/lib/bundler/gem_helper.rb +33 -19
  55. data/bundler/lib/bundler/gem_helpers.rb +6 -1
  56. data/bundler/lib/bundler/gem_version_promoter.rb +2 -2
  57. data/bundler/lib/bundler/graph.rb +1 -1
  58. data/bundler/lib/bundler/index.rb +1 -1
  59. data/bundler/lib/bundler/injector.rb +15 -4
  60. data/bundler/lib/bundler/inline.rb +2 -2
  61. data/bundler/lib/bundler/installer.rb +30 -29
  62. data/bundler/lib/bundler/installer/gem_installer.rb +3 -3
  63. data/bundler/lib/bundler/installer/parallel_installer.rb +10 -10
  64. data/bundler/lib/bundler/installer/standalone.rb +2 -2
  65. data/bundler/lib/bundler/lazy_specification.rb +19 -6
  66. data/bundler/lib/bundler/lockfile_generator.rb +1 -1
  67. data/bundler/lib/bundler/lockfile_parser.rb +1 -1
  68. data/bundler/lib/bundler/mirror.rb +2 -2
  69. data/bundler/lib/bundler/plugin.rb +30 -5
  70. data/bundler/lib/bundler/plugin/index.rb +10 -1
  71. data/bundler/lib/bundler/plugin/installer.rb +1 -1
  72. data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -1
  73. data/bundler/lib/bundler/plugin/source_list.rb +1 -1
  74. data/bundler/lib/bundler/psyched_yaml.rb +0 -15
  75. data/bundler/lib/bundler/remote_specification.rb +5 -2
  76. data/bundler/lib/bundler/resolver.rb +32 -9
  77. data/bundler/lib/bundler/resolver/spec_group.rb +27 -6
  78. data/bundler/lib/bundler/retry.rb +1 -1
  79. data/bundler/lib/bundler/ruby_version.rb +1 -1
  80. data/bundler/lib/bundler/rubygems_ext.rb +53 -9
  81. data/bundler/lib/bundler/rubygems_gem_installer.rb +3 -9
  82. data/bundler/lib/bundler/rubygems_integration.rb +31 -54
  83. data/bundler/lib/bundler/runtime.rb +4 -14
  84. data/bundler/lib/bundler/settings.rb +49 -45
  85. data/bundler/lib/bundler/setup.rb +5 -0
  86. data/bundler/lib/bundler/shared_helpers.rb +2 -2
  87. data/bundler/lib/bundler/similarity_detector.rb +1 -1
  88. data/bundler/lib/bundler/source.rb +1 -1
  89. data/bundler/lib/bundler/source/git.rb +5 -5
  90. data/bundler/lib/bundler/source/git/git_proxy.rb +56 -59
  91. data/bundler/lib/bundler/source/path.rb +7 -3
  92. data/bundler/lib/bundler/source/path/installer.rb +8 -10
  93. data/bundler/lib/bundler/source/rubygems.rb +13 -16
  94. data/bundler/lib/bundler/source/rubygems/remote.rb +1 -1
  95. data/bundler/lib/bundler/source_list.rb +2 -2
  96. data/bundler/lib/bundler/spec_set.rb +1 -1
  97. data/bundler/lib/bundler/stub_specification.rb +17 -5
  98. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  99. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +9 -1
  100. data/bundler/lib/bundler/templates/newgem/README.md.tt +1 -1
  101. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +19 -5
  102. data/bundler/lib/bundler/templates/newgem/bin/console.tt +1 -0
  103. data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  104. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  105. data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
  106. data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  107. data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -0
  108. data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  109. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +8 -6
  110. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
  111. data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  112. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
  113. data/bundler/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  114. data/bundler/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  115. data/bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  116. data/bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  117. data/bundler/lib/bundler/ui/shell.rb +5 -5
  118. data/bundler/lib/bundler/uri_credentials_filter.rb +1 -1
  119. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +79 -212
  120. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +0 -7
  121. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  122. data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  123. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  124. data/bundler/lib/bundler/vendored_persistent.rb +0 -7
  125. data/bundler/lib/bundler/version.rb +1 -1
  126. data/bundler/lib/bundler/worker.rb +1 -1
  127. data/bundler/lib/bundler/yaml_serializer.rb +1 -1
  128. data/bundler/man/bundle-add.1 +1 -1
  129. data/bundler/man/{bundle-add.ronn → bundle-add.1.ronn} +0 -0
  130. data/bundler/man/bundle-binstubs.1 +5 -3
  131. data/bundler/man/{bundle-binstubs.ronn → bundle-binstubs.1.ronn} +2 -4
  132. data/bundler/man/bundle-cache.1 +1 -1
  133. data/bundler/man/{bundle-cache.ronn → bundle-cache.1.ronn} +0 -0
  134. data/bundler/man/bundle-check.1 +1 -1
  135. data/bundler/man/{bundle-check.ronn → bundle-check.1.ronn} +0 -0
  136. data/bundler/man/bundle-clean.1 +1 -1
  137. data/bundler/man/{bundle-clean.ronn → bundle-clean.1.ronn} +0 -0
  138. data/bundler/man/bundle-config.1 +16 -22
  139. data/bundler/man/{bundle-config.ronn → bundle-config.1.ronn} +19 -22
  140. data/bundler/man/bundle-doctor.1 +1 -1
  141. data/bundler/man/{bundle-doctor.ronn → bundle-doctor.1.ronn} +0 -0
  142. data/bundler/man/bundle-exec.1 +1 -1
  143. data/bundler/man/{bundle-exec.ronn → bundle-exec.1.ronn} +0 -0
  144. data/bundler/man/bundle-gem.1 +25 -3
  145. data/bundler/man/{bundle-gem.ronn → bundle-gem.1.ronn} +30 -7
  146. data/bundler/man/bundle-info.1 +1 -1
  147. data/bundler/man/{bundle-info.ronn → bundle-info.1.ronn} +0 -0
  148. data/bundler/man/bundle-init.1 +1 -1
  149. data/bundler/man/{bundle-init.ronn → bundle-init.1.ronn} +0 -0
  150. data/bundler/man/bundle-inject.1 +1 -1
  151. data/bundler/man/{bundle-inject.ronn → bundle-inject.1.ronn} +0 -0
  152. data/bundler/man/bundle-install.1 +29 -2
  153. data/bundler/man/{bundle-install.ronn → bundle-install.1.ronn} +24 -2
  154. data/bundler/man/bundle-list.1 +7 -7
  155. data/bundler/man/{bundle-list.ronn → bundle-list.1.ronn} +6 -6
  156. data/bundler/man/bundle-lock.1 +1 -1
  157. data/bundler/man/{bundle-lock.ronn → bundle-lock.1.ronn} +0 -0
  158. data/bundler/man/bundle-open.1 +1 -1
  159. data/bundler/man/{bundle-open.ronn → bundle-open.1.ronn} +0 -0
  160. data/bundler/man/bundle-outdated.1 +1 -1
  161. data/bundler/man/{bundle-outdated.ronn → bundle-outdated.1.ronn} +0 -0
  162. data/bundler/man/bundle-platform.1 +1 -1
  163. data/bundler/man/{bundle-platform.ronn → bundle-platform.1.ronn} +0 -0
  164. data/bundler/man/bundle-pristine.1 +1 -1
  165. data/bundler/man/{bundle-pristine.ronn → bundle-pristine.1.ronn} +0 -0
  166. data/bundler/man/bundle-remove.1 +1 -1
  167. data/bundler/man/{bundle-remove.ronn → bundle-remove.1.ronn} +0 -0
  168. data/bundler/man/bundle-show.1 +1 -1
  169. data/bundler/man/{bundle-show.ronn → bundle-show.1.ronn} +0 -0
  170. data/bundler/man/bundle-update.1 +1 -1
  171. data/bundler/man/{bundle-update.ronn → bundle-update.1.ronn} +0 -0
  172. data/bundler/man/bundle-viz.1 +1 -1
  173. data/bundler/man/{bundle-viz.ronn → bundle-viz.1.ronn} +0 -0
  174. data/bundler/man/bundle.1 +1 -1
  175. data/bundler/man/{bundle.ronn → bundle.1.ronn} +0 -0
  176. data/bundler/man/gemfile.5 +4 -4
  177. data/bundler/man/gemfile.5.ronn +4 -4
  178. data/lib/rubygems.rb +133 -186
  179. data/lib/rubygems/available_set.rb +4 -6
  180. data/lib/rubygems/basic_specification.rb +12 -10
  181. data/lib/rubygems/bundler_version_finder.rb +14 -9
  182. data/lib/rubygems/command.rb +17 -17
  183. data/lib/rubygems/command_manager.rb +4 -5
  184. data/lib/rubygems/commands/build_command.rb +4 -1
  185. data/lib/rubygems/commands/cert_command.rb +1 -9
  186. data/lib/rubygems/commands/check_command.rb +0 -2
  187. data/lib/rubygems/commands/cleanup_command.rb +11 -7
  188. data/lib/rubygems/commands/contents_command.rb +4 -6
  189. data/lib/rubygems/commands/dependency_command.rb +6 -8
  190. data/lib/rubygems/commands/environment_command.rb +1 -3
  191. data/lib/rubygems/commands/fetch_command.rb +2 -4
  192. data/lib/rubygems/commands/generate_index_command.rb +0 -2
  193. data/lib/rubygems/commands/help_command.rb +2 -4
  194. data/lib/rubygems/commands/info_command.rb +8 -5
  195. data/lib/rubygems/commands/install_command.rb +3 -5
  196. data/lib/rubygems/commands/list_command.rb +8 -7
  197. data/lib/rubygems/commands/lock_command.rb +1 -3
  198. data/lib/rubygems/commands/mirror_command.rb +0 -2
  199. data/lib/rubygems/commands/open_command.rb +0 -4
  200. data/lib/rubygems/commands/outdated_command.rb +0 -2
  201. data/lib/rubygems/commands/owner_command.rb +0 -2
  202. data/lib/rubygems/commands/pristine_command.rb +10 -4
  203. data/lib/rubygems/commands/push_command.rb +4 -44
  204. data/lib/rubygems/commands/query_command.rb +6 -353
  205. data/lib/rubygems/commands/rdoc_command.rb +0 -2
  206. data/lib/rubygems/commands/search_command.rb +7 -7
  207. data/lib/rubygems/commands/server_command.rb +0 -2
  208. data/lib/rubygems/commands/setup_command.rb +156 -48
  209. data/lib/rubygems/commands/signin_command.rb +0 -2
  210. data/lib/rubygems/commands/signout_command.rb +0 -2
  211. data/lib/rubygems/commands/sources_command.rb +3 -5
  212. data/lib/rubygems/commands/specification_command.rb +2 -4
  213. data/lib/rubygems/commands/stale_command.rb +1 -3
  214. data/lib/rubygems/commands/uninstall_command.rb +2 -4
  215. data/lib/rubygems/commands/unpack_command.rb +1 -3
  216. data/lib/rubygems/commands/update_command.rb +59 -14
  217. data/lib/rubygems/commands/which_command.rb +0 -2
  218. data/lib/rubygems/commands/yank_command.rb +0 -2
  219. data/lib/rubygems/config_file.rb +11 -4
  220. data/lib/rubygems/core_ext/kernel_require.rb +26 -36
  221. data/lib/rubygems/core_ext/kernel_warn.rb +6 -6
  222. data/lib/rubygems/defaults.rb +99 -5
  223. data/lib/rubygems/dependency.rb +2 -7
  224. data/lib/rubygems/dependency_installer.rb +1 -75
  225. data/lib/rubygems/dependency_list.rb +7 -9
  226. data/lib/rubygems/deprecate.rb +46 -1
  227. data/lib/rubygems/doctor.rb +4 -4
  228. data/lib/rubygems/errors.rb +3 -14
  229. data/lib/rubygems/exceptions.rb +2 -33
  230. data/lib/rubygems/ext.rb +6 -6
  231. data/lib/rubygems/ext/build_error.rb +2 -0
  232. data/lib/rubygems/ext/builder.rb +4 -4
  233. data/lib/rubygems/ext/cmake_builder.rb +1 -3
  234. data/lib/rubygems/ext/configure_builder.rb +0 -2
  235. data/lib/rubygems/ext/ext_conf_builder.rb +6 -9
  236. data/lib/rubygems/ext/rake_builder.rb +0 -2
  237. data/lib/rubygems/gem_runner.rb +3 -10
  238. data/lib/rubygems/gemcutter_utilities.rb +1 -1
  239. data/lib/rubygems/indexer.rb +1 -21
  240. data/lib/rubygems/install_update_options.rb +5 -5
  241. data/lib/rubygems/installer.rb +47 -48
  242. data/lib/rubygems/installer_test_case.rb +18 -5
  243. data/lib/rubygems/installer_uninstaller_utils.rb +24 -0
  244. data/lib/rubygems/local_remote_options.rb +1 -1
  245. data/lib/rubygems/mock_gem_ui.rb +0 -6
  246. data/lib/rubygems/name_tuple.rb +2 -6
  247. data/lib/rubygems/openssl.rb +7 -0
  248. data/lib/rubygems/package.rb +11 -23
  249. data/lib/rubygems/package/digest_io.rb +0 -2
  250. data/lib/rubygems/package/file_source.rb +0 -2
  251. data/lib/rubygems/package/io_source.rb +0 -2
  252. data/lib/rubygems/package/old.rb +1 -3
  253. data/lib/rubygems/package/tar_header.rb +3 -5
  254. data/lib/rubygems/package/tar_reader.rb +0 -3
  255. data/lib/rubygems/package/tar_reader/entry.rb +0 -3
  256. data/lib/rubygems/package/tar_test_case.rb +1 -3
  257. data/lib/rubygems/package/tar_writer.rb +2 -12
  258. data/lib/rubygems/package_task.rb +1 -7
  259. data/lib/rubygems/path_support.rb +1 -3
  260. data/lib/rubygems/platform.rb +3 -5
  261. data/lib/rubygems/psych_tree.rb +0 -2
  262. data/lib/rubygems/query_utils.rb +362 -0
  263. data/lib/rubygems/rdoc.rb +0 -12
  264. data/lib/rubygems/remote_fetcher.rb +9 -25
  265. data/lib/rubygems/request.rb +1 -9
  266. data/lib/rubygems/request/connection_pools.rb +1 -5
  267. data/lib/rubygems/request/http_pool.rb +0 -2
  268. data/lib/rubygems/request/https_pool.rb +0 -2
  269. data/lib/rubygems/request_set.rb +5 -7
  270. data/lib/rubygems/request_set/gem_dependency_api.rb +2 -4
  271. data/lib/rubygems/request_set/lockfile.rb +8 -12
  272. data/lib/rubygems/request_set/lockfile/parser.rb +0 -2
  273. data/lib/rubygems/request_set/lockfile/tokenizer.rb +1 -3
  274. data/lib/rubygems/requirement.rb +20 -21
  275. data/lib/rubygems/resolver.rb +7 -10
  276. data/lib/rubygems/resolver/activation_request.rb +0 -2
  277. data/lib/rubygems/resolver/api_set.rb +4 -6
  278. data/lib/rubygems/resolver/api_specification.rb +16 -7
  279. data/lib/rubygems/resolver/best_set.rb +0 -2
  280. data/lib/rubygems/resolver/composed_set.rb +3 -5
  281. data/lib/rubygems/resolver/conflict.rb +1 -3
  282. data/lib/rubygems/resolver/current_set.rb +0 -2
  283. data/lib/rubygems/resolver/dependency_request.rb +0 -2
  284. data/lib/rubygems/resolver/git_set.rb +0 -2
  285. data/lib/rubygems/resolver/git_specification.rb +0 -2
  286. data/lib/rubygems/resolver/index_set.rb +1 -3
  287. data/lib/rubygems/resolver/index_specification.rb +0 -2
  288. data/lib/rubygems/resolver/installed_specification.rb +0 -2
  289. data/lib/rubygems/resolver/installer_set.rb +3 -5
  290. data/lib/rubygems/resolver/local_specification.rb +0 -2
  291. data/lib/rubygems/resolver/lock_set.rb +1 -3
  292. data/lib/rubygems/resolver/lock_specification.rb +0 -2
  293. data/lib/rubygems/resolver/requirement_list.rb +0 -2
  294. data/lib/rubygems/resolver/set.rb +0 -2
  295. data/lib/rubygems/resolver/source_set.rb +0 -2
  296. data/lib/rubygems/resolver/spec_specification.rb +0 -2
  297. data/lib/rubygems/resolver/specification.rb +0 -2
  298. data/lib/rubygems/resolver/stats.rb +0 -2
  299. data/lib/rubygems/resolver/vendor_set.rb +0 -2
  300. data/lib/rubygems/resolver/vendor_specification.rb +0 -2
  301. data/lib/rubygems/s3_uri_signer.rb +1 -7
  302. data/lib/rubygems/safe_yaml.rb +4 -4
  303. data/lib/rubygems/security.rb +26 -32
  304. data/lib/rubygems/security/policy.rb +3 -7
  305. data/lib/rubygems/security/signer.rb +4 -6
  306. data/lib/rubygems/security/trust_dir.rb +1 -3
  307. data/lib/rubygems/server.rb +9 -11
  308. data/lib/rubygems/source.rb +4 -4
  309. data/lib/rubygems/source/git.rb +7 -8
  310. data/lib/rubygems/source/installed.rb +0 -2
  311. data/lib/rubygems/source/local.rb +2 -4
  312. data/lib/rubygems/source/lock.rb +0 -2
  313. data/lib/rubygems/source/specific_file.rb +0 -2
  314. data/lib/rubygems/source/vendor.rb +0 -2
  315. data/lib/rubygems/source_list.rb +6 -7
  316. data/lib/rubygems/spec_fetcher.rb +18 -17
  317. data/lib/rubygems/specification.rb +107 -120
  318. data/lib/rubygems/specification_policy.rb +88 -30
  319. data/lib/rubygems/stub_specification.rb +0 -4
  320. data/lib/rubygems/syck_hack.rb +0 -2
  321. data/lib/rubygems/test_case.rb +122 -92
  322. data/lib/rubygems/test_utilities.rb +6 -14
  323. data/lib/rubygems/uninstaller.rb +35 -16
  324. data/lib/rubygems/uri_formatter.rb +0 -2
  325. data/lib/rubygems/uri_parser.rb +0 -2
  326. data/lib/rubygems/user_interaction.rb +1 -26
  327. data/lib/rubygems/util.rb +15 -3
  328. data/lib/rubygems/util/licenses.rb +4 -6
  329. data/lib/rubygems/util/list.rb +0 -2
  330. data/lib/rubygems/validator.rb +1 -3
  331. data/lib/rubygems/version.rb +5 -7
  332. data/rubygems-update.gemspec +2 -2
  333. data/setup.rb +2 -7
  334. data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -2
  335. data/test/rubygems/rubygems/commands/crash_command.rb +0 -2
  336. data/test/rubygems/rubygems_plugin.rb +0 -2
  337. data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -2
  338. data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +12 -0
  339. data/test/rubygems/test_bundled_ca.rb +38 -45
  340. data/test/rubygems/test_config.rb +0 -2
  341. data/test/rubygems/test_deprecate.rb +40 -7
  342. data/test/rubygems/test_gem.rb +150 -103
  343. data/test/rubygems/test_gem_available_set.rb +3 -5
  344. data/test/rubygems/test_gem_bundler_version_finder.rb +19 -3
  345. data/test/rubygems/test_gem_command.rb +24 -7
  346. data/test/rubygems/test_gem_command_manager.rb +36 -5
  347. data/test/rubygems/test_gem_commands_build_command.rb +53 -10
  348. data/test/rubygems/test_gem_commands_cert_command.rb +2 -4
  349. data/test/rubygems/test_gem_commands_check_command.rb +0 -2
  350. data/test/rubygems/test_gem_commands_cleanup_command.rb +13 -4
  351. data/test/rubygems/test_gem_commands_contents_command.rb +48 -17
  352. data/test/rubygems/test_gem_commands_dependency_command.rb +0 -2
  353. data/test/rubygems/test_gem_commands_environment_command.rb +21 -23
  354. data/test/rubygems/test_gem_commands_fetch_command.rb +0 -2
  355. data/test/rubygems/test_gem_commands_generate_index_command.rb +1 -7
  356. data/test/rubygems/test_gem_commands_help_command.rb +0 -2
  357. data/test/rubygems/test_gem_commands_info_command.rb +6 -8
  358. data/test/rubygems/test_gem_commands_install_command.rb +31 -33
  359. data/test/rubygems/test_gem_commands_list_command.rb +0 -2
  360. data/test/rubygems/test_gem_commands_lock_command.rb +0 -2
  361. data/test/rubygems/test_gem_commands_mirror.rb +1 -3
  362. data/test/rubygems/test_gem_commands_open_command.rb +4 -6
  363. data/test/rubygems/test_gem_commands_outdated_command.rb +0 -2
  364. data/test/rubygems/test_gem_commands_owner_command.rb +11 -5
  365. data/test/rubygems/test_gem_commands_pristine_command.rb +41 -10
  366. data/test/rubygems/test_gem_commands_push_command.rb +7 -4
  367. data/test/rubygems/test_gem_commands_query_command.rb +9 -9
  368. data/test/rubygems/test_gem_commands_search_command.rb +0 -2
  369. data/test/rubygems/test_gem_commands_server_command.rb +0 -2
  370. data/test/rubygems/test_gem_commands_setup_command.rb +210 -118
  371. data/test/rubygems/test_gem_commands_signin_command.rb +6 -6
  372. data/test/rubygems/test_gem_commands_signout_command.rb +0 -7
  373. data/test/rubygems/test_gem_commands_sources_command.rb +39 -3
  374. data/test/rubygems/test_gem_commands_specification_command.rb +18 -20
  375. data/test/rubygems/test_gem_commands_stale_command.rb +0 -2
  376. data/test/rubygems/test_gem_commands_uninstall_command.rb +2 -3
  377. data/test/rubygems/test_gem_commands_unpack_command.rb +0 -2
  378. data/test/rubygems/test_gem_commands_update_command.rb +116 -7
  379. data/test/rubygems/test_gem_commands_which_command.rb +3 -5
  380. data/test/rubygems/test_gem_commands_yank_command.rb +14 -8
  381. data/test/rubygems/test_gem_config_file.rb +7 -12
  382. data/test/rubygems/test_gem_dependency.rb +0 -2
  383. data/test/rubygems/test_gem_dependency_installer.rb +54 -191
  384. data/test/rubygems/test_gem_dependency_list.rb +8 -10
  385. data/test/rubygems/test_gem_dependency_resolution_error.rb +1 -3
  386. data/test/rubygems/test_gem_doctor.rb +28 -2
  387. data/test/rubygems/test_gem_ext_builder.rb +16 -33
  388. data/test/rubygems/test_gem_ext_cmake_builder.rb +13 -14
  389. data/test/rubygems/test_gem_ext_configure_builder.rb +1 -11
  390. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -3
  391. data/test/rubygems/test_gem_ext_rake_builder.rb +9 -11
  392. data/test/rubygems/test_gem_gem_runner.rb +43 -1
  393. data/test/rubygems/test_gem_gemcutter_utilities.rb +5 -2
  394. data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -2
  395. data/test/rubygems/test_gem_indexer.rb +9 -15
  396. data/test/rubygems/test_gem_install_update_options.rb +0 -2
  397. data/test/rubygems/test_gem_installer.rb +192 -71
  398. data/test/rubygems/test_gem_local_remote_options.rb +0 -2
  399. data/test/rubygems/test_gem_name_tuple.rb +0 -2
  400. data/test/rubygems/test_gem_package.rb +33 -31
  401. data/test/rubygems/test_gem_package_old.rb +0 -2
  402. data/test/rubygems/test_gem_package_tar_header.rb +18 -1
  403. data/test/rubygems/test_gem_package_tar_reader.rb +0 -2
  404. data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -2
  405. data/test/rubygems/test_gem_package_tar_writer.rb +8 -5
  406. data/test/rubygems/test_gem_package_task.rb +46 -13
  407. data/test/rubygems/test_gem_path_support.rb +0 -2
  408. data/test/rubygems/test_gem_platform.rb +0 -2
  409. data/test/rubygems/test_gem_rdoc.rb +0 -2
  410. data/test/rubygems/test_gem_remote_fetcher.rb +156 -195
  411. data/test/rubygems/test_gem_request.rb +11 -15
  412. data/test/rubygems/test_gem_request_connection_pools.rb +0 -4
  413. data/test/rubygems/test_gem_request_set.rb +72 -22
  414. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +3 -5
  415. data/test/rubygems/test_gem_request_set_lockfile.rb +0 -2
  416. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +9 -11
  417. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +118 -120
  418. data/test/rubygems/test_gem_requirement.rb +10 -4
  419. data/test/rubygems/test_gem_resolver.rb +6 -8
  420. data/test/rubygems/test_gem_resolver_activation_request.rb +0 -2
  421. data/test/rubygems/test_gem_resolver_api_set.rb +3 -5
  422. data/test/rubygems/test_gem_resolver_api_specification.rb +0 -2
  423. data/test/rubygems/test_gem_resolver_best_set.rb +2 -4
  424. data/test/rubygems/test_gem_resolver_composed_set.rb +0 -2
  425. data/test/rubygems/test_gem_resolver_conflict.rb +0 -2
  426. data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -2
  427. data/test/rubygems/test_gem_resolver_git_set.rb +0 -2
  428. data/test/rubygems/test_gem_resolver_git_specification.rb +0 -2
  429. data/test/rubygems/test_gem_resolver_index_set.rb +2 -4
  430. data/test/rubygems/test_gem_resolver_index_specification.rb +0 -2
  431. data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -2
  432. data/test/rubygems/test_gem_resolver_installer_set.rb +7 -9
  433. data/test/rubygems/test_gem_resolver_local_specification.rb +0 -2
  434. data/test/rubygems/test_gem_resolver_lock_set.rb +3 -5
  435. data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -2
  436. data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -2
  437. data/test/rubygems/test_gem_resolver_specification.rb +0 -4
  438. data/test/rubygems/test_gem_resolver_vendor_set.rb +0 -2
  439. data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -2
  440. data/test/rubygems/test_gem_security.rb +20 -22
  441. data/test/rubygems/test_gem_security_policy.rb +5 -10
  442. data/test/rubygems/test_gem_security_signer.rb +8 -10
  443. data/test/rubygems/test_gem_security_trust_dir.rb +2 -4
  444. data/test/rubygems/test_gem_server.rb +10 -14
  445. data/test/rubygems/test_gem_silent_ui.rb +0 -2
  446. data/test/rubygems/test_gem_source.rb +12 -16
  447. data/test/rubygems/test_gem_source_fetch_problem.rb +0 -2
  448. data/test/rubygems/test_gem_source_git.rb +12 -13
  449. data/test/rubygems/test_gem_source_installed.rb +7 -9
  450. data/test/rubygems/test_gem_source_list.rb +1 -2
  451. data/test/rubygems/test_gem_source_local.rb +8 -10
  452. data/test/rubygems/test_gem_source_lock.rb +10 -12
  453. data/test/rubygems/test_gem_source_specific_file.rb +7 -9
  454. data/test/rubygems/test_gem_source_vendor.rb +7 -9
  455. data/test/rubygems/test_gem_spec_fetcher.rb +11 -4
  456. data/test/rubygems/test_gem_specification.rb +179 -129
  457. data/test/rubygems/test_gem_stream_ui.rb +3 -3
  458. data/test/rubygems/test_gem_stub_specification.rb +4 -7
  459. data/test/rubygems/test_gem_text.rb +1 -3
  460. data/test/rubygems/test_gem_uninstaller.rb +133 -11
  461. data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -2
  462. data/test/rubygems/test_gem_uri_formatter.rb +0 -2
  463. data/test/rubygems/test_gem_util.rb +7 -7
  464. data/test/rubygems/test_gem_validator.rb +0 -2
  465. data/test/rubygems/test_gem_version.rb +1 -3
  466. data/test/rubygems/test_gem_version_option.rb +0 -2
  467. data/test/rubygems/test_kernel.rb +25 -10
  468. data/test/rubygems/test_project_sanity.rb +7 -2
  469. data/test/rubygems/test_remote_fetch_error.rb +0 -2
  470. data/test/rubygems/test_require.rb +241 -47
  471. metadata +59 -96
  472. data/.bundle/config +0 -2
  473. data/.rubocop.yml +0 -91
  474. data/Gemfile +0 -8
  475. data/Gemfile.lock +0 -43
  476. data/bundler/CODE_OF_CONDUCT.md +0 -136
  477. data/bundler/man/bundle-add.1.txt +0 -58
  478. data/bundler/man/bundle-binstubs.1.txt +0 -48
  479. data/bundler/man/bundle-cache.1.txt +0 -78
  480. data/bundler/man/bundle-check.1.txt +0 -33
  481. data/bundler/man/bundle-clean.1.txt +0 -26
  482. data/bundler/man/bundle-config.1.txt +0 -528
  483. data/bundler/man/bundle-doctor.1.txt +0 -44
  484. data/bundler/man/bundle-exec.1.txt +0 -178
  485. data/bundler/man/bundle-gem.1.txt +0 -91
  486. data/bundler/man/bundle-info.1.txt +0 -21
  487. data/bundler/man/bundle-init.1.txt +0 -34
  488. data/bundler/man/bundle-inject.1.txt +0 -32
  489. data/bundler/man/bundle-install.1.txt +0 -401
  490. data/bundler/man/bundle-list.1.txt +0 -43
  491. data/bundler/man/bundle-lock.1.txt +0 -93
  492. data/bundler/man/bundle-open.1.txt +0 -29
  493. data/bundler/man/bundle-outdated.1.txt +0 -131
  494. data/bundler/man/bundle-platform.1.txt +0 -57
  495. data/bundler/man/bundle-pristine.1.txt +0 -44
  496. data/bundler/man/bundle-remove.1.txt +0 -34
  497. data/bundler/man/bundle-show.1.txt +0 -27
  498. data/bundler/man/bundle-update.1.txt +0 -390
  499. data/bundler/man/bundle-viz.1.txt +0 -39
  500. data/bundler/man/bundle.1.txt +0 -116
  501. data/bundler/man/gemfile.5.txt +0 -649
  502. data/bundler/man/index.txt +0 -25
  503. data/lib/rubygems/source_local.rb +0 -7
  504. data/lib/rubygems/source_specific_file.rb +0 -6
  505. data/lib/ubygems.rb +0 -14
  506. data/tmp/.keep +0 -0
  507. data/util/CL2notes +0 -55
  508. data/util/bisect +0 -10
  509. data/util/ci.sh +0 -62
  510. data/util/cops/deprecations.rb +0 -52
  511. data/util/create_certs.rb +0 -171
  512. data/util/create_certs.sh +0 -27
  513. data/util/create_encrypted_key.rb +0 -16
  514. data/util/generate_spdx_license_list.rb +0 -63
  515. data/util/patch_with_prs.rb +0 -77
  516. data/util/rubocop +0 -8
  517. data/util/update_bundled_ca_certificates.rb +0 -139
  518. data/util/update_changelog.rb +0 -67
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cfff2250893c2233e664042cf61c859db6ddc09bf9085e9360c1e32ec92b0621
4
- data.tar.gz: 37a8b000b154d1dea0595ba0f3ee85255acfd8767a50872433f6737b82572ed2
3
+ metadata.gz: 80a7466270c704510a3d8f9061bb58e04fad168d3a180460844560fce93694af
4
+ data.tar.gz: 2aa3a0d6ee74d72a2ce138b0c999b4601e459b7b35f139f916e24046237e19c2
5
5
  SHA512:
6
- metadata.gz: 43b3357db0d0790fdf81140513ca87cd60d899f20c23975957bfdb75902731de0245f5f0881e04c8e1d0e8d225b827cf4f1777254702996e8b2a85de2f7c42e7
7
- data.tar.gz: f050beceeb7f08355c6d390d8a5d88fe253f749a6cfd87b5bfb05417c3ca188cae947dad74c43d9137bf248d77501119b91778bf2c97d0939372c16eb1a5cfe8
6
+ metadata.gz: 1dcc8aa7153d4e534339b176b8f71009646b77463a14f1d6be5c1150e4f14e24765863da28c6b955b577e4c915ea26a626c4a0a54ce5878cc27fafaa556fe657
7
+ data.tar.gz: dee6647fc4e79ec27b73331b27092c5ecb042ebed7c4347af58dbc30adc29b14dbf337c4287f3d8d6fd3f3fe65e2f2901b9d5e9074cec5ca2737e1350abd5ebf
@@ -1,45 +1,81 @@
1
- # Contributor Code of Conduct
1
+ # RubyGems and Bundler Code of Conduct
2
2
 
3
3
  ## Our Pledge
4
4
 
5
- In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
6
8
 
7
9
  ## Our Standards
8
10
 
9
- Examples of behavior that contributes to creating a positive environment include:
11
+ Examples of behavior that contributes to a positive environment for our community include:
10
12
 
11
- * Using welcoming and inclusive language
12
- * Being respectful of differing viewpoints and experiences
13
- * Gracefully accepting constructive criticism
14
- * Focusing on what is best for the community
15
- * Showing empathy towards other community members
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
16
18
 
17
- Examples of unacceptable behavior by participants include:
19
+ Examples of unacceptable behavior include:
18
20
 
19
- * The use of sexualized language or imagery and unwelcome sexual attention or advances
20
- * Trolling, insulting/derogatory comments, and personal or political attacks
21
+ * The use of sexualized language or imagery, and sexual attention or advances of any kind
22
+ * Trolling, insulting or derogatory comments, and personal or political attacks
21
23
  * Public or private harassment
22
- * Publishing others' private information, such as a physical or electronic address, without explicit permission
24
+ * Publishing others' private information, such as a physical or email address, without their explicit permission
23
25
  * Other conduct which could reasonably be considered inappropriate in a professional setting
24
26
 
25
- ## Our Responsibilities
27
+ ## Enforcement Responsibilities
26
28
 
27
- Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
29
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
28
30
 
29
- Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
31
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
30
32
 
31
33
  ## Scope
32
34
 
33
- This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
35
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
34
36
 
35
37
  ## Enforcement
36
38
 
37
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the [project team](MAINTAINERS.txt). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
39
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at team@bundler.io, or directly contacting project team members via email or Slack. All complaints will be reviewed and investigated promptly and fairly.
40
+
41
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
42
+
43
+ ## Enforcement Guidelines
44
+
45
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
46
+
47
+ ### 1. Correction
48
+
49
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
50
+
51
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
52
+
53
+ ### 2. Warning
54
+
55
+ **Community Impact**: A violation through a single incident or series of actions.
38
56
 
39
- Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
57
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
58
+
59
+ ### 3. Temporary Ban
60
+
61
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
62
+
63
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
64
+
65
+ ### 4. Permanent Ban
66
+
67
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
68
+
69
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
40
70
 
41
71
  ## Attribution
42
72
 
43
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
73
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
74
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
75
+
76
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
44
77
 
45
78
  [homepage]: https://www.contributor-covenant.org
79
+
80
+ For answers to common questions about this code of conduct, see the FAQ at
81
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
@@ -26,7 +26,7 @@ contributors to follow to reduce the time it takes to get changes merged in.
26
26
 
27
27
 
28
28
  For more information and ideas on how to contribute to RubyGems ecosystem, see
29
- here: http://guides.rubygems.org/contributing/
29
+ here: https://guides.rubygems.org/contributing/
30
30
 
31
31
  ## Getting Started
32
32
 
@@ -42,7 +42,6 @@ To run commands like `gem install` from the repo:
42
42
  To run bundler test:
43
43
 
44
44
  $ cd bundler
45
- $ git submodule update --init --recursive
46
45
  $ bin/rake spec:deps
47
46
  $ bin/rspec spec
48
47
 
@@ -65,27 +64,42 @@ can help with. That are marked with a light gray `contribution: *`
65
64
 
66
65
  ### Type
67
66
 
68
- Most Issues or pull requests will have a light green `type: *` label, which
69
- describes the type of the issue or pull request.
67
+ Issues might have a light green `type: *` label, which describes the type of
68
+ the issue.
70
69
 
71
70
  * **bug report** - An issue describing a bug in rubygems. This would be
72
71
  something that is broken, confusing, unexpected behavior etc.
73
- * **bug fix** - A pull request that fixes a bug report.
74
72
  * **feature request** - An issue describing a request for a new feature or
75
73
  enhancement.
76
- * **feature implementation** - A pull request implementing a feature
77
- request.
78
74
  * **question** - An issue that is a more of a question than a call for
79
75
  specific changes in the codebase.
80
- * **cleanup** - Generally for a pull request that improves the code base
81
- without fixing a bug or implementing a feature.
82
- * **major bump** - This issue or pull request requires a major version bump
76
+ * **cleanup** - An issue that proposes cleanups to the code base without
77
+ fixing a bug or implementing a feature.
78
+ * **major bump** - This issue request requires a major version bump
83
79
  * **administrative** - This issue relates to administrative tasks that need
84
80
  to take place as it relates to rubygems
85
81
  * **documentation** - This issue relates to improving the documentation for
86
82
  in this repo. Note that much of the rubygems documentation is here:
87
83
  https://github.com/rubygems/guides
88
84
 
85
+ Pull request might have a light orange `rubygems: *` or a light blue `bundler:
86
+ *` label which describes the pull request according to the following criteria:
87
+
88
+ * **security fix** - A pull request that fixes a security issue.
89
+ * **breaking change** - A pull request including any change that requires a
90
+ major version bump.
91
+ * **major enhancement** - A pull request including a backwards compatible
92
+ change worth a special mention in the changelog
93
+ * **deprecation** - A pull request that introduces a deprecation.
94
+ * **feature** - A pull request implementing a feature request.
95
+ * **deprecation** - A pull request that implements a performance improvement.
96
+ * **documentation** - A pull request introducing documentation improvements
97
+ worth mentioning to end users.
98
+ * **minor enhancements** - A pull request introducing small but user visible changes.
99
+ * **bug fix** - A pull request that fixes a bug report.
100
+
101
+ In the case of `bundler`, these labels are set by maintainers on PRs and have
102
+ special importance because they are used to automatically build the changelog.
89
103
 
90
104
  ### Workflow / Status
91
105
 
@@ -152,7 +166,7 @@ an appropriate purple `platform: *` label. Current platform labels:
152
166
  ### Git
153
167
 
154
168
  Please sign your commits. Although not required in order for you to contribute,
155
- it does ensures that any code submitted by you wasn't altered while you were
169
+ it ensures that any code submitted by you wasn't altered while you were
156
170
  transferring it, and proves that it was you who submitted it and not someone
157
171
  else.
158
172
 
@@ -1,4 +1,220 @@
1
- # coding: UTF-8
1
+ === 3.2.0.rc.2 / 2020-10-8
2
+
3
+ Minor enhancements:
4
+
5
+ * Don't hit the network when installing dependencyless local gemspec. Pull
6
+ request #3968 by deivid-rodriguez
7
+ * Add `--force` option to `gem sources` command. Pull request #3956 by
8
+ andy-smith-msm
9
+ * Make --dry-run flag consistent across rubygems commands. Pull request
10
+ #3867 by bronzdoc
11
+ * Disallow downgrades to too old versions. Pull request #3566 by
12
+ deivid-rodriguez
13
+ * Added `--platform` option to `build` command. Pull request #3079 by nobu
14
+ * Have "gem update --system" pass through the `--silent` flag. Pull
15
+ request #3789 by duckinator
16
+ * Add writable check for cache dir. Pull request #3876 by xndcn
17
+ * Warn on duplicate dependency in a specification. Pull request #3864 by
18
+ bronzdoc
19
+ * Fix indentation in `gem env`. Pull request #3861 by colby-swandale
20
+ * Let more exceptions flow. Pull request #3819 by deivid-rodriguez
21
+ * Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
22
+ eregon
23
+
24
+ Bug fixes:
25
+
26
+ * Append '.gemspec' extension only when it is not present.. Pull request
27
+ #3988 by voxik
28
+ * Install to correct plugins dir when using `--build-root`. Pull request
29
+ #3972 by deivid-rodriguez
30
+ * Fix `--build-root` flag under Windows. Pull request #3975 by
31
+ deivid-rodriguez
32
+ * Fix `typo_squatting?` false positive for `rubygems.org` itself. Pull
33
+ request #3951 by andy-smith-msm
34
+ * Make `--default` and `--install-dir` options to `gem install` play nice
35
+ together. Pull request #3906 by deivid-rodriguez
36
+ * Add missing fileutils require. Pull request #3911 by deivid-rodriguez
37
+ * Fix false positive warning on Windows when PATH has
38
+ `File::ALT_SEPARATOR`. Pull request #3829 by deivid-rodriguez
39
+ * Fix Kernel#warn override to handle backtrace location with nil path.
40
+ Pull request #3852 by jeremyevans
41
+ * Don't format executables on `gem update --system`. Pull request #3811 by
42
+ deivid-rodriguez
43
+ * `gem install --user` fails with `Gem::FilePermissionError` on the system
44
+ plugins directory. Pull request #3804 by nobu
45
+
46
+ Performance:
47
+
48
+ * Don't change ruby process CWD when building extensions. Pull request
49
+ #3498 by deivid-rodriguez
50
+ * Avoid duplicated generation of APISpecification objects. Pull request
51
+ #3940 by mame
52
+ * Eval defaults with frozen_string_literal: true. Pull request #3847 by
53
+ casperisfine
54
+ * Deduplicate the requirement operators in memory. Pull request #3846 by
55
+ casperisfine
56
+ * Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
57
+
58
+ === 3.2.0.rc.1 / 2020-07-04
59
+
60
+ Major enhancements:
61
+
62
+ * Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
63
+ * Rework plugins system and speed up rubygems. Pull request #3108 by David
64
+ Rodríguez.
65
+
66
+ Minor enhancements:
67
+
68
+ * Specify explicit separator not to be affected by $;. Pull request #3424
69
+ by Nobuyoshi Nakada.
70
+ * Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
71
+ * Rollback gem deprecate. Pull request #3530 by Luis Sagastume.
72
+ * Normalize heredoc delimiters. Pull request #3533 by David Rodríguez.
73
+ * Log messages to stdout in `rake package`. Pull request #3632 by David
74
+ Rodríguez.
75
+ * Remove explicit `psych` activation. Pull request #3636 by David
76
+ Rodríguez.
77
+ * Delay `fileutils` loading to fix some warnings. Pull request #3637 by
78
+ David Rodríguez.
79
+ * Make sure rubygems/package can be directly required reliably. Pull
80
+ request #3670 by Luis Sagastume.
81
+ * Make sure `tmp` folder exists before calling `Dir.tmpdir`. Pull request
82
+ #3711 by David Rodríguez.
83
+ * Add Gem.disable_system_update_message to disable gem update --system if
84
+ needed. Pull request #3720 by Josef Šimánek.
85
+ * Tweaks to play nice with ruby-core setup. Pull request #3733 by David
86
+ Rodríguez.
87
+ * Remove explicit require for auto-loaded constant. Pull request #3751 by
88
+ Karol Bucek.
89
+ * Test files should not be included in spec.files. Pull request #3758 by
90
+ Marc-André Lafortune.
91
+ * Remove TODO comment about warning on setting instead of pushing. Pull
92
+ request #2823 by Luis Sagastume.
93
+ * Add deprecate command method. Pull request #2935 by Luis Sagastume.
94
+ * Simplify deprecate command method. Pull request #2974 by Luis Sagastume.
95
+ * Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
96
+ #2985 by MSP-Greg.
97
+ * Add `funding_uri ` metadata field to gemspec. Pull request #3060 by
98
+ Colby Swandale.
99
+ * Updates to some old gem-signing docs. Pull request #3063 by Tieg
100
+ Zaharia.
101
+ * Update the gem method for Gem::Installer. Pull request #3137 by Daniel
102
+ Berger.
103
+ * Simplify initial gem help output. Pull request #3148 by Olivier Lacan.
104
+ * Resolve latest version via `gem contents`. Pull request #3149 by Dan
105
+ Rice.
106
+ * Install suggestions. Pull request #3151 by Sophia Castellarin.
107
+ * Only rescue the errors we actually want to rescue. Pull request #3156 by
108
+ David Rodríguez.
109
+
110
+ Bug fixes:
111
+
112
+ * Accept not only /usr/bin/env but also /bin/env in some tests. Pull
113
+ request #3422 by Yusuke Endoh.
114
+ * Skip a test that attempts to remove the current directory on Solaris.
115
+ Pull request #3423 by Yusuke Endoh.
116
+ * Fix race condition on bundler's parallel installer. Pull request #3440
117
+ by David Rodríguez.
118
+ * Fix platform comparison check in #contains_requirable_file?. Pull
119
+ request #3495 by Benoit Daloze.
120
+ * Improve missing spec error. Pull request #3559 by Luis Sagastume.
121
+ * Fix hidden bundler template installation from rubygems updater. Pull
122
+ request #3674 by David Rodríguez.
123
+ * Fix gem update --user-install. Pull request #2901 by Luis Sagastume.
124
+ * Correct conflict list when uninstallation is prevented. Pull request
125
+ #2973 by David Rodríguez.
126
+ * Fix error when trying to find bundler with a deleted "working directo….
127
+ Pull request #3090 by Luis Sagastume.
128
+ * Fix -I require priority. Pull request #3124 by David Rodríguez.
129
+ * Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
130
+ Rodríguez.
131
+
132
+ Deprecations:
133
+
134
+ * Set deprecation warning on query command. Pull request #2967 by Luis
135
+ Sagastume.
136
+
137
+ Breaking changes:
138
+
139
+ * Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
140
+ * Minitest cleanup. Pull request #3445 by David Rodríguez.
141
+ * Remove `builder` gem requirement for `gem regenerate_index`. Pull
142
+ request #3552 by David Rodríguez.
143
+ * Remove modelines for consistency. Pull request #3714 by David Rodríguez.
144
+ * Stop using deprecated OpenSSL::Digest constants. Pull request #3763 by
145
+ Bart de Water.
146
+ * Remove Gem module deprecated methods. Pull request #3101 by Luis
147
+ Sagastume.
148
+ * Remove ubygems.rb. Pull request #3102 by Luis Sagastume.
149
+ * Remove Gem::Commands::QueryCommand. Pull request #3104 by Luis
150
+ Sagastume.
151
+ * Remove dependency installer deprecated methods. Pull request #3106 by
152
+ Luis Sagastume.
153
+ * Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
154
+ Sagastume.
155
+ * Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
156
+ Sagastume.
157
+ * Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request #3111 by
158
+ Luis Sagastume.
159
+ * Remove source_exception from Gem::Exception. Pull request #3112 by Luis
160
+ Sagastume.
161
+ * Requiring rubygems/source_specific_file is deprecated, remove it. Pull
162
+ request #3114 by Luis Sagastume.
163
+
164
+ === 3.1.4 / 2020-06-03
165
+
166
+ Minor enhancements:
167
+
168
+ * Deprecate rubyforge_project attribute only during build
169
+ time. Pull request #3609 by Josef Šimánek.
170
+ * Update links. Pull request #3610 by Josef Šimánek.
171
+ * Run CI at 3.1 branch head as well. Pull request #3677 by Josef Šimánek.
172
+ * Remove failing ubuntu-rvm CI flow. Pull request #3611 by
173
+ Josef Šimánek.
174
+
175
+ === 3.1.3 / 2020-05-05
176
+
177
+ Minor enhancements:
178
+
179
+ * Resolver: require NameTuple before use. Pull request #3171 by Olle
180
+ Jonsson.
181
+ * Use absolute paths with autoload. Pull request #3100 by David Rodríguez.
182
+ * Avoid changing $SOURCE_DATE_EPOCH. Pull request #3088 by Ellen Marie
183
+ Dash.
184
+ * Use Bundler 2.1.4. Pull request #3072 by Hiroshi SHIBATA.
185
+ * Add tests to check if Gem.ruby_version works with ruby git master.
186
+ Pull request #3049 by Yusuke Endoh.
187
+
188
+ Bug fixes:
189
+
190
+ * Fix platform comparison check in #contains_requirable_file?. Pull
191
+ request #3495 by Benoit Daloze.
192
+ * Improve gzip errors logging. Pull request #3485 by David Rodríguez.
193
+ * Fix incorrect `gem uninstall --all` message. Pull request #3483 by David
194
+ Rodríguez.
195
+ * Fix incorrect bundler version being required. Pull request #3458 by
196
+ David Rodríguez.
197
+ * Fix gem install from a gemdeps file with complex dependencies.
198
+ Pull request #3054 by Luis Sagastume.
199
+
200
+ === 3.1.2 / 2019-12-20
201
+
202
+ Minor enhancements:
203
+
204
+ * Restore non prompting `gem update --system` behavior. Pull request #3040
205
+ by David Rodríguez.
206
+ * Show only release notes for new code installed. Pull request #3041 by
207
+ David Rodríguez.
208
+ * Inform about installed `bundle` executable after `gem update --system`.
209
+ Pull request #3042 by David Rodríguez.
210
+ * Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
211
+
212
+ Bug fixes:
213
+
214
+ * Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
215
+ * Fix `gem update --system --force`. Pull request #3035 by David
216
+ Rodríguez.
217
+ * Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
2
218
 
3
219
  === 3.1.1 / 2019-12-16
4
220
 
@@ -34,12 +250,15 @@ Bug fixes:
34
250
  * Remove configuration that contained a typo. Pull request #2989 by David
35
251
  Rodríguez.
36
252
 
37
- Compatibility changes:
253
+ Deprecations:
38
254
 
39
- * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
40
255
  * Deprecate `gem generate_index --modern` and `gem generate_index
41
256
  --no-modern`. Pull request #2992 by David Rodríguez.
42
257
 
258
+ Breaking changes:
259
+
260
+ * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
261
+
43
262
  === 3.1.0.pre3 / 2019-11-11
44
263
 
45
264
  Minor enhancements:
@@ -238,29 +457,33 @@ Bug fixes:
238
457
  * Fix cryptic error on local and ignore-dependencies combination. Pull
239
458
  request #2650 by David Rodríguez.
240
459
 
241
- Compatibility changes:
460
+ Deprecations:
242
461
 
243
- * Remove commented code from command.rb. Pull request #2620 by Luis
462
+ * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
463
+ #2857 by SHIBATA Hiroshi.
464
+ * Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
244
465
  Sagastume.
466
+ * Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
467
+ Rodríguez.
468
+ * Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
469
+ Ondruch.
470
+ * Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
471
+ * Add deprecation warnings for cli options. Pull request #2607 by Luis
472
+ Sagastume.
473
+
474
+ Breaking changes:
475
+
245
476
  * Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
246
477
  * Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
247
478
  ITO.
248
479
  * Fix Kernel#warn override. Pull request #2911 by Jeremy Evans.
249
- * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
250
- #2857 by SHIBATA Hiroshi.
251
- * Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
252
- Sagastume.
253
480
  * Remove conflict.rb code that was supposed to be removed in Rubygems 3.
254
481
  Pull request #2802 by Luis Sagastume.
255
- * Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
256
- Rodríguez.
257
482
  * Compatibility cleanups. Pull request #2754 by David Rodríguez.
258
483
  * Remove `others_possible` activation request param. Pull request #2747 by
259
484
  David Rodríguez.
260
485
  * Remove dependency installer deprecated code. Pull request #2740 by Luis
261
486
  Sagastume.
262
- * Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
263
- Ondruch.
264
487
  * Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
265
488
  by SHIBATA Hiroshi.
266
489
  * Skip deprecation warning during specs. Pull request #2718 by David
@@ -269,10 +492,7 @@ Compatibility changes:
269
492
  * Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
270
493
  * Removed needless environmental variable for Travis CI. Pull request
271
494
  #2685 by SHIBATA Hiroshi.
272
- * Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
273
495
  * Removing yaml require. Pull request #2538 by Luciano Sousa.
274
- * Add deprecation warnings for cli options. Pull request #2607 by Luis
275
- Sagastume.
276
496
 
277
497
  Style changes:
278
498
 
@@ -288,6 +508,25 @@ Style changes:
288
508
  David Rodríguez.
289
509
  * Rubocop 0.71. Pull request #2785 by David Rodríguez.
290
510
 
511
+ === 3.0.8 / 2020-02-19
512
+
513
+ Bug fixes:
514
+
515
+ * Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
516
+ Nobuyoshi Nakada.
517
+
518
+ === 3.0.7 / 2020-02-18
519
+
520
+ Bug fixes:
521
+
522
+ * Fix underscore version selection for bundler #2908 by David Rodríguez.
523
+ * Add missing wrapper. Pull request #2690 by David Rodríguez.
524
+ * Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
525
+ Pull request #2782 by Luis Sagastume.
526
+ * Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
527
+ * Use IAM role to extract security-credentials for EC2 instance. Pull
528
+ request #2894 by Alexander Pakulov.
529
+
291
530
  === 3.0.6 / 2019-08-17
292
531
 
293
532
  Bug fixes:
@@ -406,7 +645,6 @@ Bug fixes:
406
645
 
407
646
  Security fixes:
408
647
 
409
- * Fixed following vulnerabilities:
410
648
  * CVE-2019-8320: Delete directory using symlink when decompressing tar
411
649
  * CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
412
650
  * CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
@@ -481,7 +719,7 @@ Minor enhancements:
481
719
  Swandale.
482
720
  * Add Gem.operating_system_defaults to allow packagers to override
483
721
  defaults. Pull request #2116 by Vít Ondruch.
484
- * Update for compatibilty with new minitest. Pull request #2118 by
722
+ * Update for compatibility with new minitest. Pull request #2118 by
485
723
  MSP-Greg.
486
724
  * Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
487
725
  * Avoid to warnings about gemspec loadings in rubygems tests. Pull request
@@ -513,11 +751,11 @@ Minor enhancements:
513
751
  SHIBATA Hiroshi.
514
752
  * Add Rake task to install dev dependencies. Pull request #2173 by Ellen
515
753
  Marie Dash.
516
- * Add new sections to the README and explaination of what RubyGems is.
754
+ * Add new sections to the README and explanation of what RubyGems is.
517
755
  Pull request #2174 by Colby Swandale.
518
756
  * Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
519
757
  SHIBATA Hiroshi.
520
- * Ignore perfomance test of version regexp pattern. Pull request #2179 by
758
+ * Ignore performance test of version regexp pattern. Pull request #2179 by
521
759
  SHIBATA Hiroshi.
522
760
  * Ignore .DS_Store files in the update_manifest task. Pull request #2199
523
761
  by Colby Swandale.
@@ -665,7 +903,7 @@ Bug fixes:
665
903
  * Fix tests when --program-suffix and similar ruby configure options are
666
904
  used. Pull request #2529 by Jeremy Evans.
667
905
 
668
- Compatibility changes:
906
+ Breaking changes:
669
907
 
670
908
  * IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
671
909
  Hiroshi.
@@ -749,13 +987,12 @@ Minor enhancements:
749
987
  by David Rodríguez.
750
988
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
751
989
  Pull request #2515 by Colby Swandale.
752
- + Update for compatibilty with new minitest. Pull request #2118 by MSP-Greg.
990
+ + Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
753
991
 
754
992
  === 2.7.9 / 2019-03-05
755
993
 
756
994
  Security fixes:
757
995
 
758
- * Fixed following vulnerabilities:
759
996
  * CVE-2019-8320: Delete directory using symlink when decompressing tar
760
997
  * CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
761
998
  * CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
@@ -827,13 +1064,16 @@ Bug fixes:
827
1064
  * Fix path checks for case insensitive filesystem. Pull request #2211 by
828
1065
  Lars Kanis.
829
1066
 
830
- Compatibility changes:
1067
+ Deprecations:
831
1068
 
832
1069
  * Deprecate unused code before removing them at #1524. Pull request #2197
833
1070
  by SHIBATA Hiroshi.
834
1071
  * Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
835
1072
  * Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
836
1073
  SHIBATA Hiroshi.
1074
+
1075
+ Breaking changes:
1076
+
837
1077
  * Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
838
1078
 
839
1079
  === 2.7.6 / 2018-02-16
@@ -845,7 +1085,7 @@ Security fixes:
845
1085
  * Fix possible Unsafe Object Deserialization Vulnerability in gem owner.
846
1086
  Fixed by Jonathan Claudius.
847
1087
  * Strictly interpret octal fields in tar headers.
848
- Discoved by plover, fixed by Samuel Giddins.
1088
+ Discovered by plover, fixed by Samuel Giddins.
849
1089
  * Raise a security error when there are duplicate files in a package.
850
1090
  Discovered by plover, fixed by Samuel Giddins.
851
1091
  * Enforce URL validation on spec homepage attribute.
@@ -1026,11 +1266,8 @@ Minor enhancements:
1026
1266
  * Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
1027
1267
  Dash.
1028
1268
 
1029
- Compatibility changes:
1269
+ Deprecations:
1030
1270
 
1031
- * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1032
- unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
1033
- by SHIBATA Hiroshi.
1034
1271
  * Deprecate Gem::InstallerTestCase#util_gem_bindir and
1035
1272
  Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
1036
1273
  * Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
@@ -1038,6 +1275,12 @@ Compatibility changes:
1038
1275
  * Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
1039
1276
  * Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
1040
1277
  Pull request #1731 by Jon Moss.
1278
+
1279
+ Breaking changes:
1280
+
1281
+ * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1282
+ unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
1283
+ by SHIBATA Hiroshi.
1041
1284
  * Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
1042
1285
  #1796 by Matej.
1043
1286
 
@@ -2442,7 +2685,7 @@ Bug fixes:
2442
2685
 
2443
2686
  === 2.0.3 / 2013-03-11
2444
2687
 
2445
- * Bug fixes:
2688
+ Bug fixes:
2446
2689
  * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
2447
2690
  #506 by André Arko
2448
2691
  * Use File.realpath to remove extra / while checking if files are
@@ -2459,7 +2702,7 @@ Bug fixes:
2459
2702
 
2460
2703
  === 2.0.2 / 2013-03-06
2461
2704
 
2462
- * Bug fixes:
2705
+ Bug fixes:
2463
2706
  * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
2464
2707
  upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
2465
2708
  * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
@@ -2467,7 +2710,7 @@ Bug fixes:
2467
2710
 
2468
2711
  === 2.0.1 / 2013-03-05
2469
2712
 
2470
- * Bug fixes:
2713
+ Bug fixes:
2471
2714
  * Lazily load RubyGems.org API credentials to avoid failure during
2472
2715
  RubyGems installation. Bug #465 by Isaac Sanders.
2473
2716
  * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
@@ -2501,7 +2744,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
2501
2744
 
2502
2745
  Changes since RubyGems 1.8.25 (including past pre-releases):
2503
2746
 
2504
- * Breaking changes:
2747
+ Breaking changes:
2505
2748
 
2506
2749
  * Deprecated Gem.unresolved_deps in favor of
2507
2750
  Gem::Specification.unresolved_deps
@@ -2523,7 +2766,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2523
2766
  * Removed support for Ruby 1.9.1
2524
2767
  * Removed many deprecated methods
2525
2768
 
2526
- * Major enhancements:
2769
+ Major enhancements:
2527
2770
 
2528
2771
  * Improved support for default gems shipping with ruby 2.0.0+
2529
2772
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2542,7 +2785,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2542
2785
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
2543
2786
  to autodetect (current and parent directories are searched).
2544
2787
 
2545
- * Minor enhancements:
2788
+ Minor enhancements:
2546
2789
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2547
2790
  #419 by Erik Hollensbe
2548
2791
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
@@ -2585,7 +2828,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2585
2828
  GEM_HOME
2586
2829
  * When building gems with non-world-readable files a warning is shown.
2587
2830
 
2588
- * Bug fixes:
2831
+ Bug fixes:
2589
2832
  * Gem.refresh now maintains the active gem list. Clearing the list would
2590
2833
  cause double-loads which would cause other bugs. Pull Request #427 by
2591
2834
  Jeremy Evans
@@ -2642,7 +2885,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2642
2885
 
2643
2886
  Changes since RubyGems 2.0.0.rc.2:
2644
2887
 
2645
- * Bug fixes:
2888
+ Bug fixes:
2646
2889
  * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
2647
2890
  #450 by Jeremy Kemper
2648
2891
  * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
@@ -2657,7 +2900,7 @@ Changes since RubyGems 2.0.0.rc.2:
2657
2900
 
2658
2901
  === 2.0.0.rc.2 / 2013-02-08
2659
2902
 
2660
- * Bug fixes:
2903
+ Bug fixes:
2661
2904
  * Fixed signature verification of gems which was broken only on master.
2662
2905
  Thanks to Brian Buchanan.
2663
2906
  * Proper exceptions are raised when verifying an unsigned gem. Thanks to
@@ -2665,13 +2908,13 @@ Changes since RubyGems 2.0.0.rc.2:
2665
2908
 
2666
2909
  === 2.0.0.rc.1 / 2013-01-08
2667
2910
 
2668
- * Minor enhancements:
2911
+ Minor enhancements:
2669
2912
  * This release of RubyGems can push gems to rubygems.org. Ordinarily
2670
2913
  prerelease versions of RubyGems cannot push gems.
2671
2914
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2672
2915
  #419 by Erik Hollensbe
2673
2916
 
2674
- * Bug fixes:
2917
+ Bug fixes:
2675
2918
  * Fixed exception raised when attempting to push gems to rubygems.org. Bug
2676
2919
  #418 by André Arko
2677
2920
  * Gem installation will fail if RubyGems cannot load the specification from
@@ -2679,24 +2922,24 @@ Changes since RubyGems 2.0.0.rc.2:
2679
2922
 
2680
2923
  === 2.0.0.preview2.2 / 2012-12-14
2681
2924
 
2682
- * Minor enhancements:
2925
+ Minor enhancements:
2683
2926
  * Added a cmake builder. Pull request #265 by Allan Espinosa.
2684
2927
  * Removed rubyforge page from gem list output
2685
2928
 
2686
- * Bug fixes:
2929
+ Bug fixes:
2687
2930
  * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
2688
2931
  #413 by Jeremy Kemper.
2689
2932
 
2690
2933
  === 2.0.0.preview2.1 / 2012-12-08
2691
2934
 
2692
- * Minor enhancements:
2935
+ Minor enhancements:
2693
2936
  * Gem::DependencyInstaller now passes build_args down to the installer.
2694
2937
  Pull Request #412 by Sam Rawlins.
2695
2938
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
2696
2939
  broken. Now you must manually say "yes". Pull Request #406 by Shannon
2697
2940
  Skipper.
2698
2941
 
2699
- * Bug fixes:
2942
+ Bug fixes:
2700
2943
  * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
2701
2944
  * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
2702
2945
  * Only update the spec cache when we have permission. Ruby Bug #7509
@@ -2714,7 +2957,7 @@ This release contains two commits not present in Ruby 2.0.0.preview2. One
2714
2957
  commit is for ruby 1.8.7 support, the second allows RubyGems to work under
2715
2958
  $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2716
2959
 
2717
- * Breaking changes:
2960
+ Breaking changes:
2718
2961
 
2719
2962
  * Deprecated Gem.unresolved_deps in favor of
2720
2963
  Gem::Specification.unresolved_deps
@@ -2736,7 +2979,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2736
2979
  * Removed support for Ruby 1.9.1
2737
2980
  * Removed many deprecated methods
2738
2981
 
2739
- * Major enhancements:
2982
+ Major enhancements:
2740
2983
 
2741
2984
  * Improved support for default gems shipping with ruby 2.0.0+
2742
2985
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2755,7 +2998,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2755
2998
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
2756
2999
  to autodetect (current and parent directories are searched).
2757
3000
 
2758
- * Minor enhancements:
3001
+ Minor enhancements:
2759
3002
 
2760
3003
  * Added --only-executables option to `gem pristine`. Fixes #326
2761
3004
  * Added -I flag for 'gem query' to exclude installed items
@@ -2790,7 +3033,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2790
3033
  GEM_HOME
2791
3034
  * When building gems with non-world-readable files a warning is shown.
2792
3035
 
2793
- * Bug fixes:
3036
+ Bug fixes:
2794
3037
 
2795
3038
  * Added PID to setup bin_file while installing RubyGems to protect against
2796
3039
  errors. Fixes #328 by ConradIrwin
@@ -2875,7 +3118,7 @@ Bug fixes:
2875
3118
 
2876
3119
  === 1.8.25 / 2013-01-24
2877
3120
 
2878
- * Bug fixes:
3121
+ Bug fixes:
2879
3122
  * Added 11627 to setup bin_file location to protect against errors. Fixes
2880
3123
  #328 by ConradIrwin
2881
3124
  * Specification#ruby_code didn't handle Requirement with multiple
@@ -2886,7 +3129,7 @@ Bug fixes:
2886
3129
 
2887
3130
  === 1.8.24 / 2012-04-27
2888
3131
 
2889
- * 1 bug fix:
3132
+ Bug fixes:
2890
3133
 
2891
3134
  * Install the .pem files properly. Fixes #320
2892
3135
  * Remove OpenSSL dependency from the http code path
@@ -2925,20 +3168,20 @@ You may also set :ssl_verify_mode to 0 to completely disable SSL
2925
3168
  certificate checks, but this is not recommended.
2926
3169
 
2927
3170
 
2928
- * 2 security fixes:
3171
+ Security fixes:
2929
3172
  * Disallow redirects from https to http
2930
3173
  * Turn on verification of server SSL certs
2931
3174
 
2932
- * 1 minor feature:
3175
+ Minor enhancements:
2933
3176
  * Add --clear-sources to fetch
2934
3177
 
2935
- * 2 bug fixes:
3178
+ Bug fixes:
2936
3179
  * Use File.identical? to check if two files are the same.
2937
3180
  * Fixed init_with warning when using psych
2938
3181
 
2939
3182
  === 1.8.22 / 2012-04-13
2940
3183
 
2941
- * 4 bug fixes:
3184
+ Bug fixes:
2942
3185
 
2943
3186
  * Workaround for psych/syck YAML date parsing issue
2944
3187
  * Don't trust the encoding of ARGV. Fixes #307
@@ -2947,14 +3190,14 @@ certificate checks, but this is not recommended.
2947
3190
 
2948
3191
  === 1.8.21 / 2012-03-22
2949
3192
 
2950
- * 2 bug fixes:
3193
+ Bug fixes:
2951
3194
 
2952
3195
  * Add workaround for buggy yaml output from 1.9.2
2953
3196
  * Force 1.9.1 to remove it's prelude code. Fixes #305
2954
3197
 
2955
3198
  === 1.8.20 / 2012-03-21
2956
3199
 
2957
- * 4 bug fixes:
3200
+ Bug fixes:
2958
3201
 
2959
3202
  * Add --force to `gem build` to skip validation. Fixes #297
2960
3203
  * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
@@ -2963,7 +3206,7 @@ certificate checks, but this is not recommended.
2963
3206
 
2964
3207
  === 1.8.19 / 2012-03-14
2965
3208
 
2966
- * 3 bug fixes:
3209
+ Bug fixes:
2967
3210
 
2968
3211
  * Handle loading psych vs syck properly. Fixes #298
2969
3212
  * Make sure Date objects don't leak in via Marshal
@@ -2971,7 +3214,7 @@ certificate checks, but this is not recommended.
2971
3214
 
2972
3215
  === 1.8.18 / 2012-03-11
2973
3216
 
2974
- * 4 bug fixes:
3217
+ Bug fixes:
2975
3218
 
2976
3219
  * Use Psych API to emit more compatible YAML
2977
3220
  * Download and write inside `gem fetch` directly. Fixes #289
@@ -2981,12 +3224,12 @@ certificate checks, but this is not recommended.
2981
3224
 
2982
3225
  === 1.8.17 / 2012-02-17
2983
3226
 
2984
- * 2 minor enhancements:
3227
+ Minor enhancements:
2985
3228
 
2986
3229
  * Add MacRuby to the list of special cases for platforms (ferrous26)
2987
3230
  * Add a default for where to install rubygems itself
2988
3231
 
2989
- * 3 bug fixes:
3232
+ Bug fixes:
2990
3233
 
2991
3234
  * Fixed gem loading issue caused by dependencies not resolving.
2992
3235
  * Fixed umask error when stdlib is required and unresolved dependencies exist.
@@ -2996,7 +3239,7 @@ certificate checks, but this is not recommended.
2996
3239
 
2997
3240
  === 1.8.16 / 2012-02-12
2998
3241
 
2999
- * 3 bug fixes:
3242
+ Bug fixes:
3000
3243
 
3001
3244
  * Fix gem specification loading when encoding is not UTF-8. #146
3002
3245
  * Allow group writable if umask allows it already.
@@ -3004,37 +3247,39 @@ certificate checks, but this is not recommended.
3004
3247
 
3005
3248
  === 1.8.15 / 2012-01-06
3006
3249
 
3007
- * 1 bug fix:
3250
+ Bug fixes:
3008
3251
 
3009
3252
  * Don't eager load yaml, it creates a bad loop. Fixes #256
3010
3253
 
3011
3254
  === 1.8.14 / 2012-01-05
3012
3255
 
3013
- * 2 bug fixes:
3256
+ Bug fixes:
3014
3257
 
3015
3258
  * Ignore old/bad cache data in Version
3016
3259
  * Make sure our YAML workarounds are loaded properly. Fixes #250.
3017
3260
 
3018
3261
  === 1.8.13 / 2011-12-21
3019
3262
 
3020
- * 1 bug fix:
3263
+ Bug fixes:
3021
3264
 
3022
3265
  * Check loaded_specs properly when trying to satisfy a dep
3023
3266
 
3024
- * 2 minor enhancements:
3267
+ Minor enhancements:
3025
3268
 
3026
3269
  * Remove using #loaded_path? for performance
3027
3270
  * Remove Zlib workaround for Windows build.
3028
3271
 
3029
3272
  === 1.8.12 / 2011-12-02
3030
3273
 
3031
- * Bug fix:
3274
+ Bug fixes:
3275
+
3032
3276
  * Handle more cases where Syck's DefaultKey showed up in requirements
3033
3277
  and wasn't cleaned out.
3034
3278
 
3035
3279
  === 1.8.11 / 2011-10-03
3036
3280
 
3037
- * Bug fix:
3281
+ Bug fixes:
3282
+
3038
3283
  * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
3039
3284
  namespace.
3040
3285
 
@@ -3044,7 +3289,7 @@ RubyGems 1.8.10 contains a security fix that prevents malicious gems from
3044
3289
  executing code when their specification is loaded. See
3045
3290
  https://github.com/rubygems/rubygems/pull/165 for details.
3046
3291
 
3047
- * 5 bug fixes:
3292
+ Bug fixes:
3048
3293
 
3049
3294
  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
3050
3295
  and %q to prevent code injection. Issue #165 by Postmodern
@@ -3057,19 +3302,19 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3057
3302
 
3058
3303
  === 1.8.9 / 2011-08-23
3059
3304
 
3060
- * Bug fixes:
3305
+ Bug fixes:
3061
3306
 
3062
3307
  * Fixed uninstalling multiple gems using `gem uninstall`
3063
3308
  * Gem.use_paths splatted to take multiple paths! Issue #148
3064
3309
 
3065
3310
  === 1.8.8 / 2011-08-11
3066
3311
 
3067
- * Bug fix:
3312
+ Bug fixes:
3068
3313
  * The encoding of a gem's YAML spec is now UTF-8. Issue #149
3069
3314
 
3070
3315
  === 1.8.7 / 2011-08-04
3071
3316
 
3072
- * Bug fixes:
3317
+ Bug fixes:
3073
3318
  * Added missing require for `gem uninstall --format-executable`
3074
3319
  * The correct name of the executable being uninstalled is now displayed with
3075
3320
  --format-executable
@@ -3083,12 +3328,12 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3083
3328
 
3084
3329
  === 1.8.6 / 2011-07-25
3085
3330
 
3086
- * 1 minor enhancement:
3331
+ Minor enhancements:
3087
3332
 
3088
3333
  * Add autorequires and delay startup of RubyGems until require is called.
3089
3334
  See Ruby bug #4962
3090
3335
 
3091
- * 9 bug fixes:
3336
+ Bug fixes:
3092
3337
 
3093
3338
  * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
3094
3339
  * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
@@ -3102,25 +3347,25 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3102
3347
 
3103
3348
  === 1.8.5 / 2011-05-31
3104
3349
 
3105
- * 2 minor enhancement:
3350
+ Minor enhancements:
3106
3351
 
3107
3352
  * The -u option to 'update local source cache' is official deprecated.
3108
3353
  * Remove has_rdoc deprecations from Specification.
3109
3354
 
3110
- * 2 bug fixes:
3355
+ Bug fixes:
3111
3356
 
3112
3357
  * Handle bad specs more gracefully.
3113
3358
  * Reset any Gem paths changed in the installer.
3114
3359
 
3115
3360
  === 1.8.4 / 2011-05-25
3116
3361
 
3117
- * 1 minor enhancement:
3362
+ Minor enhancements:
3118
3363
 
3119
3364
  * Removed default_executable deprecations from Specification.
3120
3365
 
3121
3366
  === 1.8.3 / 2011-05-19
3122
3367
 
3123
- * 4 bug fixes:
3368
+ Bug fixes:
3124
3369
 
3125
3370
  * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
3126
3371
  Shota Fukumori
@@ -3131,12 +3376,12 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3131
3376
 
3132
3377
  === 1.8.2 / 2011-05-11
3133
3378
 
3134
- * 2 minor enhancements:
3379
+ Minor enhancements:
3135
3380
 
3136
3381
  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
3137
3382
  * Print out a warning about missing executables.
3138
3383
 
3139
- * 3 bug fixes:
3384
+ Bug fixes:
3140
3385
 
3141
3386
  * Added missing requires to fix various upgrade issues.
3142
3387
  * `gem pristine` respects multiple gem repositories.
@@ -3144,11 +3389,11 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3144
3389
 
3145
3390
  === 1.8.1 / 2011-05-05
3146
3391
 
3147
- * 1 minor enhancement:
3392
+ Minor enhancements:
3148
3393
 
3149
3394
  * Added Gem::Requirement#specific? and Gem::Dependency#specific?
3150
3395
 
3151
- * 4 bug fixes:
3396
+ Bug fixes:
3152
3397
 
3153
3398
  * Typo on Indexer rendered it useless on Windows
3154
3399
  * gem dep can fetch remote dependencies for non-latest gems again.
@@ -3170,7 +3415,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
3170
3415
  --build-arg` to regenerate a gem with an extension where it requires special
3171
3416
  build arguments.
3172
3417
 
3173
- * 24(+) Deprecations (WOOT!):
3418
+ Deprecations:
3174
3419
 
3175
3420
  * DependencyList.from_source_index deprecated the source_index argument.
3176
3421
  * Deprecated Dependency.new(/regex/).
@@ -3191,13 +3436,13 @@ build arguments.
3191
3436
  * Deprecated all of Gem::GemPathSearcher.
3192
3437
  * Deprecated Gem::Specification#default_executable.
3193
3438
 
3194
- * 2 major enhancements:
3439
+ Major enhancements:
3195
3440
 
3196
3441
  * Gem::SourceIndex functionality has been moved to Gem::Specification.
3197
3442
  Gem::SourceIndex is completely disconnected from Gem::Specification
3198
3443
  * Refactored GemPathSearcher entirely out. RIPMF
3199
3444
 
3200
- * 41 minor enhancements:
3445
+ Minor enhancements:
3201
3446
 
3202
3447
  * Added CommandManager#unregister_command
3203
3448
  * Added Dependency#matching_specs + to_specs.
@@ -3246,7 +3491,7 @@ build arguments.
3246
3491
  extensions.
3247
3492
  * `gem pristine` can now restore multiple gems.
3248
3493
 
3249
- * 6 bug fixes:
3494
+ Bug fixes:
3250
3495
 
3251
3496
  * DependencyInstaller passed around a source_index instance but used
3252
3497
  Gem.source_index.
@@ -3260,13 +3505,13 @@ build arguments.
3260
3505
 
3261
3506
  === 1.7.1 / 2011-03-32
3262
3507
 
3263
- * 1 bug fix:
3508
+ Bug fixes:
3264
3509
  * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
3265
3510
  `rake check_manifest` showing a diff would not exit with an error.)
3266
3511
 
3267
3512
  === 1.7.0 / 2011-03-32
3268
3513
 
3269
- * 16 Deprecations (woot!)
3514
+ Deprecations:
3270
3515
  * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
3271
3516
  cache.
3272
3517
  * Deprecated RemoteFetcher#open_uri_or_path.
@@ -3278,7 +3523,7 @@ build arguments.
3278
3523
  test_suite_file(=).
3279
3524
  * Deprecated Specification#has_rdoc= and default_executable=
3280
3525
 
3281
- * 26 minor enhancements:
3526
+ Minor enhancements:
3282
3527
  * Added stupid simple deprecation module.
3283
3528
  * Added --spec option to `gem unpack` to output a gem's original metadata
3284
3529
  * Added packaging option to Specification#validate
@@ -3310,7 +3555,7 @@ build arguments.
3310
3555
  * UpdateCommand#gems_to_update now returns (name, version) pairs.
3311
3556
  * UpdateCommand#which_to_update now takes an optional system argument.
3312
3557
 
3313
- * 11 bug fixes:
3558
+ Bug fixes:
3314
3559
  * Added missing remote fetcher require to pristine command (aarnell)
3315
3560
  * Building gems now checks to ensure all required fields are non-nil
3316
3561
  * Fix option parser when summary is nil.
@@ -3328,7 +3573,7 @@ build arguments.
3328
3573
 
3329
3574
  === 1.6.2 / 2011-03-08
3330
3575
 
3331
- Bug Fixes:
3576
+ Bug fixes:
3332
3577
 
3333
3578
  * require of an activated gem could cause activation conflicts. Fixes
3334
3579
  Bug #29056 by Dave Verwer.
@@ -3336,7 +3581,7 @@ Bug Fixes:
3336
3581
 
3337
3582
  === 1.6.1 / 2011-03-03
3338
3583
 
3339
- Bug Fixes:
3584
+ Bug fixes:
3340
3585
 
3341
3586
  * Installation no longer fails when a dependency from a version that won't be
3342
3587
  installed is unsatisfied.
@@ -3347,7 +3592,7 @@ Bug Fixes:
3347
3592
 
3348
3593
  === 1.6.0 / 2011-02-29
3349
3594
 
3350
- 4 Deprecations:
3595
+ Deprecations:
3351
3596
 
3352
3597
  * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
3353
3598
  'thread' to their applications.
@@ -3356,13 +3601,13 @@ Bug Fixes:
3356
3601
  * Gem::LoadError#version_requirements has been removed. Use
3357
3602
  Gem::LoadError#requirement.
3358
3603
 
3359
- 2 Major Enhancements:
3604
+ Major enhancements:
3360
3605
 
3361
3606
  * Rewrote how Gem::activate (gem and require) resolves dependencies.
3362
3607
  * Gem::LoadError#version_requirement has been removed. Use
3363
3608
  Gem::LoadError#requirement.
3364
3609
 
3365
- 17 Minor Enhancments:
3610
+ Minor enhancements:
3366
3611
 
3367
3612
  * Added --key to `gem push` for setting alternate API keys.
3368
3613
  * Added --format-executable support to gem uninstall.
@@ -3387,7 +3632,7 @@ Bug Fixes:
3387
3632
  locally cached gem specifications.
3388
3633
  * SpecFetcher.fetch_spec can now take a string source_uri.
3389
3634
 
3390
- 10 Bug Fixes:
3635
+ Bug fixes:
3391
3636
 
3392
3637
  * Added missing require of Gem::RemoteFetcher to the unpack command.
3393
3638
  * RubyGems now completely removes a previous install when reinstalling.
@@ -3402,14 +3647,14 @@ Bug Fixes:
3402
3647
 
3403
3648
  === 1.5.3 / 2011-02-26
3404
3649
 
3405
- Bug Fixes:
3650
+ Bug fixes:
3406
3651
 
3407
3652
  * Fix for a bug in Syck which causes install failures for gems packaged with
3408
3653
  Psych. Bug #28965 by Aaron Patterson.
3409
3654
 
3410
3655
  === 1.5.2 / 2011-02-10
3411
3656
 
3412
- Bug Fixes:
3657
+ Bug fixes:
3413
3658
 
3414
3659
  * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
3415
3660
 
@@ -3417,11 +3662,11 @@ Bug Fixes:
3417
3662
 
3418
3663
  ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3419
3664
 
3420
- Minor Enhancement:
3665
+ Minor enhancements:
3421
3666
 
3422
3667
  * Added ability to do gem update --system X.Y.Z.
3423
3668
 
3424
- Bug Fixes:
3669
+ Bug fixes:
3425
3670
 
3426
3671
  * Scrub !!null YAML from 1.9.2 (install and build).
3427
3672
  * Added missing requires for user_interaction.
@@ -3434,12 +3679,12 @@ Bug Fixes:
3434
3679
 
3435
3680
  ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3436
3681
 
3437
- Major Enhancements:
3682
+ Major enhancements:
3438
3683
 
3439
3684
  * Finally fixed all known 1.9.x issues. Upgrading is now possible!
3440
3685
  * Merged huge 1.3.7/ruby-core changes to master.
3441
3686
 
3442
- Minor Enhancements:
3687
+ Minor enhancements:
3443
3688
 
3444
3689
  * Added UPGRADING.rdoc to help deal with 1.9 issues.
3445
3690
  * Gem::Format now gives better errors for corrupt gem files and includes paths
@@ -3452,7 +3697,7 @@ Minor Enhancements:
3452
3697
  * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
3453
3698
  Erik Hollensbe.
3454
3699
 
3455
- Bug Fixes:
3700
+ Bug fixes:
3456
3701
 
3457
3702
  * `gem update` was implicitly doing --system.
3458
3703
  * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
@@ -3478,7 +3723,7 @@ Since apparently nobody reads my emails, blog posts or the README:
3478
3723
 
3479
3724
  DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
3480
3725
 
3481
- Bug fix:
3726
+ Bug fixes:
3482
3727
 
3483
3728
  * Specification#load was untainting a frozen string (via `gem build *.spec`)
3484
3729
 
@@ -3492,7 +3737,7 @@ You have been warned!
3492
3737
 
3493
3738
  NOTE: We've switched to git/github. See README.rdoc for details.
3494
3739
 
3495
- New features:
3740
+ Features:
3496
3741
 
3497
3742
  * Added --launch option to `gem server`. (gthiesfeld)
3498
3743
  * Added fuzzy name matching on install failures. (gstark/presidentbeef)
@@ -3517,14 +3762,14 @@ Bug fixes:
3517
3762
 
3518
3763
  NOTE:
3519
3764
 
3520
- http://rubygems.org is now the default source for downloading gems.
3765
+ https://rubygems.org/ is now the default source for downloading gems.
3521
3766
 
3522
3767
  You may have sources set via ~/.gemrc, so you should replace
3523
- http://gems.rubyforge.org with http://rubygems.org
3768
+ http://gems.rubyforge.org with https://rubygems.org/
3524
3769
 
3525
3770
  http://gems.rubyforge.org will continue to work for the foreseeable future.
3526
3771
 
3527
- New features:
3772
+ Features:
3528
3773
 
3529
3774
  * `gem` commands
3530
3775
  * `gem install` and `gem fetch` now report alternate platforms when a
@@ -3557,7 +3802,7 @@ Bug fixes:
3557
3802
 
3558
3803
  === 1.3.6 / 2010-02-17
3559
3804
 
3560
- New features:
3805
+ Features:
3561
3806
 
3562
3807
  * `gem` commands
3563
3808
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
@@ -3588,7 +3833,7 @@ Bug fixes:
3588
3833
  * Gem::RemoteFetcher no longer copies the file if it is where we want it.
3589
3834
  Patch #27409 by Jakub Šťastný.
3590
3835
 
3591
- Deprecation Notices:
3836
+ Deprecations:
3592
3837
 
3593
3838
  * lib/rubygems/timer.rb has been removed.
3594
3839
  * Gem::Dependency#version_requirements is deprecated and will be removed on or
@@ -3604,7 +3849,7 @@ Bug fixes:
3604
3849
  * Fix use of prerelease gems.
3605
3850
  * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
3606
3851
 
3607
- Deprecation Notices:
3852
+ Deprecations:
3608
3853
 
3609
3854
  * Bulk index update is no longer supported (the code currently remains, but not
3610
3855
  the tests)
@@ -3613,7 +3858,7 @@ Deprecation Notices:
3613
3858
 
3614
3859
  === 1.3.4 / 2009-05-03
3615
3860
 
3616
- Bug Fixes:
3861
+ Bug fixes:
3617
3862
 
3618
3863
  * Fixed various warnings
3619
3864
  * Gem::ruby_version works correctly for 1.8 branch and trunk
@@ -3624,7 +3869,7 @@ Bug Fixes:
3624
3869
  drives. Bug #25882 by Lars Christensen
3625
3870
  * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
3626
3871
 
3627
- Deprecation Notices:
3872
+ Deprecations:
3628
3873
 
3629
3874
  * Bulk index update is no longer supported (the code currently remains, but not
3630
3875
  the tests)
@@ -3633,7 +3878,7 @@ Deprecation Notices:
3633
3878
 
3634
3879
  === 1.3.3 / 2009-05-04
3635
3880
 
3636
- New Features:
3881
+ Features:
3637
3882
 
3638
3883
  * `gem server` allows port names (from /etc/services) with --port.
3639
3884
  * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
@@ -3643,7 +3888,7 @@ New Features:
3643
3888
  * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
3644
3889
  * RDoc is now generated regardless of Gem::Specification#has_rdoc?
3645
3890
 
3646
- Bug Fixes:
3891
+ Bug fixes:
3647
3892
 
3648
3893
  * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
3649
3894
  Eisenberg.
@@ -3665,7 +3910,7 @@ Bug Fixes:
3665
3910
  * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
3666
3911
  reported by Alf Mikula.
3667
3912
 
3668
- Deprecation Notices:
3913
+ Deprecations:
3669
3914
 
3670
3915
  * Gem::manage_gems has been removed.
3671
3916
  * Time::today has been removed early. There was no way to make it warn and be
@@ -3673,7 +3918,7 @@ Deprecation Notices:
3673
3918
 
3674
3919
  === 1.3.2 / 2009-04-15
3675
3920
 
3676
- Select New Features:
3921
+ Features:
3677
3922
 
3678
3923
  * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
3679
3924
  This can be used to add commands (See Gem::CommandManager) or add
@@ -3701,7 +3946,7 @@ Select New Features:
3701
3946
  * Modern indicies can now be updated incrementally.
3702
3947
  * Legacy indicies can be updated separately from modern.
3703
3948
 
3704
- Select Bugs Fixed:
3949
+ Bug fixes:
3705
3950
 
3706
3951
  * Better gem activation error message. Patch #23082.
3707
3952
  * Kernel methods are now private. Patch #20801 by James M. Lawrence.
@@ -3727,7 +3972,7 @@ Select Bugs Fixed:
3727
3972
  * Deal with extraneous quotation mark when autogenerating .bat file on MS
3728
3973
  Windows. Bug #22712.
3729
3974
 
3730
- Deprecation Notices:
3975
+ Deprecations:
3731
3976
 
3732
3977
  * Gem::manage_gems has been removed.
3733
3978
  * Time::today will be removed in RubyGems 1.4.
@@ -3737,7 +3982,7 @@ Lavena and Daniel Berger for continuing windows support.
3737
3982
 
3738
3983
  === 1.3.1 / 2008-10-28
3739
3984
 
3740
- Bugs fixed:
3985
+ Bug fixes:
3741
3986
 
3742
3987
  * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
3743
3988
  issues related to no uid support under Windows.
@@ -3748,13 +3993,13 @@ Bugs fixed:
3748
3993
  * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
3749
3994
  * Silence PATH warning.
3750
3995
 
3751
- Deprecation Notices:
3996
+ Deprecations:
3752
3997
 
3753
3998
  * Gem::manage_gems will be removed on or after March 2009.
3754
3999
 
3755
4000
  === 1.3.0 / 2008-09-25
3756
4001
 
3757
- New features:
4002
+ Features:
3758
4003
 
3759
4004
  * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
3760
4005
  stdout is not a TTY, except with --both.
@@ -3768,12 +4013,12 @@ New features:
3768
4013
  * RubyGems now updates the ri cache when the rdoc gem is installed and
3769
4014
  documentation is generated.
3770
4015
 
3771
- Deprecation Notices:
4016
+ Deprecations:
3772
4017
 
3773
4018
  * Gem::manage_gems now warns when called. It will be removed on or after March
3774
4019
  2009.
3775
4020
 
3776
- Bugs Fixed:
4021
+ Bug fixes:
3777
4022
 
3778
4023
  * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
3779
4024
  Bug #20775 by Hemant Kumar.
@@ -3797,7 +4042,7 @@ Bugs Fixed:
3797
4042
  * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
3798
4043
  * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
3799
4044
 
3800
- Other Changes Include:
4045
+ Minor enhancements:
3801
4046
 
3802
4047
  * `gem help install` now describes _version_ argument to executable stubs
3803
4048
  * `gem help environment` describes environment variables and ~/.gemrc and
@@ -3825,7 +4070,7 @@ Other Changes Include:
3825
4070
 
3826
4071
  === 1.2.0 / 2008-06-21
3827
4072
 
3828
- New features:
4073
+ Features:
3829
4074
 
3830
4075
  * RubyGems no longer performs bulk updates and instead only fetches the gemspec
3831
4076
  files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
@@ -3844,7 +4089,7 @@ New features:
3844
4089
  * setup.rb now handles --vendor and --destdir for packagers
3845
4090
  * `gem stale` command that lists gems by last access time
3846
4091
 
3847
- Bugs Fixed:
4092
+ Bug fixes:
3848
4093
 
3849
4094
  * File modes from gems are now honored, patch #19737
3850
4095
  * Marshal Gem::Specification objects from the future can now be loaded.
@@ -3859,7 +4104,7 @@ Bugs Fixed:
3859
4104
  * Gem::DependencyInstaller resets installed gems every install, bug #19444
3860
4105
  * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
3861
4106
 
3862
- Other Changes Include:
4107
+ Minor enhancements:
3863
4108
 
3864
4109
  * setup.rb
3865
4110
  * stub files created by RubyGems 0.7.x and older are no longer removed. When
@@ -3880,7 +4125,7 @@ Other Changes Include:
3880
4125
 
3881
4126
  === 1.1.1 / 2008-04-11
3882
4127
 
3883
- Bugs Fixed:
4128
+ Bug fixes:
3884
4129
 
3885
4130
  * Gem.prefix now returns non-nil only when RubyGems was installed outside
3886
4131
  sitelibdir or libdir.
@@ -3897,7 +4142,7 @@ Bugs Fixed:
3897
4142
 
3898
4143
  === 1.1.0 / 2008-03-29
3899
4144
 
3900
- New features:
4145
+ Features:
3901
4146
 
3902
4147
  * RubyGems now uses persistent connections on index updates. Index updates are
3903
4148
  much faster now.
@@ -3909,7 +4154,7 @@ New features:
3909
4154
  * `gem spec` now extracts specifications from .gem files.
3910
4155
  * `gem query --installed` to aid automation of checking for gems.
3911
4156
 
3912
- Bugs Fixed:
4157
+ Bug fixes:
3913
4158
 
3914
4159
  * RubyGems works with both Config and RbConfig now.
3915
4160
  * Executables are now cleaned upon uninstall.
@@ -3925,7 +4170,7 @@ Bugs Fixed:
3925
4170
  * Gem stub scripts on windows now work outside Gem.bindir.
3926
4171
  * `gem sources -r` now works without network access.
3927
4172
 
3928
- Other Changes Include:
4173
+ Minor enhancements:
3929
4174
 
3930
4175
  * RubyGems now requires Ruby > 1.8.3.
3931
4176
  * Release notes are now printed upon installation.
@@ -3938,24 +4183,24 @@ For a full list of changes to RubyGems, see the ChangeLog file.
3938
4183
 
3939
4184
  === 1.0.1 / 2007-12-20
3940
4185
 
3941
- Bugs Fixed:
4186
+ Bug fixes:
3942
4187
 
3943
4188
  * Installation on Ruby 1.8.3 through 1.8.5 fixed
3944
4189
  * `gem build` on 1.8.3 fixed
3945
4190
 
3946
- Other Changes Include:
4191
+ Minor enhancements:
3947
4192
 
3948
4193
  * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
3949
4194
  this is official in RubyGems 1.0.1.
3950
4195
 
3951
4196
  === 1.0.0 / 2007-12-20
3952
4197
 
3953
- Major New Features Include:
4198
+ Features:
3954
4199
 
3955
4200
  * RubyGems warns about various problems with gemspecs during gem building
3956
4201
  * More-consistent versioning for the RubyGems software
3957
4202
 
3958
- Other Changes Include:
4203
+ Minor enhancements:
3959
4204
 
3960
4205
  * Fixed various bugs and problems with installing gems on Windows
3961
4206
  * Fixed using `gem server` for installing gems
@@ -3969,7 +4214,7 @@ Other Changes Include:
3969
4214
  * `gem unpack` can now unpack into a specific directory with --target
3970
4215
  * OpenSSL is no longer required by default
3971
4216
 
3972
- Deprecations and Deletions:
4217
+ Breaking changes:
3973
4218
 
3974
4219
  * Kernel#require_gem has been removed
3975
4220
  * Executables without a shebang will not be wrapped in a future version, this
@@ -3983,7 +4228,7 @@ Deprecations and Deletions:
3983
4228
 
3984
4229
  === 0.9.5 / 2007-11-19
3985
4230
 
3986
- Major New Features Include:
4231
+ Features:
3987
4232
 
3988
4233
  * Platform support
3989
4234
  * Automatic installation of platform gems
@@ -3995,7 +4240,7 @@ Major New Features Include:
3995
4240
  * Improved stubs and `gem.bat` on mswin, including better compatibility
3996
4241
  with the One-Click Installer.
3997
4242
 
3998
- Other Changes Include:
4243
+ Minor enhancements:
3999
4244
 
4000
4245
  * Time::today is deprecated and will be removed at a future date
4001
4246
  * Gem::manage_gems is deprecated and will be removed at a future date
@@ -4046,7 +4291,7 @@ If you are experiencing problems with the source index (e.g. strange
4046
4291
  "No Method" errors), or problems with zlib (e.g. "Buffer Error"
4047
4292
  messsage), we recommend upgrading to RubyGems 0.9.4.
4048
4293
 
4049
- Bug Fixes Include:
4294
+ Bug fixes:
4050
4295
 
4051
4296
  * Several people have been experiencing problems with no method errors
4052
4297
  on the source index cache. The source index cache is now a bit more
@@ -4060,7 +4305,7 @@ Bug Fixes Include:
4060
4305
 
4061
4306
  === 0.9.3 / 2007-05-10
4062
4307
 
4063
- Bug Fixes Include:
4308
+ Bug fixes:
4064
4309
 
4065
4310
  The ZLib library on Windows will occasionally complains about a buffer error
4066
4311
  when unpacking gems. The Gems software has a workaround for that problem, but
@@ -4070,7 +4315,7 @@ have permanently enabled the work around on all versions.
4070
4315
 
4071
4316
  === 0.9.2 / 2007-02-05
4072
4317
 
4073
- Bug Fixes Include:
4318
+ Bug fixes:
4074
4319
 
4075
4320
  * The "unpack" command now works properly.
4076
4321
  * User name and password are now passed properly to the authenticating
@@ -4088,7 +4333,7 @@ number one change is that we can now download the gem index
4088
4333
  incrementally. This will greatly speed up the gem command when only a
4089
4334
  few gems are out of date.
4090
4335
 
4091
- Major Enhancments include:
4336
+ Major enhancements:
4092
4337
 
4093
4338
  * The gem index is now downloaded incrementally, only updating entries
4094
4339
  that are out of date. If more than 50 entries are out of date, we
@@ -4104,7 +4349,7 @@ Major Enhancments include:
4104
4349
  * A gemri command is included to read gem RI docs (only needed for
4105
4350
  Ruby 1.8.4 or earlier).
4106
4351
 
4107
- Minor enhancements include:
4352
+ Minor enhancements:
4108
4353
 
4109
4354
  * Version 0.0.0 is now a valid gem version.
4110
4355
  * Better detection of missing SSL functionality.
@@ -4118,7 +4363,7 @@ Minor enhancements include:
4118
4363
  * .rbw is now a supported suffix for RubyGem's custom require.
4119
4364
  * Several Ruby 1.9 compatibility fixes (Eric Hodel).
4120
4365
 
4121
- Bug Fixes:
4366
+ Bug fixes:
4122
4367
 
4123
4368
  * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
4124
4369
  cross-Ruby version compatibility issues.