rubygems-update 3.1.6 → 3.2.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (347) hide show
  1. checksums.yaml +4 -4
  2. data/CODE_OF_CONDUCT.md +55 -19
  3. data/CONTRIBUTING.md +1 -2
  4. data/History.txt +122 -14
  5. data/Manifest.txt +13 -25
  6. data/POLICIES.md +2 -9
  7. data/README.md +1 -1
  8. data/Rakefile +31 -33
  9. data/bin/update_rubygems +1 -1
  10. data/bundler/CHANGELOG.md +806 -741
  11. data/bundler/README.md +6 -8
  12. data/bundler/UPGRADING.md +16 -30
  13. data/bundler/bundler.gemspec +3 -3
  14. data/bundler/exe/bundle +3 -0
  15. data/bundler/lib/bundler.rb +15 -4
  16. data/bundler/lib/bundler/build_metadata.rb +2 -2
  17. data/bundler/lib/bundler/cli.rb +32 -11
  18. data/bundler/lib/bundler/cli/console.rb +1 -1
  19. data/bundler/lib/bundler/cli/gem.rb +83 -10
  20. data/bundler/lib/bundler/cli/info.rb +13 -3
  21. data/bundler/lib/bundler/cli/init.rb +1 -1
  22. data/bundler/lib/bundler/cli/install.rb +5 -14
  23. data/bundler/lib/bundler/cli/issue.rb +2 -2
  24. data/bundler/lib/bundler/cli/list.rb +11 -9
  25. data/bundler/lib/bundler/cli/outdated.rb +88 -65
  26. data/bundler/lib/bundler/cli/plugin.rb +10 -0
  27. data/bundler/lib/bundler/cli/pristine.rb +5 -0
  28. data/bundler/lib/bundler/definition.rb +32 -32
  29. data/bundler/lib/bundler/dependency.rb +0 -9
  30. data/bundler/lib/bundler/dsl.rb +1 -5
  31. data/bundler/lib/bundler/environment_preserver.rb +26 -2
  32. data/bundler/lib/bundler/errors.rb +1 -0
  33. data/bundler/lib/bundler/feature_flag.rb +0 -2
  34. data/bundler/lib/bundler/fetcher.rb +1 -0
  35. data/bundler/lib/bundler/friendly_errors.rb +4 -10
  36. data/bundler/lib/bundler/gem_helper.rb +17 -10
  37. data/bundler/lib/bundler/gem_version_promoter.rb +1 -1
  38. data/bundler/lib/bundler/injector.rb +14 -3
  39. data/bundler/lib/bundler/inline.rb +1 -1
  40. data/bundler/lib/bundler/installer.rb +29 -28
  41. data/bundler/lib/bundler/installer/gem_installer.rb +2 -2
  42. data/bundler/lib/bundler/installer/parallel_installer.rb +9 -9
  43. data/bundler/lib/bundler/lazy_specification.rb +16 -3
  44. data/bundler/lib/bundler/plugin.rb +26 -0
  45. data/bundler/lib/bundler/plugin/index.rb +9 -0
  46. data/bundler/lib/bundler/psyched_yaml.rb +0 -15
  47. data/bundler/lib/bundler/remote_specification.rb +4 -1
  48. data/bundler/lib/bundler/resolver.rb +31 -8
  49. data/bundler/lib/bundler/resolver/spec_group.rb +26 -5
  50. data/bundler/lib/bundler/rubygems_ext.rb +7 -8
  51. data/bundler/lib/bundler/rubygems_gem_installer.rb +1 -7
  52. data/bundler/lib/bundler/rubygems_integration.rb +3 -48
  53. data/bundler/lib/bundler/runtime.rb +2 -12
  54. data/bundler/lib/bundler/settings.rb +0 -3
  55. data/bundler/lib/bundler/shared_helpers.rb +1 -1
  56. data/bundler/lib/bundler/source/git.rb +4 -4
  57. data/bundler/lib/bundler/source/git/git_proxy.rb +53 -58
  58. data/bundler/lib/bundler/source/path.rb +5 -1
  59. data/bundler/lib/bundler/source/path/installer.rb +7 -9
  60. data/bundler/lib/bundler/source/rubygems.rb +11 -14
  61. data/bundler/lib/bundler/stub_specification.rb +16 -4
  62. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  63. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +9 -1
  64. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +19 -5
  65. data/bundler/lib/bundler/templates/newgem/bin/console.tt +2 -0
  66. data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  67. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  68. data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
  69. data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  70. data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -0
  71. data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  72. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +6 -4
  73. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
  74. data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  75. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
  76. data/bundler/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  77. data/bundler/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  78. data/bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  79. data/bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  80. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +75 -189
  81. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +0 -7
  82. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  83. data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  84. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  85. data/bundler/lib/bundler/version.rb +1 -1
  86. data/bundler/man/bundle-add.1 +1 -1
  87. data/bundler/man/bundle-add.1.txt +15 -15
  88. data/bundler/man/bundle-binstubs.1 +1 -1
  89. data/bundler/man/bundle-binstubs.1.txt +10 -10
  90. data/bundler/man/bundle-cache.1 +1 -1
  91. data/bundler/man/bundle-cache.1.txt +15 -15
  92. data/bundler/man/bundle-check.1 +1 -1
  93. data/bundler/man/bundle-check.1.txt +8 -8
  94. data/bundler/man/bundle-clean.1 +1 -1
  95. data/bundler/man/bundle-clean.1.txt +6 -6
  96. data/bundler/man/bundle-config.1 +3 -9
  97. data/bundler/man/bundle-config.1.txt +271 -272
  98. data/bundler/man/bundle-config.ronn +5 -9
  99. data/bundler/man/bundle-doctor.1 +1 -1
  100. data/bundler/man/bundle-doctor.1.txt +9 -9
  101. data/bundler/man/bundle-exec.1 +1 -1
  102. data/bundler/man/bundle-exec.1.txt +84 -81
  103. data/bundler/man/bundle-gem.1 +25 -3
  104. data/bundler/man/bundle-gem.1.txt +65 -39
  105. data/bundler/man/bundle-gem.ronn +30 -7
  106. data/bundler/man/bundle-info.1 +1 -1
  107. data/bundler/man/bundle-info.1.txt +2 -2
  108. data/bundler/man/bundle-init.1 +1 -1
  109. data/bundler/man/bundle-init.1.txt +9 -9
  110. data/bundler/man/bundle-inject.1 +1 -1
  111. data/bundler/man/bundle-inject.1.txt +4 -4
  112. data/bundler/man/bundle-install.1 +1 -1
  113. data/bundler/man/bundle-install.1.txt +169 -169
  114. data/bundler/man/bundle-list.1 +7 -7
  115. data/bundler/man/bundle-list.1.txt +12 -11
  116. data/bundler/man/bundle-list.ronn +6 -6
  117. data/bundler/man/bundle-lock.1 +1 -1
  118. data/bundler/man/bundle-lock.1.txt +28 -28
  119. data/bundler/man/bundle-open.1 +1 -1
  120. data/bundler/man/bundle-open.1.txt +3 -3
  121. data/bundler/man/bundle-outdated.1 +1 -1
  122. data/bundler/man/bundle-outdated.1.txt +34 -34
  123. data/bundler/man/bundle-platform.1 +1 -1
  124. data/bundler/man/bundle-platform.1.txt +16 -16
  125. data/bundler/man/bundle-pristine.1 +1 -1
  126. data/bundler/man/bundle-pristine.1.txt +8 -8
  127. data/bundler/man/bundle-remove.1 +1 -1
  128. data/bundler/man/bundle-remove.1.txt +9 -9
  129. data/bundler/man/bundle-show.1 +1 -1
  130. data/bundler/man/bundle-show.1.txt +8 -8
  131. data/bundler/man/bundle-update.1 +1 -1
  132. data/bundler/man/bundle-update.1.txt +149 -148
  133. data/bundler/man/bundle-viz.1 +1 -1
  134. data/bundler/man/bundle-viz.1.txt +11 -11
  135. data/bundler/man/bundle.1 +1 -1
  136. data/bundler/man/bundle.1.txt +31 -31
  137. data/bundler/man/gemfile.5 +1 -1
  138. data/bundler/man/gemfile.5.txt +218 -216
  139. data/lib/rubygems.rb +68 -148
  140. data/lib/rubygems/available_set.rb +4 -4
  141. data/lib/rubygems/basic_specification.rb +11 -5
  142. data/lib/rubygems/bundler_version_finder.rb +14 -9
  143. data/lib/rubygems/command.rb +16 -14
  144. data/lib/rubygems/command_manager.rb +4 -3
  145. data/lib/rubygems/commands/cert_command.rb +1 -1
  146. data/lib/rubygems/commands/cleanup_command.rb +3 -3
  147. data/lib/rubygems/commands/contents_command.rb +4 -4
  148. data/lib/rubygems/commands/dependency_command.rb +6 -6
  149. data/lib/rubygems/commands/fetch_command.rb +2 -2
  150. data/lib/rubygems/commands/help_command.rb +1 -1
  151. data/lib/rubygems/commands/info_command.rb +9 -4
  152. data/lib/rubygems/commands/install_command.rb +3 -3
  153. data/lib/rubygems/commands/list_command.rb +9 -6
  154. data/lib/rubygems/commands/lock_command.rb +1 -1
  155. data/lib/rubygems/commands/open_command.rb +0 -2
  156. data/lib/rubygems/commands/pristine_command.rb +10 -2
  157. data/lib/rubygems/commands/push_command.rb +4 -42
  158. data/lib/rubygems/commands/query_command.rb +7 -352
  159. data/lib/rubygems/commands/search_command.rb +8 -6
  160. data/lib/rubygems/commands/setup_command.rb +128 -32
  161. data/lib/rubygems/commands/specification_command.rb +2 -2
  162. data/lib/rubygems/commands/stale_command.rb +1 -1
  163. data/lib/rubygems/commands/uninstall_command.rb +1 -1
  164. data/lib/rubygems/commands/unpack_command.rb +1 -1
  165. data/lib/rubygems/commands/update_command.rb +40 -10
  166. data/lib/rubygems/config_file.rb +11 -2
  167. data/lib/rubygems/core_ext/kernel_require.rb +2 -2
  168. data/lib/rubygems/defaults.rb +99 -5
  169. data/lib/rubygems/dependency.rb +2 -5
  170. data/lib/rubygems/dependency_installer.rb +1 -73
  171. data/lib/rubygems/dependency_list.rb +7 -7
  172. data/lib/rubygems/deprecate.rb +46 -1
  173. data/lib/rubygems/doctor.rb +4 -2
  174. data/lib/rubygems/errors.rb +3 -2
  175. data/lib/rubygems/exceptions.rb +2 -13
  176. data/lib/rubygems/ext.rb +6 -6
  177. data/lib/rubygems/ext/build_error.rb +2 -0
  178. data/lib/rubygems/ext/builder.rb +1 -1
  179. data/lib/rubygems/ext/cmake_builder.rb +1 -1
  180. data/lib/rubygems/ext/ext_conf_builder.rb +6 -7
  181. data/lib/rubygems/gem_runner.rb +3 -8
  182. data/lib/rubygems/gemcutter_utilities.rb +1 -1
  183. data/lib/rubygems/indexer.rb +1 -19
  184. data/lib/rubygems/install_update_options.rb +5 -5
  185. data/lib/rubygems/installer.rb +45 -42
  186. data/lib/rubygems/installer_test_case.rb +19 -2
  187. data/lib/rubygems/installer_uninstaller_utils.rb +24 -0
  188. data/lib/rubygems/local_remote_options.rb +1 -1
  189. data/lib/rubygems/name_tuple.rb +2 -4
  190. data/lib/rubygems/package.rb +8 -13
  191. data/lib/rubygems/package/old.rb +1 -1
  192. data/lib/rubygems/package/tar_header.rb +3 -3
  193. data/lib/rubygems/package/tar_reader.rb +0 -1
  194. data/lib/rubygems/package/tar_reader/entry.rb +0 -1
  195. data/lib/rubygems/package/tar_test_case.rb +1 -1
  196. data/lib/rubygems/package/tar_writer.rb +2 -6
  197. data/lib/rubygems/package_task.rb +1 -5
  198. data/lib/rubygems/path_support.rb +1 -1
  199. data/lib/rubygems/platform.rb +3 -3
  200. data/lib/rubygems/query_utils.rb +362 -0
  201. data/lib/rubygems/rdoc.rb +0 -12
  202. data/lib/rubygems/remote_fetcher.rb +5 -19
  203. data/lib/rubygems/request/connection_pools.rb +1 -1
  204. data/lib/rubygems/request_set.rb +5 -5
  205. data/lib/rubygems/request_set/gem_dependency_api.rb +1 -1
  206. data/lib/rubygems/request_set/lockfile.rb +8 -8
  207. data/lib/rubygems/request_set/lockfile/tokenizer.rb +1 -1
  208. data/lib/rubygems/requirement.rb +14 -15
  209. data/lib/rubygems/resolver.rb +7 -8
  210. data/lib/rubygems/resolver/api_set.rb +3 -3
  211. data/lib/rubygems/resolver/composed_set.rb +3 -3
  212. data/lib/rubygems/resolver/conflict.rb +1 -1
  213. data/lib/rubygems/resolver/index_set.rb +1 -1
  214. data/lib/rubygems/resolver/installer_set.rb +3 -3
  215. data/lib/rubygems/resolver/lock_set.rb +1 -1
  216. data/lib/rubygems/safe_yaml.rb +4 -4
  217. data/lib/rubygems/security.rb +25 -25
  218. data/lib/rubygems/security/policy.rb +3 -3
  219. data/lib/rubygems/security/signer.rb +4 -4
  220. data/lib/rubygems/security/trust_dir.rb +1 -1
  221. data/lib/rubygems/server.rb +8 -8
  222. data/lib/rubygems/source/git.rb +7 -6
  223. data/lib/rubygems/source/local.rb +2 -2
  224. data/lib/rubygems/source_list.rb +4 -5
  225. data/lib/rubygems/spec_fetcher.rb +18 -15
  226. data/lib/rubygems/specification.rb +79 -104
  227. data/lib/rubygems/specification_policy.rb +79 -27
  228. data/lib/rubygems/ssl_certs/{rubygems.org → index.rubygems.org}/GlobalSignRootCA.pem +0 -0
  229. data/lib/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +23 -0
  230. data/lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +25 -0
  231. data/lib/rubygems/test_case.rb +63 -83
  232. data/lib/rubygems/test_utilities.rb +6 -6
  233. data/lib/rubygems/uninstaller.rb +35 -14
  234. data/lib/rubygems/user_interaction.rb +1 -10
  235. data/lib/rubygems/util.rb +10 -2
  236. data/lib/rubygems/util/licenses.rb +4 -4
  237. data/lib/rubygems/validator.rb +1 -1
  238. data/lib/rubygems/version.rb +4 -4
  239. data/rubygems-update.gemspec +2 -2
  240. data/setup.rb +2 -7
  241. data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -2
  242. data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +0 -2
  243. data/test/rubygems/test_bundled_ca.rb +4 -12
  244. data/test/rubygems/test_deprecate.rb +43 -4
  245. data/test/rubygems/test_gem.rb +79 -74
  246. data/test/rubygems/test_gem_available_set.rb +3 -3
  247. data/test/rubygems/test_gem_bundler_version_finder.rb +19 -1
  248. data/test/rubygems/test_gem_command.rb +24 -3
  249. data/test/rubygems/test_gem_command_manager.rb +37 -4
  250. data/test/rubygems/test_gem_commands_build_command.rb +7 -2
  251. data/test/rubygems/test_gem_commands_cert_command.rb +2 -2
  252. data/test/rubygems/test_gem_commands_cleanup_command.rb +1 -1
  253. data/test/rubygems/test_gem_commands_contents_command.rb +48 -15
  254. data/test/rubygems/test_gem_commands_environment_command.rb +21 -21
  255. data/test/rubygems/test_gem_commands_generate_index_command.rb +1 -5
  256. data/test/rubygems/test_gem_commands_info_command.rb +6 -6
  257. data/test/rubygems/test_gem_commands_install_command.rb +31 -31
  258. data/test/rubygems/test_gem_commands_mirror.rb +1 -1
  259. data/test/rubygems/test_gem_commands_open_command.rb +4 -4
  260. data/test/rubygems/test_gem_commands_owner_command.rb +11 -3
  261. data/test/rubygems/test_gem_commands_pristine_command.rb +41 -8
  262. data/test/rubygems/test_gem_commands_push_command.rb +7 -2
  263. data/test/rubygems/test_gem_commands_query_command.rb +9 -5
  264. data/test/rubygems/test_gem_commands_setup_command.rb +160 -108
  265. data/test/rubygems/test_gem_commands_signin_command.rb +6 -4
  266. data/test/rubygems/test_gem_commands_signout_command.rb +0 -5
  267. data/test/rubygems/test_gem_commands_specification_command.rb +18 -18
  268. data/test/rubygems/test_gem_commands_uninstall_command.rb +1 -1
  269. data/test/rubygems/test_gem_commands_update_command.rb +68 -5
  270. data/test/rubygems/test_gem_commands_which_command.rb +3 -3
  271. data/test/rubygems/test_gem_commands_yank_command.rb +14 -6
  272. data/test/rubygems/test_gem_config_file.rb +7 -10
  273. data/test/rubygems/test_gem_dependency_installer.rb +52 -189
  274. data/test/rubygems/test_gem_dependency_list.rb +8 -8
  275. data/test/rubygems/test_gem_dependency_resolution_error.rb +1 -1
  276. data/test/rubygems/test_gem_doctor.rb +28 -0
  277. data/test/rubygems/test_gem_ext_builder.rb +14 -25
  278. data/test/rubygems/test_gem_ext_cmake_builder.rb +13 -12
  279. data/test/rubygems/test_gem_ext_configure_builder.rb +1 -9
  280. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -1
  281. data/test/rubygems/test_gem_ext_rake_builder.rb +9 -9
  282. data/test/rubygems/test_gem_gem_runner.rb +42 -0
  283. data/test/rubygems/test_gem_gemcutter_utilities.rb +5 -0
  284. data/test/rubygems/test_gem_indexer.rb +9 -13
  285. data/test/rubygems/test_gem_installer.rb +149 -45
  286. data/test/rubygems/test_gem_package.rb +13 -12
  287. data/test/rubygems/test_gem_package_tar_header.rb +19 -0
  288. data/test/rubygems/test_gem_package_tar_writer.rb +3 -3
  289. data/test/rubygems/test_gem_package_task.rb +46 -11
  290. data/test/rubygems/test_gem_remote_fetcher.rb +152 -190
  291. data/test/rubygems/test_gem_request.rb +11 -11
  292. data/test/rubygems/test_gem_request_set.rb +20 -20
  293. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +3 -3
  294. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +9 -9
  295. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +118 -118
  296. data/test/rubygems/test_gem_requirement.rb +2 -2
  297. data/test/rubygems/test_gem_resolver.rb +6 -6
  298. data/test/rubygems/test_gem_resolver_api_set.rb +3 -3
  299. data/test/rubygems/test_gem_resolver_best_set.rb +2 -2
  300. data/test/rubygems/test_gem_resolver_index_set.rb +2 -2
  301. data/test/rubygems/test_gem_resolver_installer_set.rb +7 -7
  302. data/test/rubygems/test_gem_resolver_lock_set.rb +3 -3
  303. data/test/rubygems/test_gem_security.rb +20 -20
  304. data/test/rubygems/test_gem_security_policy.rb +5 -8
  305. data/test/rubygems/test_gem_security_signer.rb +8 -8
  306. data/test/rubygems/test_gem_security_trust_dir.rb +2 -2
  307. data/test/rubygems/test_gem_server.rb +10 -10
  308. data/test/rubygems/test_gem_source.rb +12 -14
  309. data/test/rubygems/test_gem_source_git.rb +12 -11
  310. data/test/rubygems/test_gem_source_installed.rb +7 -7
  311. data/test/rubygems/test_gem_source_local.rb +8 -8
  312. data/test/rubygems/test_gem_source_lock.rb +10 -10
  313. data/test/rubygems/test_gem_source_specific_file.rb +7 -7
  314. data/test/rubygems/test_gem_source_vendor.rb +7 -7
  315. data/test/rubygems/test_gem_spec_fetcher.rb +11 -2
  316. data/test/rubygems/test_gem_specification.rb +143 -113
  317. data/test/rubygems/test_gem_stream_ui.rb +3 -1
  318. data/test/rubygems/test_gem_text.rb +1 -1
  319. data/test/rubygems/test_gem_uninstaller.rb +134 -10
  320. data/test/rubygems/test_gem_util.rb +7 -5
  321. data/test/rubygems/test_gem_version.rb +1 -1
  322. data/test/rubygems/test_kernel.rb +10 -12
  323. data/test/rubygems/test_project_sanity.rb +8 -1
  324. data/test/rubygems/test_require.rb +141 -43
  325. metadata +32 -45
  326. data/.bundle/config +0 -2
  327. data/.rubocop.yml +0 -91
  328. data/Gemfile +0 -8
  329. data/Gemfile.lock +0 -43
  330. data/bundler/CODE_OF_CONDUCT.md +0 -136
  331. data/lib/rubygems/source_local.rb +0 -7
  332. data/lib/rubygems/source_specific_file.rb +0 -6
  333. data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem +0 -21
  334. data/lib/ubygems.rb +0 -14
  335. data/tmp/.keep +0 -0
  336. data/util/CL2notes +0 -55
  337. data/util/bisect +0 -10
  338. data/util/ci.sh +0 -62
  339. data/util/cops/deprecations.rb +0 -52
  340. data/util/create_certs.rb +0 -171
  341. data/util/create_certs.sh +0 -27
  342. data/util/create_encrypted_key.rb +0 -16
  343. data/util/generate_spdx_license_list.rb +0 -63
  344. data/util/patch_with_prs.rb +0 -77
  345. data/util/rubocop +0 -8
  346. data/util/update_bundled_ca_certificates.rb +0 -137
  347. data/util/update_changelog.rb +0 -64
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf1897c1f4290a7c09ac7fc031441915d225aaa7ffab473229a244310eaa39ac
4
- data.tar.gz: d6aef4fc02c767b99957e4dfaff7818399b9fb59de550d23bee19256b618a5f6
3
+ metadata.gz: f9674dd6c41b5b5949b145bff3ca8fe825b1d0b15b78643f91efdbb6b21f4058
4
+ data.tar.gz: 178b23925b626f81220bf05f6f26ea9c3e7bf60411b45b88090a0f0949c978aa
5
5
  SHA512:
