rubygems-update 3.2.0.rc.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 (445) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +23 -8
  3. data/History.txt +208 -143
  4. data/Manifest.txt +26 -50
  5. data/Rakefile +11 -49
  6. data/bundler/CHANGELOG.md +725 -687
  7. data/bundler/UPGRADING.md +2 -2
  8. data/bundler/lib/bundler.rb +6 -3
  9. data/bundler/lib/bundler/build_metadata.rb +4 -12
  10. data/bundler/lib/bundler/cli.rb +27 -14
  11. data/bundler/lib/bundler/cli/add.rb +1 -1
  12. data/bundler/lib/bundler/cli/cache.rb +1 -7
  13. data/bundler/lib/bundler/cli/clean.rb +1 -1
  14. data/bundler/lib/bundler/cli/common.rb +14 -0
  15. data/bundler/lib/bundler/cli/doctor.rb +1 -1
  16. data/bundler/lib/bundler/cli/exec.rb +1 -1
  17. data/bundler/lib/bundler/cli/fund.rb +36 -0
  18. data/bundler/lib/bundler/cli/gem.rb +1 -1
  19. data/bundler/lib/bundler/cli/info.rb +2 -1
  20. data/bundler/lib/bundler/cli/init.rb +1 -1
  21. data/bundler/lib/bundler/cli/inject.rb +1 -1
  22. data/bundler/lib/bundler/cli/install.rb +4 -2
  23. data/bundler/lib/bundler/cli/list.rb +1 -1
  24. data/bundler/lib/bundler/cli/outdated.rb +1 -1
  25. data/bundler/lib/bundler/cli/pristine.rb +1 -1
  26. data/bundler/lib/bundler/cli/show.rb +1 -1
  27. data/bundler/lib/bundler/cli/update.rb +2 -0
  28. data/bundler/lib/bundler/compact_index_client.rb +1 -1
  29. data/bundler/lib/bundler/compact_index_client/cache.rb +1 -1
  30. data/bundler/lib/bundler/definition.rb +28 -37
  31. data/bundler/lib/bundler/dep_proxy.rb +1 -1
  32. data/bundler/lib/bundler/dsl.rb +4 -4
  33. data/bundler/lib/bundler/endpoint_specification.rb +1 -1
  34. data/bundler/lib/bundler/fetcher.rb +3 -3
  35. data/bundler/lib/bundler/fetcher/base.rb +1 -1
  36. data/bundler/lib/bundler/fetcher/compact_index.rb +1 -1
  37. data/bundler/lib/bundler/fetcher/downloader.rb +1 -1
  38. data/bundler/lib/bundler/fetcher/index.rb +1 -1
  39. data/bundler/lib/bundler/friendly_errors.rb +3 -3
  40. data/bundler/lib/bundler/gem_helper.rb +17 -9
  41. data/bundler/lib/bundler/gem_helpers.rb +6 -1
  42. data/bundler/lib/bundler/gem_version_promoter.rb +1 -1
  43. data/bundler/lib/bundler/graph.rb +1 -1
  44. data/bundler/lib/bundler/index.rb +1 -1
  45. data/bundler/lib/bundler/injector.rb +1 -1
  46. data/bundler/lib/bundler/installer.rb +1 -1
  47. data/bundler/lib/bundler/installer/gem_installer.rb +1 -1
  48. data/bundler/lib/bundler/installer/parallel_installer.rb +1 -1
  49. data/bundler/lib/bundler/installer/standalone.rb +2 -2
  50. data/bundler/lib/bundler/lazy_specification.rb +3 -3
  51. data/bundler/lib/bundler/lockfile_generator.rb +1 -1
  52. data/bundler/lib/bundler/lockfile_parser.rb +1 -1
  53. data/bundler/lib/bundler/mirror.rb +2 -2
  54. data/bundler/lib/bundler/plugin.rb +5 -6
  55. data/bundler/lib/bundler/plugin/index.rb +1 -1
  56. data/bundler/lib/bundler/plugin/installer.rb +1 -1
  57. data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -1
  58. data/bundler/lib/bundler/plugin/source_list.rb +1 -1
  59. data/bundler/lib/bundler/remote_specification.rb +1 -1
  60. data/bundler/lib/bundler/resolver.rb +4 -4
  61. data/bundler/lib/bundler/resolver/spec_group.rb +2 -2
  62. data/bundler/lib/bundler/retry.rb +1 -1
  63. data/bundler/lib/bundler/ruby_version.rb +1 -1
  64. data/bundler/lib/bundler/rubygems_ext.rb +46 -1
  65. data/bundler/lib/bundler/rubygems_gem_installer.rb +2 -2
  66. data/bundler/lib/bundler/rubygems_integration.rb +18 -6
  67. data/bundler/lib/bundler/runtime.rb +2 -2
  68. data/bundler/lib/bundler/settings.rb +49 -42
  69. data/bundler/lib/bundler/shared_helpers.rb +1 -1
  70. data/bundler/lib/bundler/similarity_detector.rb +1 -1
  71. data/bundler/lib/bundler/source.rb +1 -1
  72. data/bundler/lib/bundler/source/git.rb +1 -1
  73. data/bundler/lib/bundler/source/git/git_proxy.rb +4 -2
  74. data/bundler/lib/bundler/source/path.rb +2 -2
  75. data/bundler/lib/bundler/source/path/installer.rb +1 -1
  76. data/bundler/lib/bundler/source/rubygems.rb +2 -2
  77. data/bundler/lib/bundler/source/rubygems/remote.rb +1 -1
  78. data/bundler/lib/bundler/source_list.rb +2 -2
  79. data/bundler/lib/bundler/spec_set.rb +1 -1
  80. data/bundler/lib/bundler/stub_specification.rb +1 -1
  81. data/bundler/lib/bundler/templates/newgem/README.md.tt +1 -1
  82. data/bundler/lib/bundler/templates/newgem/bin/console.tt +1 -2
  83. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +2 -2
  84. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +0 -1
  85. data/bundler/lib/bundler/ui/shell.rb +5 -5
  86. data/bundler/lib/bundler/uri_credentials_filter.rb +1 -1
  87. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +7 -4
  88. data/bundler/lib/bundler/vendored_persistent.rb +0 -7
  89. data/bundler/lib/bundler/version.rb +1 -1
  90. data/bundler/lib/bundler/worker.rb +1 -1
  91. data/bundler/lib/bundler/yaml_serializer.rb +1 -1
  92. data/bundler/man/bundle-add.1 +1 -1
  93. data/bundler/man/{bundle-add.ronn → bundle-add.1.ronn} +0 -0
  94. data/bundler/man/bundle-binstubs.1 +5 -3
  95. data/bundler/man/{bundle-binstubs.ronn → bundle-binstubs.1.ronn} +2 -4
  96. data/bundler/man/bundle-cache.1 +1 -1
  97. data/bundler/man/{bundle-cache.ronn → bundle-cache.1.ronn} +0 -0
  98. data/bundler/man/bundle-check.1 +1 -1
  99. data/bundler/man/{bundle-check.ronn → bundle-check.1.ronn} +0 -0
  100. data/bundler/man/bundle-clean.1 +1 -1
  101. data/bundler/man/{bundle-clean.ronn → bundle-clean.1.ronn} +0 -0
  102. data/bundler/man/bundle-config.1 +14 -14
  103. data/bundler/man/{bundle-config.ronn → bundle-config.1.ronn} +14 -13
  104. data/bundler/man/bundle-doctor.1 +1 -1
  105. data/bundler/man/{bundle-doctor.ronn → bundle-doctor.1.ronn} +0 -0
  106. data/bundler/man/bundle-exec.1 +1 -1
  107. data/bundler/man/{bundle-exec.ronn → bundle-exec.1.ronn} +0 -0
  108. data/bundler/man/bundle-gem.1 +1 -1
  109. data/bundler/man/{bundle-gem.ronn → bundle-gem.1.ronn} +0 -0
  110. data/bundler/man/bundle-info.1 +1 -1
  111. data/bundler/man/{bundle-info.ronn → bundle-info.1.ronn} +0 -0
  112. data/bundler/man/bundle-init.1 +1 -1
  113. data/bundler/man/{bundle-init.ronn → bundle-init.1.ronn} +0 -0
  114. data/bundler/man/bundle-inject.1 +1 -1
  115. data/bundler/man/{bundle-inject.ronn → bundle-inject.1.ronn} +0 -0
  116. data/bundler/man/bundle-install.1 +29 -2
  117. data/bundler/man/{bundle-install.ronn → bundle-install.1.ronn} +24 -2
  118. data/bundler/man/bundle-list.1 +1 -1
  119. data/bundler/man/{bundle-list.ronn → bundle-list.1.ronn} +0 -0
  120. data/bundler/man/bundle-lock.1 +1 -1
  121. data/bundler/man/{bundle-lock.ronn → bundle-lock.1.ronn} +0 -0
  122. data/bundler/man/bundle-open.1 +1 -1
  123. data/bundler/man/{bundle-open.ronn → bundle-open.1.ronn} +0 -0
  124. data/bundler/man/bundle-outdated.1 +1 -1
  125. data/bundler/man/{bundle-outdated.ronn → bundle-outdated.1.ronn} +0 -0
  126. data/bundler/man/bundle-platform.1 +1 -1
  127. data/bundler/man/{bundle-platform.ronn → bundle-platform.1.ronn} +0 -0
  128. data/bundler/man/bundle-pristine.1 +1 -1
  129. data/bundler/man/{bundle-pristine.ronn → bundle-pristine.1.ronn} +0 -0
  130. data/bundler/man/bundle-remove.1 +1 -1
  131. data/bundler/man/{bundle-remove.ronn → bundle-remove.1.ronn} +0 -0
  132. data/bundler/man/bundle-show.1 +1 -1
  133. data/bundler/man/{bundle-show.ronn → bundle-show.1.ronn} +0 -0
  134. data/bundler/man/bundle-update.1 +1 -1
  135. data/bundler/man/{bundle-update.ronn → bundle-update.1.ronn} +0 -0
  136. data/bundler/man/bundle-viz.1 +1 -1
  137. data/bundler/man/{bundle-viz.ronn → bundle-viz.1.ronn} +0 -0
  138. data/bundler/man/bundle.1 +1 -1
  139. data/bundler/man/{bundle.ronn → bundle.1.ronn} +0 -0
  140. data/bundler/man/gemfile.5 +4 -4
  141. data/bundler/man/gemfile.5.ronn +4 -4
  142. data/lib/rubygems.rb +3 -6
  143. data/lib/rubygems/available_set.rb +0 -2
  144. data/lib/rubygems/basic_specification.rb +0 -4
  145. data/lib/rubygems/command.rb +0 -2
  146. data/lib/rubygems/command_manager.rb +0 -2
  147. data/lib/rubygems/commands/build_command.rb +4 -1
  148. data/lib/rubygems/commands/cert_command.rb +0 -8
  149. data/lib/rubygems/commands/check_command.rb +0 -2
  150. data/lib/rubygems/commands/cleanup_command.rb +8 -4
  151. data/lib/rubygems/commands/contents_command.rb +0 -2
  152. data/lib/rubygems/commands/dependency_command.rb +0 -2
  153. data/lib/rubygems/commands/environment_command.rb +1 -3
  154. data/lib/rubygems/commands/fetch_command.rb +0 -2
  155. data/lib/rubygems/commands/generate_index_command.rb +0 -2
  156. data/lib/rubygems/commands/help_command.rb +0 -2
  157. data/lib/rubygems/commands/info_command.rb +0 -2
  158. data/lib/rubygems/commands/install_command.rb +0 -2
  159. data/lib/rubygems/commands/list_command.rb +0 -2
  160. data/lib/rubygems/commands/lock_command.rb +0 -2
  161. data/lib/rubygems/commands/mirror_command.rb +0 -2
  162. data/lib/rubygems/commands/open_command.rb +0 -2
  163. data/lib/rubygems/commands/outdated_command.rb +0 -2
  164. data/lib/rubygems/commands/owner_command.rb +0 -2
  165. data/lib/rubygems/commands/pristine_command.rb +0 -2
  166. data/lib/rubygems/commands/push_command.rb +0 -2
  167. data/lib/rubygems/commands/query_command.rb +0 -2
  168. data/lib/rubygems/commands/rdoc_command.rb +0 -2
  169. data/lib/rubygems/commands/search_command.rb +0 -2
  170. data/lib/rubygems/commands/server_command.rb +0 -2
  171. data/lib/rubygems/commands/setup_command.rb +10 -13
  172. data/lib/rubygems/commands/signin_command.rb +0 -2
  173. data/lib/rubygems/commands/signout_command.rb +0 -2
  174. data/lib/rubygems/commands/sources_command.rb +0 -2
  175. data/lib/rubygems/commands/specification_command.rb +0 -2
  176. data/lib/rubygems/commands/stale_command.rb +0 -2
  177. data/lib/rubygems/commands/uninstall_command.rb +0 -2
  178. data/lib/rubygems/commands/unpack_command.rb +0 -2
  179. data/lib/rubygems/commands/update_command.rb +20 -5
  180. data/lib/rubygems/commands/which_command.rb +0 -2
  181. data/lib/rubygems/commands/yank_command.rb +0 -2
  182. data/lib/rubygems/config_file.rb +0 -2
  183. data/lib/rubygems/core_ext/kernel_warn.rb +6 -6
  184. data/lib/rubygems/dependency.rb +0 -2
  185. data/lib/rubygems/dependency_installer.rb +0 -2
  186. data/lib/rubygems/dependency_list.rb +0 -2
  187. data/lib/rubygems/doctor.rb +0 -2
  188. data/lib/rubygems/errors.rb +0 -12
  189. data/lib/rubygems/exceptions.rb +0 -20
  190. data/lib/rubygems/ext/builder.rb +0 -2
  191. data/lib/rubygems/ext/cmake_builder.rb +0 -2
  192. data/lib/rubygems/ext/configure_builder.rb +0 -2
  193. data/lib/rubygems/ext/ext_conf_builder.rb +0 -2
  194. data/lib/rubygems/ext/rake_builder.rb +0 -2
  195. data/lib/rubygems/gem_runner.rb +0 -2
  196. data/lib/rubygems/indexer.rb +0 -2
  197. data/lib/rubygems/installer.rb +4 -8
  198. data/lib/rubygems/installer_test_case.rb +0 -4
  199. data/lib/rubygems/mock_gem_ui.rb +0 -6
  200. data/lib/rubygems/name_tuple.rb +0 -2
  201. data/lib/rubygems/openssl.rb +7 -0
  202. data/lib/rubygems/package.rb +3 -10
  203. data/lib/rubygems/package/digest_io.rb +0 -2
  204. data/lib/rubygems/package/file_source.rb +0 -2
  205. data/lib/rubygems/package/io_source.rb +0 -2
  206. data/lib/rubygems/package/old.rb +0 -2
  207. data/lib/rubygems/package/tar_header.rb +0 -2
  208. data/lib/rubygems/package/tar_reader.rb +0 -2
  209. data/lib/rubygems/package/tar_reader/entry.rb +0 -2
  210. data/lib/rubygems/package/tar_test_case.rb +0 -2
  211. data/lib/rubygems/package/tar_writer.rb +0 -6
  212. data/lib/rubygems/package_task.rb +0 -2
  213. data/lib/rubygems/path_support.rb +0 -2
  214. data/lib/rubygems/platform.rb +0 -2
  215. data/lib/rubygems/psych_tree.rb +0 -2
  216. data/lib/rubygems/remote_fetcher.rb +4 -6
  217. data/lib/rubygems/request.rb +1 -9
  218. data/lib/rubygems/request/connection_pools.rb +0 -4
  219. data/lib/rubygems/request/http_pool.rb +0 -2
  220. data/lib/rubygems/request/https_pool.rb +0 -2
  221. data/lib/rubygems/request_set.rb +0 -2
  222. data/lib/rubygems/request_set/gem_dependency_api.rb +0 -2
  223. data/lib/rubygems/request_set/lockfile.rb +0 -4
  224. data/lib/rubygems/request_set/lockfile/parser.rb +0 -2
  225. data/lib/rubygems/request_set/lockfile/tokenizer.rb +0 -2
  226. data/lib/rubygems/requirement.rb +7 -7
  227. data/lib/rubygems/resolver.rb +0 -2
  228. data/lib/rubygems/resolver/activation_request.rb +0 -2
  229. data/lib/rubygems/resolver/api_set.rb +0 -2
  230. data/lib/rubygems/resolver/api_specification.rb +15 -6
  231. data/lib/rubygems/resolver/best_set.rb +0 -2
  232. data/lib/rubygems/resolver/composed_set.rb +0 -2
  233. data/lib/rubygems/resolver/conflict.rb +0 -2
  234. data/lib/rubygems/resolver/current_set.rb +0 -2
  235. data/lib/rubygems/resolver/dependency_request.rb +0 -2
  236. data/lib/rubygems/resolver/git_set.rb +0 -2
  237. data/lib/rubygems/resolver/git_specification.rb +0 -2
  238. data/lib/rubygems/resolver/index_set.rb +0 -2
  239. data/lib/rubygems/resolver/index_specification.rb +0 -2
  240. data/lib/rubygems/resolver/installed_specification.rb +0 -2
  241. data/lib/rubygems/resolver/installer_set.rb +0 -2
  242. data/lib/rubygems/resolver/local_specification.rb +0 -2
  243. data/lib/rubygems/resolver/lock_set.rb +0 -2
  244. data/lib/rubygems/resolver/lock_specification.rb +0 -2
  245. data/lib/rubygems/resolver/requirement_list.rb +0 -2
  246. data/lib/rubygems/resolver/set.rb +0 -2
  247. data/lib/rubygems/resolver/source_set.rb +0 -2
  248. data/lib/rubygems/resolver/spec_specification.rb +0 -2
  249. data/lib/rubygems/resolver/specification.rb +0 -2
  250. data/lib/rubygems/resolver/stats.rb +0 -2
  251. data/lib/rubygems/resolver/vendor_set.rb +0 -2
  252. data/lib/rubygems/resolver/vendor_specification.rb +0 -2
  253. data/lib/rubygems/s3_uri_signer.rb +1 -7
  254. data/lib/rubygems/security.rb +1 -7
  255. data/lib/rubygems/security/policy.rb +0 -4
  256. data/lib/rubygems/security/signer.rb +0 -2
  257. data/lib/rubygems/security/trust_dir.rb +0 -2
  258. data/lib/rubygems/server.rb +0 -2
  259. data/lib/rubygems/source.rb +4 -4
  260. data/lib/rubygems/source/git.rb +0 -2
  261. data/lib/rubygems/source/installed.rb +0 -2
  262. data/lib/rubygems/source/local.rb +0 -2
  263. data/lib/rubygems/source/lock.rb +0 -2
  264. data/lib/rubygems/source/specific_file.rb +0 -2
  265. data/lib/rubygems/source/vendor.rb +0 -2
  266. data/lib/rubygems/source_list.rb +0 -2
  267. data/lib/rubygems/spec_fetcher.rb +0 -2
  268. data/lib/rubygems/specification.rb +19 -11
  269. data/lib/rubygems/specification_policy.rb +0 -2
  270. data/lib/rubygems/stub_specification.rb +0 -4
  271. data/lib/rubygems/syck_hack.rb +0 -2
  272. data/lib/rubygems/test_case.rb +5 -16
  273. data/lib/rubygems/test_utilities.rb +0 -8
  274. data/lib/rubygems/uninstaller.rb +0 -2
  275. data/lib/rubygems/uri_formatter.rb +0 -2
  276. data/lib/rubygems/uri_parser.rb +0 -2
  277. data/lib/rubygems/user_interaction.rb +0 -16
  278. data/lib/rubygems/util.rb +0 -2
  279. data/lib/rubygems/util/licenses.rb +0 -2
  280. data/lib/rubygems/util/list.rb +0 -2
  281. data/lib/rubygems/validator.rb +0 -2
  282. data/lib/rubygems/version.rb +0 -2
  283. data/rubygems-update.gemspec +1 -1
  284. data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -2
  285. data/test/rubygems/rubygems/commands/crash_command.rb +0 -2
  286. data/test/rubygems/rubygems_plugin.rb +0 -2
  287. data/test/rubygems/test_bundled_ca.rb +38 -41
  288. data/test/rubygems/test_config.rb +0 -2
  289. data/test/rubygems/test_deprecate.rb +0 -6
  290. data/test/rubygems/test_gem.rb +0 -2
  291. data/test/rubygems/test_gem_available_set.rb +0 -2
  292. data/test/rubygems/test_gem_bundler_version_finder.rb +0 -2
  293. data/test/rubygems/test_gem_command.rb +0 -4
  294. data/test/rubygems/test_gem_command_manager.rb +0 -2
  295. data/test/rubygems/test_gem_commands_build_command.rb +29 -8
  296. data/test/rubygems/test_gem_commands_cert_command.rb +0 -2
  297. data/test/rubygems/test_gem_commands_check_command.rb +0 -2
  298. data/test/rubygems/test_gem_commands_cleanup_command.rb +12 -3
  299. data/test/rubygems/test_gem_commands_contents_command.rb +0 -2
  300. data/test/rubygems/test_gem_commands_dependency_command.rb +0 -2
  301. data/test/rubygems/test_gem_commands_environment_command.rb +0 -2
  302. data/test/rubygems/test_gem_commands_fetch_command.rb +0 -2
  303. data/test/rubygems/test_gem_commands_generate_index_command.rb +0 -2
  304. data/test/rubygems/test_gem_commands_help_command.rb +0 -2
  305. data/test/rubygems/test_gem_commands_info_command.rb +0 -2
  306. data/test/rubygems/test_gem_commands_install_command.rb +0 -2
  307. data/test/rubygems/test_gem_commands_list_command.rb +0 -2
  308. data/test/rubygems/test_gem_commands_lock_command.rb +0 -2
  309. data/test/rubygems/test_gem_commands_mirror.rb +0 -2
  310. data/test/rubygems/test_gem_commands_open_command.rb +0 -2
  311. data/test/rubygems/test_gem_commands_outdated_command.rb +0 -2
  312. data/test/rubygems/test_gem_commands_owner_command.rb +0 -2
  313. data/test/rubygems/test_gem_commands_pristine_command.rb +0 -2
  314. data/test/rubygems/test_gem_commands_push_command.rb +0 -2
  315. data/test/rubygems/test_gem_commands_query_command.rb +0 -4
  316. data/test/rubygems/test_gem_commands_search_command.rb +0 -2
  317. data/test/rubygems/test_gem_commands_server_command.rb +0 -2
  318. data/test/rubygems/test_gem_commands_setup_command.rb +14 -20
  319. data/test/rubygems/test_gem_commands_signin_command.rb +0 -2
  320. data/test/rubygems/test_gem_commands_signout_command.rb +0 -2
  321. data/test/rubygems/test_gem_commands_sources_command.rb +0 -2
  322. data/test/rubygems/test_gem_commands_specification_command.rb +0 -2
  323. data/test/rubygems/test_gem_commands_stale_command.rb +0 -2
  324. data/test/rubygems/test_gem_commands_uninstall_command.rb +0 -2
  325. data/test/rubygems/test_gem_commands_unpack_command.rb +0 -2
  326. data/test/rubygems/test_gem_commands_update_command.rb +48 -2
  327. data/test/rubygems/test_gem_commands_which_command.rb +0 -2
  328. data/test/rubygems/test_gem_commands_yank_command.rb +0 -2
  329. data/test/rubygems/test_gem_config_file.rb +0 -2
  330. data/test/rubygems/test_gem_dependency.rb +0 -2
  331. data/test/rubygems/test_gem_dependency_installer.rb +2 -2
  332. data/test/rubygems/test_gem_dependency_list.rb +0 -2
  333. data/test/rubygems/test_gem_dependency_resolution_error.rb +0 -2
  334. data/test/rubygems/test_gem_doctor.rb +0 -2
  335. data/test/rubygems/test_gem_ext_builder.rb +2 -8
  336. data/test/rubygems/test_gem_ext_cmake_builder.rb +0 -2
  337. data/test/rubygems/test_gem_ext_configure_builder.rb +0 -2
  338. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -2
  339. data/test/rubygems/test_gem_ext_rake_builder.rb +0 -2
  340. data/test/rubygems/test_gem_gem_runner.rb +2 -2
  341. data/test/rubygems/test_gem_gemcutter_utilities.rb +0 -2
  342. data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -2
  343. data/test/rubygems/test_gem_indexer.rb +0 -2
  344. data/test/rubygems/test_gem_install_update_options.rb +0 -2
  345. data/test/rubygems/test_gem_installer.rb +34 -4
  346. data/test/rubygems/test_gem_local_remote_options.rb +0 -2
  347. data/test/rubygems/test_gem_name_tuple.rb +0 -2
  348. data/test/rubygems/test_gem_package.rb +17 -11
  349. data/test/rubygems/test_gem_package_old.rb +0 -2
  350. data/test/rubygems/test_gem_package_tar_header.rb +0 -2
  351. data/test/rubygems/test_gem_package_tar_reader.rb +0 -2
  352. data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -2
  353. data/test/rubygems/test_gem_package_tar_writer.rb +0 -2
  354. data/test/rubygems/test_gem_package_task.rb +0 -2
  355. data/test/rubygems/test_gem_path_support.rb +0 -2
  356. data/test/rubygems/test_gem_platform.rb +0 -2
  357. data/test/rubygems/test_gem_rdoc.rb +0 -2
  358. data/test/rubygems/test_gem_remote_fetcher.rb +4 -5
  359. data/test/rubygems/test_gem_request.rb +0 -4
  360. data/test/rubygems/test_gem_request_connection_pools.rb +0 -4
  361. data/test/rubygems/test_gem_request_set.rb +0 -2
  362. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +0 -2
  363. data/test/rubygems/test_gem_request_set_lockfile.rb +0 -2
  364. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +0 -2
  365. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +0 -2
  366. data/test/rubygems/test_gem_requirement.rb +8 -2
  367. data/test/rubygems/test_gem_resolver.rb +0 -2
  368. data/test/rubygems/test_gem_resolver_activation_request.rb +0 -2
  369. data/test/rubygems/test_gem_resolver_api_set.rb +0 -2
  370. data/test/rubygems/test_gem_resolver_api_specification.rb +0 -2
  371. data/test/rubygems/test_gem_resolver_best_set.rb +0 -2
  372. data/test/rubygems/test_gem_resolver_composed_set.rb +0 -2
  373. data/test/rubygems/test_gem_resolver_conflict.rb +0 -2
  374. data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -2
  375. data/test/rubygems/test_gem_resolver_git_set.rb +0 -2
  376. data/test/rubygems/test_gem_resolver_git_specification.rb +0 -2
  377. data/test/rubygems/test_gem_resolver_index_set.rb +0 -2
  378. data/test/rubygems/test_gem_resolver_index_specification.rb +0 -2
  379. data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -2
  380. data/test/rubygems/test_gem_resolver_installer_set.rb +0 -2
  381. data/test/rubygems/test_gem_resolver_local_specification.rb +0 -2
  382. data/test/rubygems/test_gem_resolver_lock_set.rb +0 -2
  383. data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -2
  384. data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -2
  385. data/test/rubygems/test_gem_resolver_specification.rb +0 -4
  386. data/test/rubygems/test_gem_resolver_vendor_set.rb +0 -2
  387. data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -2
  388. data/test/rubygems/test_gem_security.rb +0 -2
  389. data/test/rubygems/test_gem_security_policy.rb +0 -2
  390. data/test/rubygems/test_gem_security_signer.rb +0 -2
  391. data/test/rubygems/test_gem_security_trust_dir.rb +0 -2
  392. data/test/rubygems/test_gem_server.rb +0 -4
  393. data/test/rubygems/test_gem_silent_ui.rb +0 -2
  394. data/test/rubygems/test_gem_source.rb +0 -2
  395. data/test/rubygems/test_gem_source_fetch_problem.rb +0 -2
  396. data/test/rubygems/test_gem_source_git.rb +0 -2
  397. data/test/rubygems/test_gem_source_installed.rb +0 -2
  398. data/test/rubygems/test_gem_source_list.rb +1 -2
  399. data/test/rubygems/test_gem_source_local.rb +0 -2
  400. data/test/rubygems/test_gem_source_lock.rb +0 -2
  401. data/test/rubygems/test_gem_source_specific_file.rb +0 -2
  402. data/test/rubygems/test_gem_source_vendor.rb +0 -2
  403. data/test/rubygems/test_gem_spec_fetcher.rb +0 -2
  404. data/test/rubygems/test_gem_specification.rb +10 -10
  405. data/test/rubygems/test_gem_stream_ui.rb +0 -2
  406. data/test/rubygems/test_gem_stub_specification.rb +4 -6
  407. data/test/rubygems/test_gem_text.rb +0 -2
  408. data/test/rubygems/test_gem_uninstaller.rb +0 -2
  409. data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -2
  410. data/test/rubygems/test_gem_uri_formatter.rb +0 -2
  411. data/test/rubygems/test_gem_util.rb +0 -2
  412. data/test/rubygems/test_gem_validator.rb +0 -2
  413. data/test/rubygems/test_gem_version.rb +0 -2
  414. data/test/rubygems/test_gem_version_option.rb +0 -2
  415. data/test/rubygems/test_kernel.rb +0 -2
  416. data/test/rubygems/test_project_sanity.rb +0 -2
  417. data/test/rubygems/test_remote_fetch_error.rb +0 -2
  418. data/test/rubygems/test_require.rb +0 -8
  419. metadata +29 -53
  420. data/bundler/man/bundle-add.1.txt +0 -58
  421. data/bundler/man/bundle-binstubs.1.txt +0 -48
  422. data/bundler/man/bundle-cache.1.txt +0 -78
  423. data/bundler/man/bundle-check.1.txt +0 -33
  424. data/bundler/man/bundle-clean.1.txt +0 -26
  425. data/bundler/man/bundle-config.1.txt +0 -527
  426. data/bundler/man/bundle-doctor.1.txt +0 -44
  427. data/bundler/man/bundle-exec.1.txt +0 -181
  428. data/bundler/man/bundle-gem.1.txt +0 -117
  429. data/bundler/man/bundle-info.1.txt +0 -21
  430. data/bundler/man/bundle-init.1.txt +0 -34
  431. data/bundler/man/bundle-inject.1.txt +0 -32
  432. data/bundler/man/bundle-install.1.txt +0 -401
  433. data/bundler/man/bundle-list.1.txt +0 -44
  434. data/bundler/man/bundle-lock.1.txt +0 -93
  435. data/bundler/man/bundle-open.1.txt +0 -29
  436. data/bundler/man/bundle-outdated.1.txt +0 -131
  437. data/bundler/man/bundle-platform.1.txt +0 -57
  438. data/bundler/man/bundle-pristine.1.txt +0 -44
  439. data/bundler/man/bundle-remove.1.txt +0 -34
  440. data/bundler/man/bundle-show.1.txt +0 -27
  441. data/bundler/man/bundle-update.1.txt +0 -391
  442. data/bundler/man/bundle-viz.1.txt +0 -39
  443. data/bundler/man/bundle.1.txt +0 -116
  444. data/bundler/man/gemfile.5.txt +0 -651
  445. data/bundler/man/index.txt +0 -25
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9674dd6c41b5b5949b145bff3ca8fe825b1d0b15b78643f91efdbb6b21f4058
4
- data.tar.gz: 178b23925b626f81220bf05f6f26ea9c3e7bf60411b45b88090a0f0949c978aa
3
+ metadata.gz: 80a7466270c704510a3d8f9061bb58e04fad168d3a180460844560fce93694af
4
+ data.tar.gz: 2aa3a0d6ee74d72a2ce138b0c999b4601e459b7b35f139f916e24046237e19c2
5
5
  SHA512:
