rubygems-update 3.1.0 → 3.2.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (345) hide show
  1. checksums.yaml +4 -4
  2. data/CODE_OF_CONDUCT.md +55 -19
  3. data/CONTRIBUTING.md +2 -3
  4. data/History.txt +195 -7
  5. data/Manifest.txt +11 -23
  6. data/POLICIES.md +2 -9
  7. data/README.md +5 -5
  8. data/Rakefile +38 -35
  9. data/bin/update_rubygems +2 -2
  10. data/bundler/CHANGELOG.md +846 -728
  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 +29 -9
  18. data/bundler/lib/bundler/cli/console.rb +1 -1
  19. data/bundler/lib/bundler/cli/exec.rb +3 -12
  20. data/bundler/lib/bundler/cli/gem.rb +74 -10
  21. data/bundler/lib/bundler/cli/info.rb +6 -3
  22. data/bundler/lib/bundler/cli/init.rb +1 -1
  23. data/bundler/lib/bundler/cli/install.rb +8 -16
  24. data/bundler/lib/bundler/cli/issue.rb +2 -2
  25. data/bundler/lib/bundler/cli/outdated.rb +5 -5
  26. data/bundler/lib/bundler/cli/plugin.rb +10 -0
  27. data/bundler/lib/bundler/definition.rb +32 -32
  28. data/bundler/lib/bundler/dependency.rb +0 -9
  29. data/bundler/lib/bundler/dsl.rb +1 -5
  30. data/bundler/lib/bundler/environment_preserver.rb +26 -2
  31. data/bundler/lib/bundler/errors.rb +1 -0
  32. data/bundler/lib/bundler/feature_flag.rb +0 -2
  33. data/bundler/lib/bundler/fetcher.rb +1 -0
  34. data/bundler/lib/bundler/friendly_errors.rb +4 -10
  35. data/bundler/lib/bundler/gem_helper.rb +18 -12
  36. data/bundler/lib/bundler/gem_version_promoter.rb +1 -1
  37. data/bundler/lib/bundler/injector.rb +14 -3
  38. data/bundler/lib/bundler/inline.rb +2 -2
  39. data/bundler/lib/bundler/installer.rb +29 -28
  40. data/bundler/lib/bundler/installer/gem_installer.rb +2 -2
  41. data/bundler/lib/bundler/installer/parallel_installer.rb +9 -9
  42. data/bundler/lib/bundler/lazy_specification.rb +16 -3
  43. data/bundler/lib/bundler/plugin.rb +26 -0
  44. data/bundler/lib/bundler/plugin/index.rb +9 -0
  45. data/bundler/lib/bundler/psyched_yaml.rb +0 -15
  46. data/bundler/lib/bundler/remote_specification.rb +4 -1
  47. data/bundler/lib/bundler/resolver.rb +31 -8
  48. data/bundler/lib/bundler/resolver/spec_group.rb +26 -5
  49. data/bundler/lib/bundler/rubygems_ext.rb +7 -8
  50. data/bundler/lib/bundler/rubygems_gem_installer.rb +1 -7
  51. data/bundler/lib/bundler/rubygems_integration.rb +13 -19
  52. data/bundler/lib/bundler/runtime.rb +2 -12
  53. data/bundler/lib/bundler/settings.rb +0 -3
  54. data/bundler/lib/bundler/setup.rb +5 -0
  55. data/bundler/lib/bundler/shared_helpers.rb +1 -1
  56. data/bundler/lib/bundler/source/git/git_proxy.rb +53 -58
  57. data/bundler/lib/bundler/source/path.rb +5 -1
  58. data/bundler/lib/bundler/source/path/installer.rb +7 -9
  59. data/bundler/lib/bundler/source/rubygems.rb +11 -14
  60. data/bundler/lib/bundler/stub_specification.rb +16 -4
  61. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  62. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +7 -2
  63. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +12 -5
  64. data/bundler/lib/bundler/templates/newgem/bin/console.tt +2 -0
  65. data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  66. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  67. data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
  68. data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  69. data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -0
  70. data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  71. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +5 -3
  72. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
  73. data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  74. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
  75. data/bundler/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  76. data/bundler/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  77. data/bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  78. data/bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  79. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +72 -208
  80. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +0 -7
  81. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  82. data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  83. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  84. data/bundler/lib/bundler/version.rb +1 -1
  85. data/bundler/man/bundle-add.1 +1 -1
  86. data/bundler/man/bundle-add.1.txt +15 -15
  87. data/bundler/man/bundle-binstubs.1 +1 -1
  88. data/bundler/man/bundle-binstubs.1.txt +10 -10
  89. data/bundler/man/bundle-cache.1 +1 -1
  90. data/bundler/man/bundle-cache.1.txt +15 -15
  91. data/bundler/man/bundle-check.1 +1 -1
  92. data/bundler/man/bundle-check.1.txt +8 -8
  93. data/bundler/man/bundle-clean.1 +1 -1
  94. data/bundler/man/bundle-clean.1.txt +6 -6
  95. data/bundler/man/bundle-config.1 +3 -9
  96. data/bundler/man/bundle-config.1.txt +271 -272
  97. data/bundler/man/bundle-config.ronn +5 -9
  98. data/bundler/man/bundle-doctor.1 +1 -1
  99. data/bundler/man/bundle-doctor.1.txt +9 -9
  100. data/bundler/man/bundle-exec.1 +1 -1
  101. data/bundler/man/bundle-exec.1.txt +84 -81
  102. data/bundler/man/bundle-gem.1 +25 -3
  103. data/bundler/man/bundle-gem.1.txt +65 -39
  104. data/bundler/man/bundle-gem.ronn +30 -7
  105. data/bundler/man/bundle-info.1 +1 -1
  106. data/bundler/man/bundle-info.1.txt +2 -2
  107. data/bundler/man/bundle-init.1 +1 -1
  108. data/bundler/man/bundle-init.1.txt +9 -9
  109. data/bundler/man/bundle-inject.1 +1 -1
  110. data/bundler/man/bundle-inject.1.txt +4 -4
  111. data/bundler/man/bundle-install.1 +1 -1
  112. data/bundler/man/bundle-install.1.txt +169 -169
  113. data/bundler/man/bundle-list.1 +1 -1
  114. data/bundler/man/bundle-list.1.txt +7 -7
  115. data/bundler/man/bundle-lock.1 +1 -1
  116. data/bundler/man/bundle-lock.1.txt +28 -28
  117. data/bundler/man/bundle-open.1 +1 -1
  118. data/bundler/man/bundle-open.1.txt +3 -3
  119. data/bundler/man/bundle-outdated.1 +1 -1
  120. data/bundler/man/bundle-outdated.1.txt +34 -34
  121. data/bundler/man/bundle-platform.1 +1 -1
  122. data/bundler/man/bundle-platform.1.txt +16 -16
  123. data/bundler/man/bundle-pristine.1 +1 -1
  124. data/bundler/man/bundle-pristine.1.txt +8 -8
  125. data/bundler/man/bundle-remove.1 +1 -1
  126. data/bundler/man/bundle-remove.1.txt +9 -9
  127. data/bundler/man/bundle-show.1 +1 -1
  128. data/bundler/man/bundle-show.1.txt +8 -8
  129. data/bundler/man/bundle-update.1 +1 -1
  130. data/bundler/man/bundle-update.1.txt +149 -148
  131. data/bundler/man/bundle-viz.1 +1 -1
  132. data/bundler/man/bundle-viz.1.txt +11 -11
  133. data/bundler/man/bundle.1 +1 -1
  134. data/bundler/man/bundle.1.txt +31 -31
  135. data/bundler/man/gemfile.5 +1 -1
  136. data/bundler/man/gemfile.5.txt +218 -216
  137. data/lib/rubygems.rb +135 -185
  138. data/lib/rubygems/available_set.rb +4 -4
  139. data/lib/rubygems/basic_specification.rb +12 -6
  140. data/lib/rubygems/bundler_version_finder.rb +14 -9
  141. data/lib/rubygems/command.rb +17 -15
  142. data/lib/rubygems/command_manager.rb +4 -3
  143. data/lib/rubygems/commands/cert_command.rb +1 -1
  144. data/lib/rubygems/commands/cleanup_command.rb +3 -3
  145. data/lib/rubygems/commands/contents_command.rb +4 -4
  146. data/lib/rubygems/commands/dependency_command.rb +6 -6
  147. data/lib/rubygems/commands/fetch_command.rb +2 -2
  148. data/lib/rubygems/commands/help_command.rb +2 -2
  149. data/lib/rubygems/commands/info_command.rb +9 -4
  150. data/lib/rubygems/commands/install_command.rb +3 -3
  151. data/lib/rubygems/commands/list_command.rb +9 -6
  152. data/lib/rubygems/commands/lock_command.rb +1 -1
  153. data/lib/rubygems/commands/open_command.rb +0 -2
  154. data/lib/rubygems/commands/pristine_command.rb +10 -2
  155. data/lib/rubygems/commands/push_command.rb +4 -42
  156. data/lib/rubygems/commands/query_command.rb +7 -352
  157. data/lib/rubygems/commands/search_command.rb +8 -6
  158. data/lib/rubygems/commands/setup_command.rb +156 -45
  159. data/lib/rubygems/commands/sources_command.rb +3 -3
  160. data/lib/rubygems/commands/specification_command.rb +2 -2
  161. data/lib/rubygems/commands/stale_command.rb +1 -1
  162. data/lib/rubygems/commands/uninstall_command.rb +2 -2
  163. data/lib/rubygems/commands/unpack_command.rb +1 -1
  164. data/lib/rubygems/commands/update_command.rb +40 -10
  165. data/lib/rubygems/config_file.rb +11 -2
  166. data/lib/rubygems/core_ext/kernel_require.rb +26 -36
  167. data/lib/rubygems/defaults.rb +99 -5
  168. data/lib/rubygems/dependency.rb +2 -5
  169. data/lib/rubygems/dependency_installer.rb +1 -73
  170. data/lib/rubygems/dependency_list.rb +7 -7
  171. data/lib/rubygems/deprecate.rb +46 -1
  172. data/lib/rubygems/doctor.rb +4 -2
  173. data/lib/rubygems/errors.rb +3 -2
  174. data/lib/rubygems/exceptions.rb +2 -13
  175. data/lib/rubygems/ext.rb +6 -6
  176. data/lib/rubygems/ext/build_error.rb +2 -0
  177. data/lib/rubygems/ext/builder.rb +4 -2
  178. data/lib/rubygems/ext/cmake_builder.rb +1 -1
  179. data/lib/rubygems/ext/ext_conf_builder.rb +6 -7
  180. data/lib/rubygems/gem_runner.rb +3 -8
  181. data/lib/rubygems/gemcutter_utilities.rb +1 -1
  182. data/lib/rubygems/indexer.rb +1 -19
  183. data/lib/rubygems/install_update_options.rb +5 -5
  184. data/lib/rubygems/installer.rb +45 -42
  185. data/lib/rubygems/installer_test_case.rb +19 -2
  186. data/lib/rubygems/installer_uninstaller_utils.rb +24 -0
  187. data/lib/rubygems/local_remote_options.rb +1 -1
  188. data/lib/rubygems/name_tuple.rb +2 -4
  189. data/lib/rubygems/package.rb +8 -13
  190. data/lib/rubygems/package/old.rb +1 -1
  191. data/lib/rubygems/package/tar_header.rb +3 -3
  192. data/lib/rubygems/package/tar_reader.rb +0 -1
  193. data/lib/rubygems/package/tar_reader/entry.rb +0 -1
  194. data/lib/rubygems/package/tar_test_case.rb +1 -1
  195. data/lib/rubygems/package/tar_writer.rb +2 -6
  196. data/lib/rubygems/package_task.rb +1 -5
  197. data/lib/rubygems/path_support.rb +1 -1
  198. data/lib/rubygems/platform.rb +3 -3
  199. data/lib/rubygems/query_utils.rb +362 -0
  200. data/lib/rubygems/rdoc.rb +0 -12
  201. data/lib/rubygems/remote_fetcher.rb +5 -19
  202. data/lib/rubygems/request/connection_pools.rb +1 -1
  203. data/lib/rubygems/request_set.rb +5 -5
  204. data/lib/rubygems/request_set/gem_dependency_api.rb +2 -2
  205. data/lib/rubygems/request_set/lockfile.rb +8 -8
  206. data/lib/rubygems/request_set/lockfile/tokenizer.rb +1 -1
  207. data/lib/rubygems/requirement.rb +14 -15
  208. data/lib/rubygems/resolver.rb +7 -8
  209. data/lib/rubygems/resolver/api_set.rb +4 -4
  210. data/lib/rubygems/resolver/api_specification.rb +1 -1
  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 +9 -9
  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 +6 -5
  225. data/lib/rubygems/spec_fetcher.rb +18 -15
  226. data/lib/rubygems/specification.rb +91 -112
  227. data/lib/rubygems/specification_policy.rb +88 -28
  228. data/lib/rubygems/test_case.rb +122 -81
  229. data/lib/rubygems/test_utilities.rb +6 -6
  230. data/lib/rubygems/uninstaller.rb +35 -14
  231. data/lib/rubygems/user_interaction.rb +1 -10
  232. data/lib/rubygems/util.rb +17 -3
  233. data/lib/rubygems/util/licenses.rb +4 -4
  234. data/lib/rubygems/validator.rb +1 -1
  235. data/lib/rubygems/version.rb +5 -5
  236. data/rubygems-update.gemspec +2 -2
  237. data/setup.rb +2 -7
  238. data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -2
  239. data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +12 -0
  240. data/test/rubygems/test_bundled_ca.rb +1 -5
  241. data/test/rubygems/test_deprecate.rb +43 -4
  242. data/test/rubygems/test_gem.rb +150 -101
  243. data/test/rubygems/test_gem_available_set.rb +3 -3
  244. data/test/rubygems/test_gem_bundler_version_finder.rb +19 -1
  245. data/test/rubygems/test_gem_command.rb +24 -3
  246. data/test/rubygems/test_gem_command_manager.rb +37 -4
  247. data/test/rubygems/test_gem_commands_build_command.rb +25 -3
  248. data/test/rubygems/test_gem_commands_cert_command.rb +2 -2
  249. data/test/rubygems/test_gem_commands_cleanup_command.rb +1 -1
  250. data/test/rubygems/test_gem_commands_contents_command.rb +48 -15
  251. data/test/rubygems/test_gem_commands_environment_command.rb +21 -21
  252. data/test/rubygems/test_gem_commands_generate_index_command.rb +1 -5
  253. data/test/rubygems/test_gem_commands_info_command.rb +6 -6
  254. data/test/rubygems/test_gem_commands_install_command.rb +31 -31
  255. data/test/rubygems/test_gem_commands_mirror.rb +1 -1
  256. data/test/rubygems/test_gem_commands_open_command.rb +4 -4
  257. data/test/rubygems/test_gem_commands_owner_command.rb +11 -3
  258. data/test/rubygems/test_gem_commands_pristine_command.rb +41 -8
  259. data/test/rubygems/test_gem_commands_push_command.rb +7 -2
  260. data/test/rubygems/test_gem_commands_query_command.rb +9 -5
  261. data/test/rubygems/test_gem_commands_setup_command.rb +212 -114
  262. data/test/rubygems/test_gem_commands_signin_command.rb +6 -4
  263. data/test/rubygems/test_gem_commands_signout_command.rb +0 -5
  264. data/test/rubygems/test_gem_commands_sources_command.rb +39 -1
  265. data/test/rubygems/test_gem_commands_specification_command.rb +18 -18
  266. data/test/rubygems/test_gem_commands_uninstall_command.rb +2 -1
  267. data/test/rubygems/test_gem_commands_update_command.rb +68 -5
  268. data/test/rubygems/test_gem_commands_which_command.rb +3 -3
  269. data/test/rubygems/test_gem_commands_yank_command.rb +14 -6
  270. data/test/rubygems/test_gem_config_file.rb +7 -10
  271. data/test/rubygems/test_gem_dependency_installer.rb +52 -189
  272. data/test/rubygems/test_gem_dependency_list.rb +8 -8
  273. data/test/rubygems/test_gem_dependency_resolution_error.rb +1 -1
  274. data/test/rubygems/test_gem_doctor.rb +28 -0
  275. data/test/rubygems/test_gem_ext_builder.rb +14 -25
  276. data/test/rubygems/test_gem_ext_cmake_builder.rb +13 -12
  277. data/test/rubygems/test_gem_ext_configure_builder.rb +1 -9
  278. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -1
  279. data/test/rubygems/test_gem_ext_rake_builder.rb +9 -9
  280. data/test/rubygems/test_gem_gem_runner.rb +42 -0
  281. data/test/rubygems/test_gem_gemcutter_utilities.rb +5 -0
  282. data/test/rubygems/test_gem_indexer.rb +9 -13
  283. data/test/rubygems/test_gem_installer.rb +158 -67
  284. data/test/rubygems/test_gem_package.rb +16 -20
  285. data/test/rubygems/test_gem_package_tar_header.rb +19 -0
  286. data/test/rubygems/test_gem_package_tar_writer.rb +8 -3
  287. data/test/rubygems/test_gem_package_task.rb +46 -11
  288. data/test/rubygems/test_gem_remote_fetcher.rb +152 -190
  289. data/test/rubygems/test_gem_request.rb +11 -11
  290. data/test/rubygems/test_gem_request_set.rb +72 -20
  291. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +3 -3
  292. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +9 -9
  293. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +118 -118
  294. data/test/rubygems/test_gem_requirement.rb +2 -2
  295. data/test/rubygems/test_gem_resolver.rb +6 -6
  296. data/test/rubygems/test_gem_resolver_api_set.rb +3 -3
  297. data/test/rubygems/test_gem_resolver_best_set.rb +2 -2
  298. data/test/rubygems/test_gem_resolver_index_set.rb +2 -2
  299. data/test/rubygems/test_gem_resolver_installer_set.rb +7 -7
  300. data/test/rubygems/test_gem_resolver_lock_set.rb +3 -3
  301. data/test/rubygems/test_gem_security.rb +20 -20
  302. data/test/rubygems/test_gem_security_policy.rb +5 -8
  303. data/test/rubygems/test_gem_security_signer.rb +8 -8
  304. data/test/rubygems/test_gem_security_trust_dir.rb +2 -2
  305. data/test/rubygems/test_gem_server.rb +10 -10
  306. data/test/rubygems/test_gem_source.rb +12 -14
  307. data/test/rubygems/test_gem_source_git.rb +12 -11
  308. data/test/rubygems/test_gem_source_installed.rb +7 -7
  309. data/test/rubygems/test_gem_source_local.rb +8 -8
  310. data/test/rubygems/test_gem_source_lock.rb +10 -10
  311. data/test/rubygems/test_gem_source_specific_file.rb +7 -7
  312. data/test/rubygems/test_gem_source_vendor.rb +7 -7
  313. data/test/rubygems/test_gem_spec_fetcher.rb +11 -2
  314. data/test/rubygems/test_gem_specification.rb +169 -119
  315. data/test/rubygems/test_gem_stream_ui.rb +3 -1
  316. data/test/rubygems/test_gem_stub_specification.rb +0 -1
  317. data/test/rubygems/test_gem_text.rb +1 -1
  318. data/test/rubygems/test_gem_uninstaller.rb +134 -10
  319. data/test/rubygems/test_gem_util.rb +7 -5
  320. data/test/rubygems/test_gem_version.rb +1 -1
  321. data/test/rubygems/test_kernel.rb +25 -8
  322. data/test/rubygems/test_project_sanity.rb +8 -1
  323. data/test/rubygems/test_require.rb +242 -40
  324. metadata +33 -46
  325. data/.bundle/config +0 -2
  326. data/.rubocop.yml +0 -91
  327. data/Gemfile +0 -8
  328. data/Gemfile.lock +0 -43
  329. data/bundler/CODE_OF_CONDUCT.md +0 -136
  330. data/lib/rubygems/source_local.rb +0 -7
  331. data/lib/rubygems/source_specific_file.rb +0 -6
  332. data/lib/ubygems.rb +0 -14
  333. data/tmp/.keep +0 -0
  334. data/util/CL2notes +0 -55
  335. data/util/bisect +0 -10
  336. data/util/ci.sh +0 -62
  337. data/util/cops/deprecations.rb +0 -52
  338. data/util/create_certs.rb +0 -171
  339. data/util/create_certs.sh +0 -27
  340. data/util/create_encrypted_key.rb +0 -16
  341. data/util/generate_spdx_license_list.rb +0 -63
  342. data/util/patch_with_prs.rb +0 -77
  343. data/util/rubocop +0 -8
  344. data/util/update_bundled_ca_certificates.rb +0 -139
  345. data/util/update_changelog.rb +0 -67
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0273e627afbd4a866b93b475062215fa3d664f05b4af35bb281788b0d4ef982f
4
- data.tar.gz: d7ab9c72b868a79376e8d9c89660084fb5dfb2e81552430f3a501a159e11769e
3
+ metadata.gz: f9674dd6c41b5b5949b145bff3ca8fe825b1d0b15b78643f91efdbb6b21f4058
4
+ data.tar.gz: 178b23925b626f81220bf05f6f26ea9c3e7bf60411b45b88090a0f0949c978aa
5
5
  SHA512:
6
- metadata.gz: 77432b7859ec5ac93762d5f24f87b18548a30fac80c7f550770e5a22992003e3224dc77ecda5327e2aa78442ee7a555c628207d53f5b069c8cadcef3ac08fa54
7
- data.tar.gz: 989de44cc58e5f1bface196fb30961b5d737d55209f7c22534029c06cd7f46e2234ab8869aa791a4026e370d5a7dae51b54120407c42d6db6fd0d3442293e2f9
6
+ metadata.gz: 03b6e5757f0aa561a8559468438e260ff49846ab1a4d57a1089fced6e649813f896b065ce5817371340eb321cf64dfef4e8219451096c100bf70d40e1b07293e
7
+ data.tar.gz: c7b934dd19c4f6325e7f627cb70943ee39fe3ff0e65cb3eea768ad16ec0edb101a0e51f9aef24d7b4481880aad5d9e69bcad3e5055c3d319576b7b8e377135bb
@@ -1,45 +1,81 @@
1
- # Contributor Code of Conduct
1
+ # RubyGems and Bundler Code of Conduct
2
2
 
3
3
  ## Our Pledge
4
4
 
5
- In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
6
8
 
7
9
  ## Our Standards
8
10
 
9
- Examples of behavior that contributes to creating a positive environment include:
11
+ Examples of behavior that contributes to a positive environment for our community include:
10
12
 