6
- metadata.gz: 2421931e30162b92a93891c80eb17bd3d78a135da9019f49a18ce701bf4ca1fa7731260f4cc6de1342a74accceb8df21024ccd5042cbefa9a89cf67c69528a54
7
- data.tar.gz: 131eb583b3864dec611fab7574a8ebf75cc796288ed2a4c43e96d6b53d24509f282e83fa36b2851ad5e5c21b6d8f78fc3fadc3da974575428b3489d3d28d3a88
6
+ metadata.gz: 03b6e5757f0aa561a8559468438e260ff49846ab1a4d57a1089fced6e649813f896b065ce5817371340eb321cf64dfef4e8219451096c100bf70d40e1b07293e
7
+ data.tar.gz: c7b934dd19c4f6325e7f627cb70943ee39fe3ff0e65cb3eea768ad16ec0edb101a0e51f9aef24d7b4481880aad5d9e69bcad3e5055c3d319576b7b8e377135bb
data/CODE_OF_CONDUCT.md CHANGED
@@ -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.
data/CONTRIBUTING.md CHANGED
@@ -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
 
@@ -152,7 +151,7 @@ an appropriate purple `platform: *` label. Current platform labels:
152
151
  ### Git
153
152
 
154
153
  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
154
+ it ensures that any code submitted by you wasn't altered while you were
156
155
  transferring it, and proves that it was you who submitted it and not someone