6
- metadata.gz: 03b6e5757f0aa561a8559468438e260ff49846ab1a4d57a1089fced6e649813f896b065ce5817371340eb321cf64dfef4e8219451096c100bf70d40e1b07293e
7
- data.tar.gz: c7b934dd19c4f6325e7f627cb70943ee39fe3ff0e65cb3eea768ad16ec0edb101a0e51f9aef24d7b4481880aad5d9e69bcad3e5055c3d319576b7b8e377135bb
6
+ metadata.gz: 1dcc8aa7153d4e534339b176b8f71009646b77463a14f1d6be5c1150e4f14e24765863da28c6b955b577e4c915ea26a626c4a0a54ce5878cc27fafaa556fe657
7
+ data.tar.gz: dee6647fc4e79ec27b73331b27092c5ecb042ebed7c4347af58dbc30adc29b14dbf337c4287f3d8d6fd3f3fe65e2f2901b9d5e9074cec5ca2737e1350abd5ebf
@@ -64,27 +64,42 @@ can help with. That are marked with a light gray `contribution: *`
64
64
 
65
65
  ### Type
66
66
 
67
- Most Issues or pull requests will have a light green `type: *` label, which
68
- 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.
69
69
 
70
70
  * **bug report** - An issue describing a bug in rubygems. This would be