11
- * Using welcoming and inclusive language
12
- * Being respectful of differing viewpoints and experiences
13
- * Gracefully accepting constructive criticism
14
- * Focusing on what is best for the community
15
- * Showing empathy towards other community members
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
16
18
 
17
- Examples of unacceptable behavior by participants include:
19
+ Examples of unacceptable behavior include:
18
20
 
19
- * The use of sexualized language or imagery and unwelcome sexual attention or advances
20
- * Trolling, insulting/derogatory comments, and personal or political attacks
21
+ * The use of sexualized language or imagery, and sexual attention or advances of any kind
22
+ * Trolling, insulting or derogatory comments, and personal or political attacks
21
23
  * Public or private harassment
22
- * Publishing others' private information, such as a physical or electronic address, without explicit permission
24
+ * Publishing others' private information, such as a physical or email address, without their explicit permission
23
25
  * Other conduct which could reasonably be considered inappropriate in a professional setting
24
26
 
25
- ## Our Responsibilities
27
+ ## Enforcement Responsibilities
26
28
 
27
- Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
29
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
28
30
 
29
- Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
31
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
30
32
 
31
33
  ## Scope
32
34
 
33
- This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
35
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
34
36
 
35
37
  ## Enforcement
36
38
 
37
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the [project team](MAINTAINERS.txt). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
39
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at team@bundler.io, or directly contacting project team members via email or Slack. All complaints will be reviewed and investigated promptly and fairly.
40
+
41
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
42
+
43
+ ## Enforcement Guidelines
44
+
45
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
46
+
47
+ ### 1. Correction
48
+
49
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
50
+
51
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
52
+
53
+ ### 2. Warning
54
+
55
+ **Community Impact**: A violation through a single incident or series of actions.
38
56
 