157
156
  else.
158
157
 
data/History.txt CHANGED
@@ -1,21 +1,110 @@
1
1
  # coding: UTF-8
2
2
 
3
- === 3.1.6 / 2021-01-26
3
+ === 3.2.0.rc.1 / 2020-07-04
4
+
5
+ Major enhancements:
6
+
7
+ * Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
8
+ * Rework plugins system and speed up rubygems. Pull request #3108 by David
9
+ Rodríguez.
4
10
 
5
11
  Minor enhancements:
6
12
 
7
- * Improve require. Pull request #3133 by David Rodríguez.
8
- * Simplify nested gem activation exceptions. Pull request #3450 by David
13
+ * Specify explicit separator not to be affected by $;. Pull request #3424
14
+ by Nobuyoshi Nakada.
15
+ * Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
16
+ * Rollback gem deprecate. Pull request #3530 by Luis Sagastume.
17
+ * Normalize heredoc delimiters. Pull request #3533 by David Rodríguez.
18
+ * Log messages to stdout in `rake package`. Pull request #3632 by David
19
+ Rodríguez.
20
+ * Remove explicit `psych` activation. Pull request #3636 by David
9
21
  Rodríguez.
10
- * Fix correctness and performance regression in `require`. Pull request
11
- #3639 by David Rodríguez.
22
+ * Delay `fileutils` loading to fix some warnings. Pull request #3637 by
23
+ David Rodríguez.
24
+ * Make sure rubygems/package can be directly required reliably. Pull
25
+ request #3670 by Luis Sagastume.
26
+ * Make sure `tmp` folder exists before calling `Dir.tmpdir`. Pull request
27
+ #3711 by David Rodríguez.
28
+ * Add Gem.disable_system_update_message to disable gem update --system if
29
+ needed. Pull request #3720 by Josef Šimánek.
30
+ * Tweaks to play nice with ruby-core setup. Pull request #3733 by David
31
+ Rodríguez.
32
+ * Remove explicit require for auto-loaded constant. Pull request #3751 by
33
+ Karol Bucek.
34
+ * Test files should not be included in spec.files. Pull request #3758 by
35
+ Marc-André Lafortune.
36
+ * Remove TODO comment about warning on setting instead of pushing. Pull
37
+ request #2823 by Luis Sagastume.
38
+ * Add deprecate command method. Pull request #2935 by Luis Sagastume.
39
+ * Simplify deprecate command method. Pull request #2974 by Luis Sagastume.
40
+ * Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
41
+ #2985 by MSP-Greg.
42
+ * Add `funding_uri ` metadata field to gemspec. Pull request #3060 by
43
+ Colby Swandale.
44
+ * Updates to some old gem-signing docs. Pull request #3063 by Tieg
45
+ Zaharia.
46
+ * Update the gem method for Gem::Installer. Pull request #3137 by Daniel
47
+ Berger.
48
+ * Simplify initial gem help output. Pull request #3148 by Olivier Lacan.
49
+ * Resolve latest version via `gem contents`. Pull request #3149 by Dan
50
+ Rice.
51
+ * Install suggestions. Pull request #3151 by Sophia Castellarin.
52
+ * Only rescue the errors we actually want to rescue. Pull request #3156 by
53
+ David Rodríguez.
12
54
 