71
71
  something that is broken, confusing, unexpected behavior etc.
72
- * **bug fix** - A pull request that fixes a bug report.
73
72
  * **feature request** - An issue describing a request for a new feature or
74
73
  enhancement.
75
- * **feature implementation** - A pull request implementing a feature
76
- request.
77
74
  * **question** - An issue that is a more of a question than a call for
78
75
  specific changes in the codebase.
79
- * **cleanup** - Generally for a pull request that improves the code base
80
- without fixing a bug or implementing a feature.
81
- * **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
82
79
  * **administrative** - This issue relates to administrative tasks that need
83
80
  to take place as it relates to rubygems
84
81
  * **documentation** - This issue relates to improving the documentation for
85
82
  in this repo. Note that much of the rubygems documentation is here:
86
83
  https://github.com/rubygems/guides
87
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.
88
103
 
89
104
  ### Workflow / Status
90
105
 
@@ -1,4 +1,59 @@
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
2
57
 
3
58
  === 3.2.0.rc.1 / 2020-07-04
4
59
 
@@ -74,11 +129,13 @@ Bug fixes:
74
129
  * Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
75
130
  Rodríguez.
76
131
 
77
- Compatibility changes:
132
+ Deprecations:
133
+
134
+ * Set deprecation warning on query command. Pull request #2967 by Luis
135
+ Sagastume.
136
+
137
+ Breaking changes:
78
138
 