39
- Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
57
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
58
+
59
+ ### 3. Temporary Ban
60
+
61
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
62
+
63
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
64
+
65
+ ### 4. Permanent Ban
66
+
67
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
68
+
69
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
40
70
 
41
71
  ## Attribution
42
72
 
43
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
73
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
74
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
75
+
76
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
44
77
 
45
78
  [homepage]: https://www.contributor-covenant.org
79
+
80
+ For answers to common questions about this code of conduct, see the FAQ at
81
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
@@ -26,7 +26,7 @@ contributors to follow to reduce the time it takes to get changes merged in.
26
26
 
27
27
 
28
28
  For more information and ideas on how to contribute to RubyGems ecosystem, see
29
- here: http://guides.rubygems.org/contributing/
29
+ here: https://guides.rubygems.org/contributing/
30
30
 
31
31
  ## Getting Started
32
32
 
@@ -42,7 +42,6 @@ To run commands like `gem install` from the repo:
42
42
  To run bundler test:
43
43
 
44
44
  $ cd bundler
45
- $ git submodule update --init --recursive
46
45
  $ bin/rake spec:deps
47
46
  $ bin/rspec spec
48
47
 
@@ -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
 
@@ -1,5 +1,174 @@
1
1
  # coding: UTF-8
2
2
 
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.
10
+
11
+ Minor enhancements:
12
+
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
21
+ 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.
54
+
55
+ Bug fixes:
56
+
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.
76
+
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.
108
+
109
+ === 3.1.4 / 2020-06-03
110
+
111
+ Minor enhancements:
112
+
113
+ * Deprecate rubyforge_project attribute only during build
114
+ time. Pull request #3609 by Josef Šimánek.
115
+ * Update links. Pull request #3610 by Josef Šimánek.
116
+ * Run CI at 3.1 branch head as well. Pull request #3677 by Josef Šimánek.
117
+ * Remove failing ubuntu-rvm CI flow. Pull request #3611 by
118
+ Josef Šimánek.
119
+
120
+ === 3.1.3 / 2020-05-05
121
+
122
+ Minor enhancements:
123
+
124
+ * Resolver: require NameTuple before use. Pull request #3171 by Olle
125
+ Jonsson.
126
+ * Use absolute paths with autoload. Pull request #3100 by David Rodríguez.
127
+ * Avoid changing $SOURCE_DATE_EPOCH. Pull request #3088 by Ellen Marie
128
+ Dash.
129
+ * Use Bundler 2.1.4. Pull request #3072 by Hiroshi SHIBATA.
130
+ * Add tests to check if Gem.ruby_version works with ruby git master.
131
+ Pull request #3049 by Yusuke Endoh.
132
+
133
+ Bug fixes:
134
+
135
+ * Fix platform comparison check in #contains_requirable_file?. Pull
136
+ request #3495 by Benoit Daloze.
137
+ * Improve gzip errors logging. Pull request #3485 by David Rodríguez.
138
+ * Fix incorrect `gem uninstall --all` message. Pull request #3483 by David
139
+ Rodríguez.
140
+ * Fix incorrect bundler version being required. Pull request #3458 by
141
+ David Rodríguez.
142
+ * Fix gem install from a gemdeps file with complex dependencies.
143
+ Pull request #3054 by Luis Sagastume.
144
+
145
+ === 3.1.2 / 2019-12-20
146
+
147
+ Minor enhancements:
148
+
149
+ * Restore non prompting `gem update --system` behavior. Pull request #3040
150
+ by David Rodríguez.
151
+ * Show only release notes for new code installed. Pull request #3041 by
152
+ David Rodríguez.
153
+ * Inform about installed `bundle` executable after `gem update --system`.
154
+ Pull request #3042 by David Rodríguez.
155
+ * Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
156
+
157
+ Bug fixes:
158
+
159
+ * Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
160
+ * Fix `gem update --system --force`. Pull request #3035 by David
161
+ Rodríguez.
162
+ * Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
163
+
164
+ === 3.1.1 / 2019-12-16
165
+
166
+ Bug fixes:
167
+
168
+ * Vendor Bundler 2.1.0 again. The version of Bundler with
169
+ RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
170
+ SHIBATA Hiroshi.
171
+
3
172
  === 3.1.0 / 2019-12-16