13
- === 3.1.5 / 2020-12-09
55
+ Bug fixes:
14
56
 
15
- Minor enhancements:
57
+ * Accept not only /usr/bin/env but also /bin/env in some tests. Pull
58
+ request #3422 by Yusuke Endoh.
59
+ * Skip a test that attempts to remove the current directory on Solaris.
60
+ Pull request #3423 by Yusuke Endoh.
61
+ * Fix race condition on bundler's parallel installer. Pull request #3440
62
+ by David Rodríguez.
63
+ * Fix platform comparison check in #contains_requirable_file?. Pull
64
+ request #3495 by Benoit Daloze.
65
+ * Improve missing spec error. Pull request #3559 by Luis Sagastume.
66
+ * Fix hidden bundler template installation from rubygems updater. Pull
67
+ request #3674 by David Rodríguez.
68
+ * Fix gem update --user-install. Pull request #2901 by Luis Sagastume.
69
+ * Correct conflict list when uninstallation is prevented. Pull request
70
+ #2973 by David Rodríguez.
71
+ * Fix error when trying to find bundler with a deleted "working directo….
72
+ Pull request #3090 by Luis Sagastume.
73
+ * Fix -I require priority. Pull request #3124 by David Rodríguez.
74
+ * Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
75
+ Rodríguez.
16
76
 