79
- * Revert "Remove Gem::DependencyInstaller#find_gems_with_sources". Pull
80
- request #3412 by David Rodríguez.
81
- * Version horizon deprecations. Pull request #3414 by Luis Sagastume.
82
139
  * Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
83
140
  * Minitest cleanup. Pull request #3445 by David Rodríguez.
84
141
  * Remove `builder` gem requirement for `gem regenerate_index`. Pull
@@ -93,8 +150,6 @@ Compatibility changes:
93
150
  Sagastume.
94
151
  * Remove dependency installer deprecated methods. Pull request #3106 by
95
152
  Luis Sagastume.
96
- * Set deprecation warning on query command. Pull request #2967 by Luis
97
- Sagastume.
98
153
  * Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
99
154
  Sagastume.
100
155
  * Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
@@ -195,12 +250,15 @@ Bug fixes:
195
250
  * Remove configuration that contained a typo. Pull request #2989 by David
196
251
  Rodríguez.
197
252
 
198
- Compatibility changes:
253
+ Deprecations:
199
254
 
200
- * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
201
255
  * Deprecate `gem generate_index --modern` and `gem generate_index
202
256
  --no-modern`. Pull request #2992 by David Rodríguez.
203
257
 
258
+ Breaking changes:
259
+
260
+ * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
261
+
204
262
  === 3.1.0.pre3 / 2019-11-11
205
263
 
206
264
  Minor enhancements:
@@ -399,29 +457,33 @@ Bug fixes:
399
457
  * Fix cryptic error on local and ignore-dependencies combination. Pull
400
458
  request #2650 by David Rodríguez.
401
459
 
402
- Compatibility changes:
460
+ Deprecations:
403
461
 
404
- * 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
405
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
+
406
476
  * Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
407
477
  * Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
408
478
  ITO.
409
479
  * Fix Kernel#warn override. Pull request #2911 by Jeremy Evans.
410
- * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
411
- #2857 by SHIBATA Hiroshi.
412
- * Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
413
- Sagastume.
414
480
  * Remove conflict.rb code that was supposed to be removed in Rubygems 3.
415
481
  Pull request #2802 by Luis Sagastume.
416
- * Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
417
- Rodríguez.
418
482
  * Compatibility cleanups. Pull request #2754 by David Rodríguez.
419
483
  * Remove `others_possible` activation request param. Pull request #2747 by
420
484
  David Rodríguez.
421
485
  * Remove dependency installer deprecated code. Pull request #2740 by Luis
422
486
  Sagastume.
423
- * Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
424
- Ondruch.
425
487
  * Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
426
488
  by SHIBATA Hiroshi.
427
489
  * Skip deprecation warning during specs. Pull request #2718 by David
@@ -430,10 +492,7 @@ Compatibility changes:
430
492
  * Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
431
493
  * Removed needless environmental variable for Travis CI. Pull request
432
494
  #2685 by SHIBATA Hiroshi.
433
- * Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
434
495
  * Removing yaml require. Pull request #2538 by Luciano Sousa.
435
- * Add deprecation warnings for cli options. Pull request #2607 by Luis
436
- Sagastume.
437
496
 
438
497
  Style changes:
439
498
 
@@ -586,7 +645,6 @@ Bug fixes:
586
645
 
587
646
  Security fixes:
588
647
 
589
- * Fixed following vulnerabilities:
590
648
  * CVE-2019-8320: Delete directory using symlink when decompressing tar
591
649
  * CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
592
650
  * CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
@@ -845,7 +903,7 @@ Bug fixes:
845
903
  * Fix tests when --program-suffix and similar ruby configure options are
846
904
  used. Pull request #2529 by Jeremy Evans.
847
905
 
848
- Compatibility changes:
906
+ Breaking changes:
849
907
 
850
908
  * IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
851
909
  Hiroshi.
@@ -935,7 +993,6 @@ Minor enhancements:
935
993
 
936
994
  Security fixes:
937
995
 
938
- * Fixed following vulnerabilities:
939
996
  * CVE-2019-8320: Delete directory using symlink when decompressing tar
940
997
  * CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
941
998
  * CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
@@ -1007,13 +1064,16 @@ Bug fixes:
1007
1064
  * Fix path checks for case insensitive filesystem. Pull request #2211 by
1008
1065
  Lars Kanis.
1009
1066
 
1010
- Compatibility changes:
1067
+ Deprecations:
1011
1068
 
1012
1069
  * Deprecate unused code before removing them at #1524. Pull request #2197
1013
1070
  by SHIBATA Hiroshi.
1014
1071
  * Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
1015
1072
  * Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
1016
1073
  SHIBATA Hiroshi.
1074
+
1075
+ Breaking changes:
1076
+
1017
1077
  * Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
1018
1078
 
1019
1079
  === 2.7.6 / 2018-02-16
@@ -1206,11 +1266,8 @@ Minor enhancements:
1206
1266
  * Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
1207
1267
  Dash.
1208
1268
 
1209
- Compatibility changes:
1269
+ Deprecations:
1210
1270
 
1211
- * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1212
- unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
1213
- by SHIBATA Hiroshi.
1214
1271
  * Deprecate Gem::InstallerTestCase#util_gem_bindir and