4
173
 
5
174
  Major enhancements:
@@ -280,6 +449,25 @@ Style changes:
280
449
  David Rodríguez.
281
450
  * Rubocop 0.71. Pull request #2785 by David Rodríguez.
282
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
+
283
471
  === 3.0.6 / 2019-08-17
284
472
 
285
473
  Bug fixes:
@@ -473,7 +661,7 @@ Minor enhancements:
473
661
  Swandale.
474
662
  * Add Gem.operating_system_defaults to allow packagers to override
475
663
  defaults. Pull request #2116 by Vít Ondruch.
476
- * Update for compatibilty with new minitest. Pull request #2118 by
664
+ * Update for compatibility with new minitest. Pull request #2118 by
477
665
  MSP-Greg.
478
666
  * Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
479
667
  * Avoid to warnings about gemspec loadings in rubygems tests. Pull request
@@ -505,11 +693,11 @@ Minor enhancements:
505
693
  SHIBATA Hiroshi.
506
694
  * Add Rake task to install dev dependencies. Pull request #2173 by Ellen
507
695
  Marie Dash.
508
- * 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.
509
697
  Pull request #2174 by Colby Swandale.
510
698
  * Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
511
699
  SHIBATA Hiroshi.
512
- * Ignore perfomance test of version regexp pattern. Pull request #2179 by
700
+ * Ignore performance test of version regexp pattern. Pull request #2179 by
513
701
  SHIBATA Hiroshi.