17
- * Add GlobalSign Root CA - R3 cert and remove outdated certs. Pull request #4100
18
- by Aditya Prakash.
77
+ Compatibility changes:
78
+
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
+ * Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
83
+ * Minitest cleanup. Pull request #3445 by David Rodríguez.
84
+ * Remove `builder` gem requirement for `gem regenerate_index`. Pull
85
+ request #3552 by David Rodríguez.
86
+ * Remove modelines for consistency. Pull request #3714 by David Rodríguez.
87
+ * Stop using deprecated OpenSSL::Digest constants. Pull request #3763 by
88
+ Bart de Water.
89
+ * Remove Gem module deprecated methods. Pull request #3101 by Luis
90
+ Sagastume.
91
+ * Remove ubygems.rb. Pull request #3102 by Luis Sagastume.
92
+ * Remove Gem::Commands::QueryCommand. Pull request #3104 by Luis
93
+ Sagastume.
94
+ * Remove dependency installer deprecated methods. Pull request #3106 by
95
+ Luis Sagastume.
96
+ * Set deprecation warning on query command. Pull request #2967 by Luis
97
+ Sagastume.
98
+ * Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
99
+ Sagastume.
100
+ * Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
101
+ Sagastume.
102
+ * Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request #3111 by
103
+ Luis Sagastume.
104
+ * Remove source_exception from Gem::Exception. Pull request #3112 by Luis
105
+ Sagastume.
106
+ * Requiring rubygems/source_specific_file is deprecated, remove it. Pull
107
+ request #3114 by Luis Sagastume.
19
108
 