1215
1272
  Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
1216
1273
  * Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
@@ -1218,6 +1275,12 @@ Compatibility changes:
1218
1275
  * Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
1219
1276
  * Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
1220
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.
1221
1284
  * Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
1222
1285
  #1796 by Matej.
1223
1286
 
@@ -2622,7 +2685,7 @@ Bug fixes:
2622
2685
 
2623
2686
  === 2.0.3 / 2013-03-11
2624
2687
 
2625
- * Bug fixes:
2688
+ Bug fixes:
2626
2689
  * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
2627
2690
  #506 by André Arko
2628
2691
  * Use File.realpath to remove extra / while checking if files are
@@ -2639,7 +2702,7 @@ Bug fixes:
2639
2702
 
2640
2703
  === 2.0.2 / 2013-03-06
2641
2704
 
2642
- * Bug fixes:
2705
+ Bug fixes:
2643
2706
  * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
2644
2707
  upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
2645
2708
  * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
@@ -2647,7 +2710,7 @@ Bug fixes:
2647
2710
 
2648
2711
  === 2.0.1 / 2013-03-05
2649
2712
 
2650
- * Bug fixes:
2713
+ Bug fixes:
2651
2714
  * Lazily load RubyGems.org API credentials to avoid failure during
2652
2715
  RubyGems installation. Bug #465 by Isaac Sanders.
2653
2716
  * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
@@ -2681,7 +2744,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
2681
2744
 
2682
2745
  Changes since RubyGems 1.8.25 (including past pre-releases):
2683
2746
 
2684
- * Breaking changes:
2747
+ Breaking changes:
2685
2748
 
2686
2749
  * Deprecated Gem.unresolved_deps in favor of
2687
2750
  Gem::Specification.unresolved_deps
@@ -2703,7 +2766,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2703
2766
  * Removed support for Ruby 1.9.1
2704
2767
  * Removed many deprecated methods
2705
2768
 
2706
- * Major enhancements:
2769
+ Major enhancements:
2707
2770
 
2708
2771
  * Improved support for default gems shipping with ruby 2.0.0+
2709
2772
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2722,7 +2785,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2722
2785
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
2723
2786
  to autodetect (current and parent directories are searched).
2724
2787
 
2725
- * Minor enhancements:
2788
+ Minor enhancements:
2726
2789
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2727
2790
  #419 by Erik Hollensbe
2728
2791
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
@@ -2765,7 +2828,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2765
2828
  GEM_HOME
2766
2829
  * When building gems with non-world-readable files a warning is shown.
2767
2830
 
2768
- * Bug fixes:
2831
+ Bug fixes:
2769
2832
  * Gem.refresh now maintains the active gem list. Clearing the list would
2770
2833
  cause double-loads which would cause other bugs. Pull Request #427 by
2771
2834
  Jeremy Evans
@@ -2822,7 +2885,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2822
2885
 
2823
2886
  Changes since RubyGems 2.0.0.rc.2:
2824
2887
 
2825
- * Bug fixes:
2888
+ Bug fixes:
2826
2889
  * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
2827
2890
  #450 by Jeremy Kemper
2828
2891
  * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
@@ -2837,7 +2900,7 @@ Changes since RubyGems 2.0.0.rc.2:
2837
2900
 
2838
2901
  === 2.0.0.rc.2 / 2013-02-08
2839
2902
 
2840
- * Bug fixes:
2903
+ Bug fixes:
2841
2904
  * Fixed signature verification of gems which was broken only on master.
2842
2905
  Thanks to Brian Buchanan.
2843
2906
  * Proper exceptions are raised when verifying an unsigned gem. Thanks to
@@ -2845,13 +2908,13 @@ Changes since RubyGems 2.0.0.rc.2:
2845
2908
 
2846
2909
  === 2.0.0.rc.1 / 2013-01-08
2847
2910
 
2848
- * Minor enhancements:
2911
+ Minor enhancements:
2849
2912
  * This release of RubyGems can push gems to rubygems.org. Ordinarily
2850
2913
  prerelease versions of RubyGems cannot push gems.
2851
2914
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2852
2915
  #419 by Erik Hollensbe
2853
2916
 
2854
- * Bug fixes:
2917
+ Bug fixes:
2855
2918
  * Fixed exception raised when attempting to push gems to rubygems.org. Bug
2856
2919
  #418 by André Arko
2857
2920
  * Gem installation will fail if RubyGems cannot load the specification from
@@ -2859,24 +2922,24 @@ Changes since RubyGems 2.0.0.rc.2:
2859
2922
 
2860
2923
  === 2.0.0.preview2.2 / 2012-12-14
2861
2924
 
2862
- * Minor enhancements:
2925
+ Minor enhancements:
2863
2926
  * Added a cmake builder. Pull request #265 by Allan Espinosa.
2864
2927
  * Removed rubyforge page from gem list output
2865
2928
 
2866
- * Bug fixes:
2929
+ Bug fixes:
2867
2930
  * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
2868
2931
  #413 by Jeremy Kemper.
2869
2932
 
2870
2933
  === 2.0.0.preview2.1 / 2012-12-08
2871
2934
 
2872
- * Minor enhancements:
2935
+ Minor enhancements:
2873
2936
  * Gem::DependencyInstaller now passes build_args down to the installer.
2874
2937
  Pull Request #412 by Sam Rawlins.
2875
2938
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
2876
2939
  broken. Now you must manually say "yes". Pull Request #406 by Shannon
2877
2940
  Skipper.
2878
2941
 
2879
- * Bug fixes:
2942
+ Bug fixes:
2880
2943
  * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
2881
2944
  * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
2882
2945
  * Only update the spec cache when we have permission. Ruby Bug #7509
@@ -2894,7 +2957,7 @@ This release contains two commits not present in Ruby 2.0.0.preview2. One
2894
2957
  commit is for ruby 1.8.7 support, the second allows RubyGems to work under
2895
2958
  $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2896
2959
 
2897
- * Breaking changes:
2960
+ Breaking changes:
2898
2961
 
2899
2962
  * Deprecated Gem.unresolved_deps in favor of
2900
2963
  Gem::Specification.unresolved_deps
@@ -2916,7 +2979,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2916
2979
  * Removed support for Ruby 1.9.1
2917
2980
  * Removed many deprecated methods
2918
2981
 
2919
- * Major enhancements:
2982
+ Major enhancements:
2920
2983
 
2921
2984
  * Improved support for default gems shipping with ruby 2.0.0+
2922
2985
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2935,7 +2998,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2935
2998
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
2936
2999
  to autodetect (current and parent directories are searched).
2937
3000
 
2938
- * Minor enhancements:
3001
+ Minor enhancements:
2939
3002
 
2940
3003
  * Added --only-executables option to `gem pristine`. Fixes #326
2941
3004
  * Added -I flag for 'gem query' to exclude installed items
@@ -2970,7 +3033,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2970
3033
  GEM_HOME
2971
3034
  * When building gems with non-world-readable files a warning is shown.
2972
3035
 
2973
- * Bug fixes:
3036
+ Bug fixes:
2974
3037
 
2975
3038
  * Added PID to setup bin_file while installing RubyGems to protect against
2976
3039
  errors. Fixes #328 by ConradIrwin
@@ -3055,7 +3118,7 @@ Bug fixes:
3055
3118
 
3056
3119
  === 1.8.25 / 2013-01-24
3057
3120
 
3058
- * Bug fixes:
3121
+ Bug fixes:
3059
3122
  * Added 11627 to setup bin_file location to protect against errors. Fixes
3060
3123
  #328 by ConradIrwin
3061
3124
  * Specification#ruby_code didn't handle Requirement with multiple
@@ -3066,7 +3129,7 @@ Bug fixes:
3066
3129
 
3067
3130
  === 1.8.24 / 2012-04-27
3068
3131
 
3069
- * 1 bug fix:
3132
+ Bug fixes:
3070
3133
 
3071
3134
  * Install the .pem files properly. Fixes #320
3072
3135
  * Remove OpenSSL dependency from the http code path
@@ -3105,20 +3168,20 @@ You may also set :ssl_verify_mode to 0 to completely disable SSL
3105
3168
  certificate checks, but this is not recommended.
3106
3169
 
3107
3170
 
3108
- * 2 security fixes:
3171
+ Security fixes:
3109
3172
  * Disallow redirects from https to http
3110
3173
  * Turn on verification of server SSL certs
3111
3174
 
3112
- * 1 minor feature:
3175
+ Minor enhancements:
3113
3176
  * Add --clear-sources to fetch
3114
3177
 
3115
- * 2 bug fixes:
3178
+ Bug fixes:
3116
3179
  * Use File.identical? to check if two files are the same.
3117
3180
  * Fixed init_with warning when using psych
3118
3181
 
3119
3182
  === 1.8.22 / 2012-04-13
3120
3183
 
3121
- * 4 bug fixes:
3184
+ Bug fixes:
3122
3185
 
3123
3186
  * Workaround for psych/syck YAML date parsing issue
3124
3187
  * Don't trust the encoding of ARGV. Fixes #307
@@ -3127,14 +3190,14 @@ certificate checks, but this is not recommended.
3127
3190
 
3128
3191
  === 1.8.21 / 2012-03-22
3129
3192
 
3130
- * 2 bug fixes:
3193
+ Bug fixes:
3131
3194
 
3132
3195
  * Add workaround for buggy yaml output from 1.9.2
3133
3196
  * Force 1.9.1 to remove it's prelude code. Fixes #305
3134
3197
 
3135
3198
  === 1.8.20 / 2012-03-21
3136
3199
 
3137
- * 4 bug fixes:
3200
+ Bug fixes:
3138
3201
 
3139
3202
  * Add --force to `gem build` to skip validation. Fixes #297
3140
3203
  * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
@@ -3143,7 +3206,7 @@ certificate checks, but this is not recommended.
3143
3206
 
3144
3207
  === 1.8.19 / 2012-03-14
3145
3208
 
3146
- * 3 bug fixes:
3209
+ Bug fixes:
3147
3210
 