514
702
  * Ignore .DS_Store files in the update_manifest task. Pull request #2199
515
703
  by Colby Swandale.
@@ -741,7 +929,7 @@ Minor enhancements:
741
929
  by David Rodríguez.
742
930
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
743
931
  Pull request #2515 by Colby Swandale.
744
- + 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.
745
933
 
746
934
  === 2.7.9 / 2019-03-05
747
935
 
@@ -837,7 +1025,7 @@ Security fixes:
837
1025
  * Fix possible Unsafe Object Deserialization Vulnerability in gem owner.
838
1026
  Fixed by Jonathan Claudius.
839
1027
  * Strictly interpret octal fields in tar headers.
840
- Discoved by plover, fixed by Samuel Giddins.
1028
+ Discovered by plover, fixed by Samuel Giddins.
841
1029
  * Raise a security error when there are duplicate files in a package.
842
1030
  Discovered by plover, fixed by Samuel Giddins.
843
1031
  * Enforce URL validation on spec homepage attribute.
@@ -3509,10 +3697,10 @@ Bug fixes:
3509
3697
 
3510
3698
  NOTE:
3511
3699
 
3512
- http://rubygems.org is now the default source for downloading gems.
3700
+ https://rubygems.org/ is now the default source for downloading gems.
3513
3701
 