20
109
  === 3.1.4 / 2020-06-03
21
110
 
@@ -360,6 +449,25 @@ Style changes:
360
449
  David Rodríguez.
361
450
  * Rubocop 0.71. Pull request #2785 by David Rodríguez.
362
451
 
452
+ === 3.0.8 / 2020-02-19
453
+
454
+ Bug fixes:
455
+
456
+ * Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
457
+ Nobuyoshi Nakada.
458
+
459
+ === 3.0.7 / 2020-02-18
460
+
461
+ Bug fixes:
462
+
463
+ * Fix underscore version selection for bundler #2908 by David Rodríguez.
464
+ * Add missing wrapper. Pull request #2690 by David Rodríguez.
465
+ * Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
466
+ Pull request #2782 by Luis Sagastume.
467
+ * Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
468
+ * Use IAM role to extract security-credentials for EC2 instance. Pull
469
+ request #2894 by Alexander Pakulov.
470
+
363
471
  === 3.0.6 / 2019-08-17
364
472
 
365
473
  Bug fixes:
@@ -553,7 +661,7 @@ Minor enhancements:
553
661
  Swandale.
554
662
  * Add Gem.operating_system_defaults to allow packagers to override
555
663
  defaults. Pull request #2116 by Vít Ondruch.
556
- * Update for compatibilty with new minitest. Pull request #2118 by
664
+ * Update for compatibility with new minitest. Pull request #2118 by
557
665
  MSP-Greg.
558
666
  * Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
559
667
  * Avoid to warnings about gemspec loadings in rubygems tests. Pull request
@@ -585,11 +693,11 @@ Minor enhancements:
585
693
  SHIBATA Hiroshi.
586
694
  * Add Rake task to install dev dependencies. Pull request #2173 by Ellen
587
695
  Marie Dash.
588
- * Add new sections to the README and explaination of what RubyGems is.
696
+ * Add new sections to the README and explanation of what RubyGems is.
589
697
  Pull request #2174 by Colby Swandale.
590
698
  * Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
591
699
  SHIBATA Hiroshi.
592
- * Ignore perfomance test of version regexp pattern. Pull request #2179 by
700
+ * Ignore performance test of version regexp pattern. Pull request #2179 by
593
701
  SHIBATA Hiroshi.
594
702
  * Ignore .DS_Store files in the update_manifest task. Pull request #2199
595
703
  by Colby Swandale.
@@ -821,7 +929,7 @@ Minor enhancements:
821
929
  by David Rodríguez.
822
930
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
823
931
  Pull request #2515 by Colby Swandale.
824
- + Update for compatibilty with new minitest. Pull request #2118 by MSP-Greg.
932
+ + Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
825
933
 
826
934
  === 2.7.9 / 2019-03-05
827
935
 
@@ -917,7 +1025,7 @@ Security fixes:
917
1025
  * Fix possible Unsafe Object Deserialization Vulnerability in gem owner.
918
1026
  Fixed by Jonathan Claudius.
919
1027
  * Strictly interpret octal fields in tar headers.
920
- Discoved by plover, fixed by Samuel Giddins.
1028
+ Discovered by plover, fixed by Samuel Giddins.
921
1029
  * Raise a security error when there are duplicate files in a package.
922
1030
  Discovered by plover, fixed by Samuel Giddins.
923
1031
  * Enforce URL validation on spec homepage attribute.
data/Manifest.txt CHANGED
@@ -1,9 +1,5 @@
1
- .bundle/config
2
- .rubocop.yml
3
1
  CODE_OF_CONDUCT.md
4
2
  CONTRIBUTING.md
5
- Gemfile
6
- Gemfile.lock
7
3
  History.txt
8
4
  LICENSE.txt
9
5
  MAINTAINERS.txt
@@ -16,7 +12,6 @@ UPGRADING.md
16
12
  bin/gem
17
13
  bin/update_rubygems
18
14
  bundler/CHANGELOG.md
19
- bundler/CODE_OF_CONDUCT.md
20
15
  bundler/LICENSE.md
21
16
  bundler/README.md
22
17
  bundler/UPGRADING.md
@@ -147,19 +142,25 @@ bundler/lib/bundler/templates/newgem/README.md.tt
147
142
  bundler/lib/bundler/templates/newgem/Rakefile.tt
148
143
  bundler/lib/bundler/templates/newgem/bin/console.tt
149
144
  bundler/lib/bundler/templates/newgem/bin/setup.tt
145
+ bundler/lib/bundler/templates/newgem/circleci/config.yml.tt
150
146
  bundler/lib/bundler/templates/newgem/exe/newgem.tt
151
147
  bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt
152
148
  bundler/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt
153
149
  bundler/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt
150
+ bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt
154
151
  bundler/lib/bundler/templates/newgem/gitignore.tt
152
+ bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt
155
153
  bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt
156
154
  bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt
157
155
  bundler/lib/bundler/templates/newgem/newgem.gemspec.tt
158
156
  bundler/lib/bundler/templates/newgem/rspec.tt
157
+ bundler/lib/bundler/templates/newgem/rubocop.yml.tt
159
158
  bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt
160
159
  bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt
161
- bundler/lib/bundler/templates/newgem/test/newgem_test.rb.tt
162
- bundler/lib/bundler/templates/newgem/test/test_helper.rb.tt
160
+ bundler/lib/bundler/templates/newgem/test/minitest/newgem_test.rb.tt
161
+ bundler/lib/bundler/templates/newgem/test/minitest/test_helper.rb.tt
162
+ bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt
163
+ bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt
163
164
  bundler/lib/bundler/templates/newgem/travis.yml.tt