3148
3211
  * Handle loading psych vs syck properly. Fixes #298
3149
3212
  * Make sure Date objects don't leak in via Marshal
@@ -3151,7 +3214,7 @@ certificate checks, but this is not recommended.
3151
3214
 
3152
3215
  === 1.8.18 / 2012-03-11
3153
3216
 
3154
- * 4 bug fixes:
3217
+ Bug fixes:
3155
3218
 
3156
3219
  * Use Psych API to emit more compatible YAML
3157
3220
  * Download and write inside `gem fetch` directly. Fixes #289
@@ -3161,12 +3224,12 @@ certificate checks, but this is not recommended.
3161
3224
 
3162
3225
  === 1.8.17 / 2012-02-17
3163
3226
 
3164
- * 2 minor enhancements:
3227
+ Minor enhancements:
3165
3228
 
3166
3229
  * Add MacRuby to the list of special cases for platforms (ferrous26)
3167
3230
  * Add a default for where to install rubygems itself
3168
3231
 
3169
- * 3 bug fixes:
3232
+ Bug fixes:
3170
3233
 
3171
3234
  * Fixed gem loading issue caused by dependencies not resolving.
3172
3235
  * Fixed umask error when stdlib is required and unresolved dependencies exist.
@@ -3176,7 +3239,7 @@ certificate checks, but this is not recommended.
3176
3239
 
3177
3240
  === 1.8.16 / 2012-02-12
3178
3241
 
3179
- * 3 bug fixes:
3242
+ Bug fixes:
3180
3243
 
3181
3244
  * Fix gem specification loading when encoding is not UTF-8. #146
3182
3245
  * Allow group writable if umask allows it already.
@@ -3184,37 +3247,39 @@ certificate checks, but this is not recommended.
3184
3247
 
3185
3248
  === 1.8.15 / 2012-01-06
3186
3249
 
3187
- * 1 bug fix:
3250
+ Bug fixes:
3188
3251
 
3189
3252
  * Don't eager load yaml, it creates a bad loop. Fixes #256
3190
3253
 
3191
3254
  === 1.8.14 / 2012-01-05
3192
3255
 
3193
- * 2 bug fixes:
3256
+ Bug fixes:
3194
3257
 
3195
3258
  * Ignore old/bad cache data in Version
3196
3259
  * Make sure our YAML workarounds are loaded properly. Fixes #250.
3197
3260
 
3198
3261
  === 1.8.13 / 2011-12-21
3199
3262
 
3200
- * 1 bug fix:
3263
+ Bug fixes:
3201
3264
 
3202
3265
  * Check loaded_specs properly when trying to satisfy a dep
3203
3266
 
3204
- * 2 minor enhancements:
3267
+ Minor enhancements:
3205
3268
 
3206
3269
  * Remove using #loaded_path? for performance
3207
3270
  * Remove Zlib workaround for Windows build.
3208
3271
 
3209
3272
  === 1.8.12 / 2011-12-02
3210
3273
 
3211
- * Bug fix:
3274
+ Bug fixes:
3275
+
3212
3276
  * Handle more cases where Syck's DefaultKey showed up in requirements
3213
3277
  and wasn't cleaned out.
3214
3278
 
3215
3279
  === 1.8.11 / 2011-10-03
3216
3280
 
3217
- * Bug fix:
3281
+ Bug fixes:
3282
+
3218
3283
  * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
3219
3284
  namespace.
3220
3285
 
@@ -3224,7 +3289,7 @@ RubyGems 1.8.10 contains a security fix that prevents malicious gems from
3224
3289
  executing code when their specification is loaded. See
3225
3290
  https://github.com/rubygems/rubygems/pull/165 for details.
3226
3291
 
3227
- * 5 bug fixes:
3292
+ Bug fixes:
3228
3293
 
3229
3294
  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
3230
3295
  and %q to prevent code injection. Issue #165 by Postmodern
@@ -3237,19 +3302,19 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3237
3302
 
3238
3303
  === 1.8.9 / 2011-08-23
3239
3304
 
3240
- * Bug fixes:
3305
+ Bug fixes:
3241
3306
 
3242
3307
  * Fixed uninstalling multiple gems using `gem uninstall`
3243
3308
  * Gem.use_paths splatted to take multiple paths! Issue #148
3244
3309
 
3245
3310
  === 1.8.8 / 2011-08-11
3246
3311
 
3247
- * Bug fix:
3312
+ Bug fixes:
3248
3313
  * The encoding of a gem's YAML spec is now UTF-8. Issue #149
3249
3314
 
3250
3315
  === 1.8.7 / 2011-08-04
3251
3316
 
3252
- * Bug fixes:
3317
+ Bug fixes:
3253
3318
  * Added missing require for `gem uninstall --format-executable`
3254
3319
  * The correct name of the executable being uninstalled is now displayed with
3255
3320
  --format-executable
@@ -3263,12 +3328,12 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3263
3328
 
3264
3329
  === 1.8.6 / 2011-07-25
3265
3330
 
3266
- * 1 minor enhancement:
3331
+ Minor enhancements:
3267
3332
 
3268
3333
  * Add autorequires and delay startup of RubyGems until require is called.
3269
3334
  See Ruby bug #4962
3270
3335
 
3271
- * 9 bug fixes:
3336
+ Bug fixes:
3272
3337
 
3273
3338
  * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
3274
3339
  * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
@@ -3282,25 +3347,25 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3282
3347
 
3283
3348
  === 1.8.5 / 2011-05-31
3284
3349
 
3285
- * 2 minor enhancement:
3350
+ Minor enhancements:
3286
3351
 
3287
3352
  * The -u option to 'update local source cache' is official deprecated.
3288
3353
  * Remove has_rdoc deprecations from Specification.
3289
3354
 
3290
- * 2 bug fixes:
3355
+ Bug fixes:
3291
3356
 
3292
3357
  * Handle bad specs more gracefully.
3293
3358
  * Reset any Gem paths changed in the installer.
3294
3359
 
3295
3360
  === 1.8.4 / 2011-05-25
3296
3361
 
3297
- * 1 minor enhancement:
3362
+ Minor enhancements:
3298
3363
 
3299
3364
  * Removed default_executable deprecations from Specification.
3300
3365
 
3301
3366
  === 1.8.3 / 2011-05-19
3302
3367
 
3303
- * 4 bug fixes:
3368
+ Bug fixes:
3304
3369
 
3305
3370
  * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
3306
3371
  Shota Fukumori
@@ -3311,12 +3376,12 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3311
3376
 
3312
3377
  === 1.8.2 / 2011-05-11
3313
3378
 
3314
- * 2 minor enhancements:
3379
+ Minor enhancements:
3315
3380
 
3316
3381
  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
3317
3382
  * Print out a warning about missing executables.
3318
3383
 
3319
- * 3 bug fixes:
3384
+ Bug fixes:
3320
3385
 
3321
3386
  * Added missing requires to fix various upgrade issues.
3322
3387
  * `gem pristine` respects multiple gem repositories.
@@ -3324,11 +3389,11 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3324
3389
 
3325
3390
  === 1.8.1 / 2011-05-05
3326
3391
 
3327
- * 1 minor enhancement:
3392
+ Minor enhancements:
3328
3393
 
3329
3394
  * Added Gem::Requirement#specific? and Gem::Dependency#specific?
3330
3395
 
3331
- * 4 bug fixes:
3396
+ Bug fixes:
3332
3397
 
3333
3398
  * Typo on Indexer rendered it useless on Windows
3334
3399
  * gem dep can fetch remote dependencies for non-latest gems again.