3514
3702
  You may have sources set via ~/.gemrc, so you should replace
3515
- http://gems.rubyforge.org with http://rubygems.org
3703
+ http://gems.rubyforge.org with https://rubygems.org/
3516
3704
 
3517
3705
  http://gems.rubyforge.org will continue to work for the foreseeable future.
3518
3706
 
@@ -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,8 +494,6 @@ 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
@@ -516,7 +517,6 @@ lib/rubygems/util/list.rb
516
517
  lib/rubygems/validator.rb
517
518
  lib/rubygems/version.rb
518
519
  lib/rubygems/version_option.rb
519
- lib/ubygems.rb
520
520
  rubygems-update.gemspec
521
521
  setup.rb
522
522
  test/rubygems/alternate_cert.pem
@@ -566,6 +566,7 @@ test/rubygems/sff/discover.rb
566
566
  test/rubygems/simple_gem.rb
567
567
  test/rubygems/specifications/bar-0.0.2.gemspec
568
568
  test/rubygems/specifications/foo-0.0.1-x86-mswin32.gemspec
569
+ test/rubygems/specifications/rubyforge-0.0.1.gemspec
569
570
  test/rubygems/ssl_cert.pem
570
571
  test/rubygems/ssl_key.pem
571
572
  test/rubygems/test_bundled_ca.rb
@@ -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