164
165
  bundler/lib/bundler/ui.rb
165
166
  bundler/lib/bundler/ui/rg_proxy.rb
@@ -396,6 +397,7 @@ lib/rubygems/install_message.rb
396
397
  lib/rubygems/install_update_options.rb
397
398
  lib/rubygems/installer.rb
398
399
  lib/rubygems/installer_test_case.rb
400
+ lib/rubygems/installer_uninstaller_utils.rb
399
401
  lib/rubygems/local_remote_options.rb
400
402
  lib/rubygems/mock_gem_ui.rb
401
403
  lib/rubygems/name_tuple.rb
@@ -415,6 +417,7 @@ lib/rubygems/path_support.rb
415
417
  lib/rubygems/platform.rb
416
418
  lib/rubygems/psych_additions.rb
417
419
  lib/rubygems/psych_tree.rb
420
+ lib/rubygems/query_utils.rb
418
421
  lib/rubygems/rdoc.rb
419
422
  lib/rubygems/remote_fetcher.rb
420
423
  lib/rubygems/request.rb
@@ -491,14 +494,13 @@ lib/rubygems/source/lock.rb
491
494
  lib/rubygems/source/specific_file.rb
492
495
  lib/rubygems/source/vendor.rb
493
496
  lib/rubygems/source_list.rb
494
- lib/rubygems/source_local.rb
495
- lib/rubygems/source_specific_file.rb
496
497
  lib/rubygems/spec_fetcher.rb
497
498
  lib/rubygems/specification.rb
498
499
  lib/rubygems/specification_policy.rb
499
500
  lib/rubygems/ssl_certs/.document
500
- lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem
501
- lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem
501
+ lib/rubygems/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem
502
+ lib/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem
503
+ lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem
502
504
  lib/rubygems/stub_specification.rb
503
505
  lib/rubygems/syck_hack.rb
504
506
  lib/rubygems/test_case.rb
@@ -515,7 +517,6 @@ lib/rubygems/util/list.rb
515
517
  lib/rubygems/validator.rb
516
518
  lib/rubygems/version.rb
517
519
  lib/rubygems/version_option.rb
518
- lib/ubygems.rb
519
520
  rubygems-update.gemspec
520
521
  setup.rb
521
522
  test/rubygems/alternate_cert.pem
@@ -702,16 +703,3 @@ test/rubygems/test_remote_fetch_error.rb
702
703
  test/rubygems/test_require.rb
703
704
  test/rubygems/wrong_key_cert.pem
704
705
  test/rubygems/wrong_key_cert_32.pem
705
- tmp/.keep
706
- util/CL2notes
707
- util/bisect
708
- util/ci.sh
709
- util/cops/deprecations.rb
710
- util/create_certs.rb
711
- util/create_certs.sh
712
- util/create_encrypted_key.rb
713
- util/generate_spdx_license_list.rb
714
- util/patch_with_prs.rb
715
- util/rubocop
716
- util/update_bundled_ca_certificates.rb
717
- util/update_changelog.rb
data/POLICIES.md CHANGED
@@ -2,15 +2,8 @@
2
2
 
3
3
  Contributions to RubyGems are made via GitHub pull requests, which must be
4
4
  approved by a project committer other than the author. To approve a PR, a