@@ -3350,7 +3415,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
3350
3415
  --build-arg` to regenerate a gem with an extension where it requires special
3351
3416
  build arguments.
3352
3417
 
3353
- * 24(+) Deprecations (WOOT!):
3418
+ Deprecations:
3354
3419
 
3355
3420
  * DependencyList.from_source_index deprecated the source_index argument.
3356
3421
  * Deprecated Dependency.new(/regex/).
@@ -3371,13 +3436,13 @@ build arguments.
3371
3436
  * Deprecated all of Gem::GemPathSearcher.
3372
3437
  * Deprecated Gem::Specification#default_executable.
3373
3438
 
3374
- * 2 major enhancements:
3439
+ Major enhancements:
3375
3440
 
3376
3441
  * Gem::SourceIndex functionality has been moved to Gem::Specification.
3377
3442
  Gem::SourceIndex is completely disconnected from Gem::Specification
3378
3443
  * Refactored GemPathSearcher entirely out. RIPMF
3379
3444
 
3380
- * 41 minor enhancements:
3445
+ Minor enhancements:
3381
3446
 
3382
3447
  * Added CommandManager#unregister_command
3383
3448
  * Added Dependency#matching_specs + to_specs.
@@ -3426,7 +3491,7 @@ build arguments.
3426
3491
  extensions.
3427
3492
  * `gem pristine` can now restore multiple gems.
3428
3493
 
3429
- * 6 bug fixes:
3494
+ Bug fixes:
3430
3495
 
3431
3496
  * DependencyInstaller passed around a source_index instance but used
3432
3497
  Gem.source_index.
@@ -3440,13 +3505,13 @@ build arguments.
3440
3505
 
3441
3506
  === 1.7.1 / 2011-03-32
3442
3507
 
3443
- * 1 bug fix:
3508
+ Bug fixes:
3444
3509
  * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
3445
3510
  `rake check_manifest` showing a diff would not exit with an error.)
3446
3511
 
3447
3512
  === 1.7.0 / 2011-03-32
3448
3513
 
3449
- * 16 Deprecations (woot!)
3514
+ Deprecations:
3450
3515
  * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
3451
3516
  cache.
3452
3517
  * Deprecated RemoteFetcher#open_uri_or_path.
@@ -3458,7 +3523,7 @@ build arguments.
3458
3523
  test_suite_file(=).
3459
3524
  * Deprecated Specification#has_rdoc= and default_executable=
3460
3525
 
3461
- * 26 minor enhancements:
3526
+ Minor enhancements:
3462
3527
  * Added stupid simple deprecation module.
3463
3528
  * Added --spec option to `gem unpack` to output a gem's original metadata
3464
3529
  * Added packaging option to Specification#validate
@@ -3490,7 +3555,7 @@ build arguments.
3490
3555
  * UpdateCommand#gems_to_update now returns (name, version) pairs.
3491
3556
  * UpdateCommand#which_to_update now takes an optional system argument.
3492
3557
 
3493
- * 11 bug fixes:
3558
+ Bug fixes:
3494
3559
  * Added missing remote fetcher require to pristine command (aarnell)
3495
3560
  * Building gems now checks to ensure all required fields are non-nil
3496
3561
  * Fix option parser when summary is nil.
@@ -3508,7 +3573,7 @@ build arguments.
3508
3573
 
3509
3574
  === 1.6.2 / 2011-03-08
3510
3575
 
3511
- Bug Fixes:
3576
+ Bug fixes:
3512
3577
 
3513
3578
  * require of an activated gem could cause activation conflicts. Fixes
3514
3579
  Bug #29056 by Dave Verwer.
@@ -3516,7 +3581,7 @@ Bug Fixes:
3516
3581
 
3517
3582
  === 1.6.1 / 2011-03-03
3518
3583
 
3519
- Bug Fixes:
3584
+ Bug fixes:
3520
3585
 
3521
3586
  * Installation no longer fails when a dependency from a version that won't be
3522
3587
  installed is unsatisfied.
@@ -3527,7 +3592,7 @@ Bug Fixes:
3527
3592
 
3528
3593
  === 1.6.0 / 2011-02-29
3529
3594
 
3530
- 4 Deprecations:
3595
+ Deprecations:
3531
3596
 
3532
3597
  * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
3533
3598
  'thread' to their applications.
@@ -3536,13 +3601,13 @@ Bug Fixes:
3536
3601
  * Gem::LoadError#version_requirements has been removed. Use
3537
3602
  Gem::LoadError#requirement.
3538
3603
 
3539
- 2 Major Enhancements:
3604
+ Major enhancements:
3540
3605
 
3541
3606
  * Rewrote how Gem::activate (gem and require) resolves dependencies.
3542
3607
  * Gem::LoadError#version_requirement has been removed. Use
3543
3608
  Gem::LoadError#requirement.
3544
3609
 
3545
- 17 Minor Enhancments:
3610
+ Minor enhancements:
3546
3611
 
3547
3612
  * Added --key to `gem push` for setting alternate API keys.
3548
3613
  * Added --format-executable support to gem uninstall.
@@ -3567,7 +3632,7 @@ Bug Fixes:
3567
3632
  locally cached gem specifications.
3568
3633
  * SpecFetcher.fetch_spec can now take a string source_uri.
3569
3634
 
3570
- 10 Bug Fixes:
3635
+ Bug fixes:
3571
3636
 
3572
3637
  * Added missing require of Gem::RemoteFetcher to the unpack command.
3573
3638
  * RubyGems now completely removes a previous install when reinstalling.
@@ -3582,14 +3647,14 @@ Bug Fixes:
3582
3647
 
3583
3648
  === 1.5.3 / 2011-02-26
3584
3649
 
3585
- Bug Fixes:
3650
+ Bug fixes:
3586
3651
 
3587
3652
  * Fix for a bug in Syck which causes install failures for gems packaged with
3588
3653
  Psych. Bug #28965 by Aaron Patterson.
3589
3654
 
3590
3655
  === 1.5.2 / 2011-02-10
3591
3656
 
3592
- Bug Fixes:
3657
+ Bug fixes:
3593
3658
 
3594
3659
  * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
3595
3660
 
@@ -3597,11 +3662,11 @@ Bug Fixes:
3597
3662
 
3598
3663
  ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3599
3664
 
3600
- Minor Enhancement:
3665
+ Minor enhancements:
3601
3666
 
3602
3667
  * Added ability to do gem update --system X.Y.Z.
3603
3668
 
3604
- Bug Fixes:
3669
+ Bug fixes:
3605
3670
 
3606
3671
  * Scrub !!null YAML from 1.9.2 (install and build).
3607
3672
  * Added missing requires for user_interaction.
@@ -3614,12 +3679,12 @@ Bug Fixes:
3614
3679
 
3615
3680
  ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3616
3681
 
3617
- Major Enhancements:
3682
+ Major enhancements:
3618
3683
 
3619
3684
  * Finally fixed all known 1.9.x issues. Upgrading is now possible!
3620
3685
  * Merged huge 1.3.7/ruby-core changes to master.
3621
3686
 
3622
- Minor Enhancements:
3687
+ Minor enhancements:
3623
3688
 
3624
3689
  * Added UPGRADING.rdoc to help deal with 1.9 issues.
3625
3690
  * Gem::Format now gives better errors for corrupt gem files and includes paths
@@ -3632,7 +3697,7 @@ Minor Enhancements:
3632
3697
  * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
3633
3698
  Erik Hollensbe.
3634
3699
 
3635
- Bug Fixes:
3700
+ Bug fixes:
3636
3701
 
3637
3702
  * `gem update` was implicitly doing --system.
3638
3703
  * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
@@ -3658,7 +3723,7 @@ Since apparently nobody reads my emails, blog posts or the README:
3658
3723
 
3659
3724
  DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
3660
3725
 
3661
- Bug fix:
3726
+ Bug fixes:
3662
3727
 
3663
3728
  * Specification#load was untainting a frozen string (via `gem build *.spec`)
3664
3729
 
@@ -3672,7 +3737,7 @@ You have been warned!
3672
3737
 
3673
3738
  NOTE: We've switched to git/github. See README.rdoc for details.
3674
3739
 
3675
- New features:
3740
+ Features:
3676
3741
 
3677
3742
  * Added --launch option to `gem server`. (gthiesfeld)
3678
3743
  * Added fuzzy name matching on install failures. (gstark/presidentbeef)
@@ -3704,7 +3769,7 @@ http://gems.rubyforge.org with https://rubygems.org/
3704
3769
 
3705
3770
  http://gems.rubyforge.org will continue to work for the foreseeable future.
3706
3771
 
3707
- New features:
3772
+ Features:
3708
3773
 
3709
3774
  * `gem` commands
3710
3775
  * `gem install` and `gem fetch` now report alternate platforms when a
@@ -3737,7 +3802,7 @@ Bug fixes:
3737
3802
 
3738
3803
  === 1.3.6 / 2010-02-17
3739
3804
 
3740
- New features:
3805
+ Features:
3741
3806
 
3742
3807
  * `gem` commands
3743
3808
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
@@ -3768,7 +3833,7 @@ Bug fixes:
3768
3833
  * Gem::RemoteFetcher no longer copies the file if it is where we want it.
3769
3834
  Patch #27409 by Jakub Šťastný.
3770
3835
 
3771
- Deprecation Notices:
3836
+ Deprecations:
3772
3837
 
3773
3838
  * lib/rubygems/timer.rb has been removed.
3774
3839
  * Gem::Dependency#version_requirements is deprecated and will be removed on or
@@ -3784,7 +3849,7 @@ Bug fixes:
3784
3849
  * Fix use of prerelease gems.
3785
3850
  * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
3786
3851
 
3787
- Deprecation Notices:
3852
+ Deprecations:
3788
3853
 
3789
3854
  * Bulk index update is no longer supported (the code currently remains, but not
3790
3855
  the tests)
@@ -3793,7 +3858,7 @@ Deprecation Notices:
3793
3858
 
3794
3859
  === 1.3.4 / 2009-05-03
3795
3860
 
3796
- Bug Fixes:
3861
+ Bug fixes:
3797
3862
 
3798
3863
  * Fixed various warnings
3799
3864
  * Gem::ruby_version works correctly for 1.8 branch and trunk
@@ -3804,7 +3869,7 @@ Bug Fixes:
3804
3869
  drives. Bug #25882 by Lars Christensen
3805
3870
  * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
3806
3871
 
3807
- Deprecation Notices:
3872
+ Deprecations:
3808
3873
 
3809
3874
  * Bulk index update is no longer supported (the code currently remains, but not
3810
3875
  the tests)
@@ -3813,7 +3878,7 @@ Deprecation Notices:
3813
3878
 
3814
3879
  === 1.3.3 / 2009-05-04
3815
3880
 
3816
- New Features:
3881
+ Features:
3817
3882
 
3818
3883
  * `gem server` allows port names (from /etc/services) with --port.
3819
3884
  * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
@@ -3823,7 +3888,7 @@ New Features:
3823
3888
  * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
3824
3889
  * RDoc is now generated regardless of Gem::Specification#has_rdoc?
3825
3890
 
3826
- Bug Fixes:
3891
+ Bug fixes:
3827
3892
 
3828
3893
  * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
3829
3894
  Eisenberg.
@@ -3845,7 +3910,7 @@ Bug Fixes:
3845
3910
  * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
3846
3911
  reported by Alf Mikula.
3847
3912
 
3848
- Deprecation Notices:
3913
+ Deprecations:
3849
3914
 
3850
3915
  * Gem::manage_gems has been removed.
3851
3916
  * Time::today has been removed early. There was no way to make it warn and be
@@ -3853,7 +3918,7 @@ Deprecation Notices:
3853
3918
 
3854
3919
  === 1.3.2 / 2009-04-15
3855
3920
 
3856
- Select New Features:
3921
+ Features:
3857
3922
 
3858
3923
  * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
3859
3924
  This can be used to add commands (See Gem::CommandManager) or add
@@ -3881,7 +3946,7 @@ Select New Features:
3881
3946
  * Modern indicies can now be updated incrementally.
3882
3947
  * Legacy indicies can be updated separately from modern.
3883
3948
 
3884
- Select Bugs Fixed:
3949
+ Bug fixes:
3885
3950
 
3886
3951
  * Better gem activation error message. Patch #23082.
3887
3952
  * Kernel methods are now private. Patch #20801 by James M. Lawrence.
@@ -3907,7 +3972,7 @@ Select Bugs Fixed:
3907
3972
  * Deal with extraneous quotation mark when autogenerating .bat file on MS
3908
3973
  Windows. Bug #22712.
3909
3974
 
3910
- Deprecation Notices:
3975
+ Deprecations:
3911
3976
 
3912
3977
  * Gem::manage_gems has been removed.
3913
3978
  * Time::today will be removed in RubyGems 1.4.
@@ -3917,7 +3982,7 @@ Lavena and Daniel Berger for continuing windows support.
3917
3982
 
3918
3983
  === 1.3.1 / 2008-10-28
3919
3984
 
3920
- Bugs fixed:
3985
+ Bug fixes:
3921
3986
 
3922
3987
  * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
3923
3988
  issues related to no uid support under Windows.
@@ -3928,13 +3993,13 @@ Bugs fixed:
3928
3993
  * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
3929
3994
  * Silence PATH warning.
3930
3995
 
3931
- Deprecation Notices:
3996
+ Deprecations:
3932
3997
 
3933
3998
  * Gem::manage_gems will be removed on or after March 2009.
3934
3999
 
3935
4000
  === 1.3.0 / 2008-09-25
3936
4001
 
3937
- New features:
4002
+ Features:
3938
4003
 
3939
4004
  * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
3940
4005
  stdout is not a TTY, except with --both.
@@ -3948,12 +4013,12 @@ New features:
3948
4013
  * RubyGems now updates the ri cache when the rdoc gem is installed and
3949
4014
  documentation is generated.
3950
4015
 
3951
- Deprecation Notices:
4016
+ Deprecations:
3952
4017
 
3953
4018
  * Gem::manage_gems now warns when called. It will be removed on or after March
3954
4019
  2009.
3955
4020
 
3956
- Bugs Fixed:
4021
+ Bug fixes:
3957
4022
 
3958
4023
  * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
3959
4024
  Bug #20775 by Hemant Kumar.
@@ -3977,7 +4042,7 @@ Bugs Fixed:
3977
4042
  * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
3978
4043
  * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
3979
4044
 
3980
- Other Changes Include:
4045
+ Minor enhancements:
3981
4046
 
3982
4047
  * `gem help install` now describes _version_ argument to executable stubs
3983
4048
  * `gem help environment` describes environment variables and ~/.gemrc and
@@ -4005,7 +4070,7 @@ Other Changes Include:
4005
4070
 
4006
4071
  === 1.2.0 / 2008-06-21
4007
4072
 
4008
- New features:
4073
+ Features:
4009
4074
 
4010
4075
  * RubyGems no longer performs bulk updates and instead only fetches the gemspec
4011
4076
  files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
@@ -4024,7 +4089,7 @@ New features:
4024
4089
  * setup.rb now handles --vendor and --destdir for packagers
4025
4090
  * `gem stale` command that lists gems by last access time
4026
4091
 
4027
- Bugs Fixed:
4092
+ Bug fixes:
4028
4093
 
4029
4094
  * File modes from gems are now honored, patch #19737
4030
4095
  * Marshal Gem::Specification objects from the future can now be loaded.
@@ -4039,7 +4104,7 @@ Bugs Fixed:
4039
4104
  * Gem::DependencyInstaller resets installed gems every install, bug #19444
4040
4105
  * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
4041
4106
 
4042
- Other Changes Include:
4107
+ Minor enhancements:
4043
4108
 
4044
4109
  * setup.rb
4045
4110
  * stub files created by RubyGems 0.7.x and older are no longer removed. When
@@ -4060,7 +4125,7 @@ Other Changes Include:
4060
4125
 
4061
4126
  === 1.1.1 / 2008-04-11
4062
4127
 
4063
- Bugs Fixed:
4128
+ Bug fixes:
4064
4129
 
4065
4130
  * Gem.prefix now returns non-nil only when RubyGems was installed outside
4066
4131
  sitelibdir or libdir.
@@ -4077,7 +4142,7 @@ Bugs Fixed:
4077
4142
 
4078
4143
  === 1.1.0 / 2008-03-29
4079
4144
 
4080
- New features:
4145
+ Features:
4081
4146
 
4082
4147
  * RubyGems now uses persistent connections on index updates. Index updates are
4083
4148
  much faster now.
@@ -4089,7 +4154,7 @@ New features:
4089
4154
  * `gem spec` now extracts specifications from .gem files.
4090
4155
  * `gem query --installed` to aid automation of checking for gems.
4091
4156
 
4092
- Bugs Fixed:
4157
+ Bug fixes:
4093
4158
 
4094
4159
  * RubyGems works with both Config and RbConfig now.
4095
4160
  * Executables are now cleaned upon uninstall.
@@ -4105,7 +4170,7 @@ Bugs Fixed:
4105
4170
  * Gem stub scripts on windows now work outside Gem.bindir.
4106
4171
  * `gem sources -r` now works without network access.
4107
4172
 
4108
- Other Changes Include:
4173
+ Minor enhancements:
4109
4174
 
4110
4175
  * RubyGems now requires Ruby > 1.8.3.
4111
4176
  * Release notes are now printed upon installation.
@@ -4118,24 +4183,24 @@ For a full list of changes to RubyGems, see the ChangeLog file.
4118
4183
 
4119
4184
  === 1.0.1 / 2007-12-20
4120
4185
 
4121
- Bugs Fixed:
4186
+ Bug fixes:
4122
4187
 
4123
4188
  * Installation on Ruby 1.8.3 through 1.8.5 fixed
4124
4189
  * `gem build` on 1.8.3 fixed
4125
4190
 
4126
- Other Changes Include:
4191
+ Minor enhancements:
4127
4192
 
4128
4193
  * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
4129
4194
  this is official in RubyGems 1.0.1.
4130
4195
 
4131
4196
  === 1.0.0 / 2007-12-20
4132
4197
 
4133
- Major New Features Include:
4198
+ Features:
4134
4199
 
4135
4200
  * RubyGems warns about various problems with gemspecs during gem building
4136
4201
  * More-consistent versioning for the RubyGems software
4137
4202
 
4138
- Other Changes Include:
4203
+ Minor enhancements:
4139
4204
 
4140
4205
  * Fixed various bugs and problems with installing gems on Windows
4141
4206
  * Fixed using `gem server` for installing gems
@@ -4149,7 +4214,7 @@ Other Changes Include:
4149
4214
  * `gem unpack` can now unpack into a specific directory with --target
4150
4215
  * OpenSSL is no longer required by default
4151
4216
 
4152
- Deprecations and Deletions:
4217
+ Breaking changes:
4153
4218
 
4154
4219
  * Kernel#require_gem has been removed
4155
4220
  * Executables without a shebang will not be wrapped in a future version, this
@@ -4163,7 +4228,7 @@ Deprecations and Deletions:
4163
4228
 
4164
4229
  === 0.9.5 / 2007-11-19
4165
4230
 
4166
- Major New Features Include:
4231
+ Features:
4167
4232
 
4168
4233
  * Platform support
4169
4234
  * Automatic installation of platform gems
@@ -4175,7 +4240,7 @@ Major New Features Include:
4175
4240
  * Improved stubs and `gem.bat` on mswin, including better compatibility
4176
4241
  with the One-Click Installer.
4177
4242
 
4178
- Other Changes Include:
4243
+ Minor enhancements:
4179
4244
 
4180
4245
  * Time::today is deprecated and will be removed at a future date
4181
4246
  * Gem::manage_gems is deprecated and will be removed at a future date
@@ -4226,7 +4291,7 @@ If you are experiencing problems with the source index (e.g. strange
4226
4291
  "No Method" errors), or problems with zlib (e.g. "Buffer Error"
4227
4292
  messsage), we recommend upgrading to RubyGems 0.9.4.
4228
4293
 
4229
- Bug Fixes Include:
4294
+ Bug fixes:
4230
4295
 
4231
4296
  * Several people have been experiencing problems with no method errors
4232
4297
  on the source index cache. The source index cache is now a bit more
@@ -4240,7 +4305,7 @@ Bug Fixes Include:
4240
4305
 
4241
4306
  === 0.9.3 / 2007-05-10
4242
4307
 
4243
- Bug Fixes Include:
4308
+ Bug fixes:
4244
4309
 
4245
4310
  The ZLib library on Windows will occasionally complains about a buffer error
4246
4311
  when unpacking gems. The Gems software has a workaround for that problem, but
@@ -4250,7 +4315,7 @@ have permanently enabled the work around on all versions.
4250
4315
 
4251
4316
  === 0.9.2 / 2007-02-05
4252
4317
 
4253
- Bug Fixes Include:
4318
+ Bug fixes:
4254
4319
 
4255
4320
  * The "unpack" command now works properly.
4256
4321
  * User name and password are now passed properly to the authenticating
@@ -4268,7 +4333,7 @@ number one change is that we can now download the gem index
4268
4333
  incrementally. This will greatly speed up the gem command when only a
4269
4334
  few gems are out of date.
4270
4335
 
4271
- Major Enhancments include:
4336
+ Major enhancements:
4272
4337
 
4273
4338
  * The gem index is now downloaded incrementally, only updating entries
4274
4339
  that are out of date. If more than 50 entries are out of date, we
@@ -4284,7 +4349,7 @@ Major Enhancments include:
4284
4349
  * A gemri command is included to read gem RI docs (only needed for
4285
4350
  Ruby 1.8.4 or earlier).
4286
4351
 
4287
- Minor enhancements include:
4352
+ Minor enhancements:
4288
4353
 
4289
4354
  * Version 0.0.0 is now a valid gem version.
4290
4355
  * Better detection of missing SSL functionality.
@@ -4298,7 +4363,7 @@ Minor enhancements include:
4298
4363
  * .rbw is now a supported suffix for RubyGem's custom require.
4299
4364
  * Several Ruby 1.9 compatibility fixes (Eric Hodel).
4300
4365
 
4301
- Bug Fixes:
4366
+ Bug fixes:
4302
4367
 
4303
4368
  * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
4304
4369
  cross-Ruby version compatibility issues.