5
- maintainer can leave a comment including the text "@bundlerbot r+", indicating
6
- that they have reviewed the PR and approve it. Bundlerbot will then
7
- automatically create a merge commit, test the merge, and land the PR if the
8
- merge commit passes the tests.
9
-
10
- This process guarantees that our release branches always have passing tests,
11
- and reduces siloing of information to a single contributor. For a full list of
12
- possible commands, see [the Bundlerbot
13
- documentation](https://bors.tech/documentation/).
5
+ maintainer can use GitHubs PR review feature. After that, if the original author
6
+ is happy to merge the PR, she can press the merge button.
14
7
 
15
8
  ## Long-Term Support
16
9
 
data/README.md CHANGED
@@ -40,7 +40,7 @@ with your OS's package manager before installing RubyGems manually.
40
40
  If you would like to manually install RubyGems:
41
41
 
42
42
  * Download from https://rubygems.org/pages/download, unpack, and `cd` into RubyGems' src
43
- * OR clone this repository and `cd` into the repository (make sure to run `git submodule update --init`)
43
+ * OR clone this repository and `cd` into the repository
44
44
 
45
45
  Install RubyGems by running:
46
46
 
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- # -*- ruby -*-
1
+ RakeFileUtils.verbose_flag = false
2
2
 
3
3
  require 'rubygems'
4
4
  require 'rubygems/package_task'
@@ -6,9 +6,10 @@ require "rake/testtask"
6
6
  require 'psych'
7
7
 
8
8
  desc "Setup Rubygems dev environment"
9
- task :setup => ["bundler:checkout"] do
10
- sh "gem install bundler:2.0.2"
11
- sh "bundle install"
9
+ task :setup do
10
+ version = File.read("dev_gems.rb.lock").split(/BUNDLED WITH\n /).last
11
+ sh "gem install bundler:#{version}"
12
+ sh "bundle install --gemfile=dev_gems.rb"
12
13
  end
13
14
 
14
15
  desc "Setup git hooks"
@@ -18,7 +19,7 @@ end
18
19
 
19
20
  Rake::TestTask.new do |t|
20
21
  t.ruby_opts = %w[-w]
21
- t.ruby_opts << '-rdevkit' if Gem.win_platform?
22
+ t.ruby_opts << '-rdevkit' if RbConfig::CONFIG['host_os'].include?('mingw')
22
23
 
23
24
  t.libs << "test"
24
25
  t.libs << "bundler/lib"
@@ -38,9 +39,9 @@ RDoc::Task.new :rdoc => 'docs', :clobber_rdoc => 'clobber_docs' do |doc|
38
39
  doc.title = "RubyGems #{v} API Documentation"
39
40
 
40
41
  rdoc_files = Rake::FileList.new %w[lib bundler/lib]
41
- rdoc_files.add %w[History.txt LICENSE.txt MIT.txt CODE_OF_CONDUCT.md CONTRIBUTING.rdoc
42
- MAINTAINERS.txt Manifest.txt POLICIES.rdoc README.md UPGRADING.rdoc bundler/CHANGELOG.md
43
- bundler/CODE_OF_CONDUCT.md bundler/CONTRIBUTING.md bundler/LICENSE.md bundler/README.md
42
+ rdoc_files.add %w[History.txt LICENSE.txt MIT.txt CODE_OF_CONDUCT.md CONTRIBUTING.md
43
+ MAINTAINERS.txt Manifest.txt POLICIES.md README.md UPGRADING.md bundler/CHANGELOG.md
44
+ bundler/doc/contributing/README.md bundler/LICENSE.md bundler/README.md
44
45
  hide_lib_for_update/note.txt].map(&:freeze)
45
46
 
46
47
  doc.rdoc_files = rdoc_files
@@ -63,21 +64,23 @@ rescue LoadError
63
64
  end
64
65
  end
65
66
 
66
- desc "Run rubocop"
67
- task(:rubocop) do
68
- sh "util/rubocop"
67
+ namespace :rubocop do
68
+ desc "Run rubocop for RubyGems. Pass positional arguments, e.g. -a, as Rake arguments."
69
+ task(:rubygems) do |_, args|
70
+ sh "util/rubocop", *args
71
+ end
72
+
73
+ desc "Run rubocop for Bundler. Pass positional arguments, e.g. -a, as Rake arguments."
74
+ task(:bundler) do |_, args|
75
+ sh "bundler/bin/rubocop", *args
76
+ end
69
77
  end
70
78
 
79
+ task rubocop: %w[rubocop:rubygems rubocop:bundler]
80
+
71
81
  desc "Run a test suite bisection"
72
82
  task(:bisect) do
73
- seed = begin
74
- Integer(ENV["SEED"])
75
- rescue
76
- abort "Specify the failing seed as the SEED environment variable"
77
- end
78
-
79
- gemdir = `gem env gemdir`.chomp
80
- sh "SEED=#{seed} MTB_VERBOSE=2 util/bisect -Ilib:bundler/lib:test:#{gemdir}/gems/minitest-server-1.0.5/lib test"
83
+ sh "util/bisect"
81
84
  end
82
85
 
83
86
  # --------------------------------------------------------------------
@@ -97,7 +100,7 @@ end
97
100
 
98
101
  desc "Install rubygems to local system"
99
102
  task :install => [:clear_package, :package] do
100
- sh "ruby -Ilib bin/gem install pkg/rubygems-update-#{v}.gem && update_rubygems"
103
+ sh "ruby -Ilib bin/gem install --no-document pkg/rubygems-update-#{v}.gem && update_rubygems --no-document --no-format-executable"
101
104
  end
102
105
 
103
106
  desc "Clears previously built package"
@@ -151,7 +154,7 @@ file "pkg/rubygems-#{v}.tgz" => "pkg/rubygems-#{v}" do
151
154
  sh "7z a -ttar rubygems-#{v}.tar rubygems-#{v}"
152
155
  sh "7z a -tgzip rubygems-#{v}.tgz rubygems-#{v}.tar"
153
156
  else
154
- sh "tar -czf rubygems-#{v}.tgz --owner=rubygems:0 --group=rubygems:0 rubygems-#{v}"
157
+ sh "tar -czf rubygems-#{v}.tgz rubygems-#{v}"
155
158
  end
156
159
  end
157
160
  end
@@ -272,7 +275,7 @@ namespace 'blog' do
272
275
 
273
276
  history.force_encoding Encoding::UTF_8
274
277
 
275
- _, change_log, = history.split %r%^===\s*\d.*%, 3
278
+ _, change_log, = history.split %r{^===\s*\d.*}, 3
276
279
 
277
280
  change_types = []
278
281
 
@@ -383,16 +386,16 @@ module Rubygems
383
386
 
384
387
  def self.all
385
388
  files = []
386
- exclude = %r[\.git|\./bundler/(?!lib|man|exe|[^/]+\.md|bundler.gemspec)]ox
387
- tracked_files = `git ls-files --recurse-submodules`.split("\n").map {|f| "./#{f}" }
389
+ exclude = %r{\A(?:\.|dev_gems|bundler/(?!lib|man|exe|[^/]+\.md|bundler.gemspec)|util/)}
390
+ tracked_files = `git ls-files`.split("\n")
388
391
 
389
392
  tracked_files.each do |path|
390
393
  next unless File.file?(path)
391
394
  next if path =~ exclude
392
- files << path[2..-1]
395
+ files << path
393
396
  end
394
397
 
395
- files
398
+ files.sort
396
399
  end
397
400
 
398
401
  end
@@ -400,22 +403,17 @@ end
400
403
 
401
404
  desc "Update the manifest to reflect what's on disk"
402
405
  task :update_manifest do
403
- File.open('Manifest.txt', 'w') {|f| f.puts(Rubygems::ProjectFiles.all.sort) }
406
+ File.open('Manifest.txt', 'w') {|f| f.puts(Rubygems::ProjectFiles.all) }
404
407
  end
405
408
 
406
409
  desc "Check the manifest is up to date"
407
410
  task :check_manifest do
408
- if File.read("Manifest.txt").split.sort != Rubygems::ProjectFiles.all.sort
411
+ if File.read("Manifest.txt").split != Rubygems::ProjectFiles.all
409
412
  abort "Manifest is out of date. Run `rake update_manifest` to sync it"
410
413
  end
411
414
  end
412
415
 
413
416
  namespace :bundler do
414
- desc "Initialize bundler submodule"
415
- task :checkout do
416
- sh "git submodule update --init"
417
- end
418
-
419
417
  task :build_metadata do
420
418
  chdir('bundler') { sh "rake build_metadata" }
421
419
  end