rubygems-update 2.6.1 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (801) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +5899 -0
  3. data/CODE_OF_CONDUCT.md +76 -35
  4. data/CONTRIBUTING.md +231 -0
  5. data/MAINTAINERS.txt +8 -0
  6. data/Manifest.txt +428 -216
  7. data/POLICIES.md +135 -0
  8. data/README.md +112 -0
  9. data/UPGRADING.md +15 -0
  10. data/bundler/CHANGELOG.md +4719 -0
  11. data/bundler/LICENSE.md +22 -0
  12. data/bundler/README.md +58 -0
  13. data/bundler/UPGRADING.md +222 -0
  14. data/bundler/bundler.gemspec +46 -0
  15. data/bundler/exe/bundle +29 -0
  16. data/bundler/exe/bundler +4 -0
  17. data/bundler/lib/bundler/.document +1 -0
  18. data/bundler/lib/bundler/build_metadata.rb +45 -0
  19. data/bundler/lib/bundler/capistrano.rb +22 -0
  20. data/bundler/lib/bundler/checksum.rb +245 -0
  21. data/bundler/lib/bundler/ci_detector.rb +75 -0
  22. data/bundler/lib/bundler/cli/add.rb +47 -0
  23. data/bundler/lib/bundler/cli/binstubs.rb +57 -0
  24. data/bundler/lib/bundler/cli/cache.rb +43 -0
  25. data/bundler/lib/bundler/cli/check.rb +40 -0
  26. data/bundler/lib/bundler/cli/clean.rb +25 -0
  27. data/bundler/lib/bundler/cli/common.rb +138 -0
  28. data/bundler/lib/bundler/cli/config.rb +204 -0
  29. data/bundler/lib/bundler/cli/console.rb +44 -0
  30. data/bundler/lib/bundler/cli/doctor.rb +157 -0
  31. data/bundler/lib/bundler/cli/exec.rb +88 -0
  32. data/bundler/lib/bundler/cli/fund.rb +36 -0
  33. data/bundler/lib/bundler/cli/gem.rb +471 -0
  34. data/bundler/lib/bundler/cli/info.rb +83 -0
  35. data/bundler/lib/bundler/cli/init.rb +51 -0
  36. data/bundler/lib/bundler/cli/inject.rb +60 -0
  37. data/bundler/lib/bundler/cli/install.rb +190 -0
  38. data/bundler/lib/bundler/cli/issue.rb +41 -0
  39. data/bundler/lib/bundler/cli/list.rb +66 -0
  40. data/bundler/lib/bundler/cli/lock.rb +73 -0
  41. data/bundler/lib/bundler/cli/open.rb +29 -0
  42. data/bundler/lib/bundler/cli/outdated.rb +297 -0
  43. data/bundler/lib/bundler/cli/platform.rb +48 -0
  44. data/bundler/lib/bundler/cli/plugin.rb +34 -0
  45. data/bundler/lib/bundler/cli/pristine.rb +60 -0
  46. data/bundler/lib/bundler/cli/remove.rb +17 -0
  47. data/bundler/lib/bundler/cli/show.rb +75 -0
  48. data/bundler/lib/bundler/cli/update.rb +123 -0
  49. data/bundler/lib/bundler/cli/viz.rb +31 -0
  50. data/bundler/lib/bundler/cli.rb +846 -0
  51. data/bundler/lib/bundler/compact_index_client/cache.rb +121 -0
  52. data/bundler/lib/bundler/compact_index_client/cache_file.rb +153 -0
  53. data/bundler/lib/bundler/compact_index_client/gem_parser.rb +32 -0
  54. data/bundler/lib/bundler/compact_index_client/updater.rb +115 -0
  55. data/bundler/lib/bundler/compact_index_client.rb +126 -0
  56. data/bundler/lib/bundler/constants.rb +7 -0
  57. data/bundler/lib/bundler/current_ruby.rb +92 -0
  58. data/bundler/lib/bundler/definition.rb +1005 -0
  59. data/bundler/lib/bundler/dependency.rb +101 -0
  60. data/bundler/lib/bundler/deployment.rb +69 -0
  61. data/bundler/lib/bundler/deprecate.rb +44 -0
  62. data/bundler/lib/bundler/digest.rb +71 -0
  63. data/bundler/lib/bundler/dsl.rb +601 -0
  64. data/bundler/lib/bundler/endpoint_specification.rb +147 -0
  65. data/bundler/lib/bundler/env.rb +148 -0
  66. data/bundler/lib/bundler/environment_preserver.rb +86 -0
  67. data/bundler/lib/bundler/errors.rb +233 -0
  68. data/bundler/lib/bundler/feature_flag.rb +53 -0
  69. data/bundler/lib/bundler/fetcher/base.rb +52 -0
  70. data/bundler/lib/bundler/fetcher/compact_index.rb +129 -0
  71. data/bundler/lib/bundler/fetcher/dependency.rb +78 -0
  72. data/bundler/lib/bundler/fetcher/downloader.rb +91 -0
  73. data/bundler/lib/bundler/fetcher/gem_remote_fetcher.rb +16 -0
  74. data/bundler/lib/bundler/fetcher/index.rb +25 -0
  75. data/bundler/lib/bundler/fetcher.rb +324 -0
  76. data/bundler/lib/bundler/force_platform.rb +18 -0
  77. data/bundler/lib/bundler/friendly_errors.rb +126 -0
  78. data/bundler/lib/bundler/gem_helper.rb +237 -0
  79. data/bundler/lib/bundler/gem_helpers.rb +127 -0
  80. data/bundler/lib/bundler/gem_tasks.rb +7 -0
  81. data/bundler/lib/bundler/gem_version_promoter.rb +145 -0
  82. data/bundler/lib/bundler/graph.rb +152 -0
  83. data/bundler/lib/bundler/index.rb +205 -0
  84. data/bundler/lib/bundler/injector.rb +287 -0
  85. data/bundler/lib/bundler/inline.rb +73 -0
  86. data/bundler/lib/bundler/installer/gem_installer.rb +84 -0
  87. data/bundler/lib/bundler/installer/parallel_installer.rb +202 -0
  88. data/bundler/lib/bundler/installer/standalone.rb +116 -0
  89. data/bundler/lib/bundler/installer.rb +267 -0
  90. data/bundler/lib/bundler/lazy_specification.rb +170 -0
  91. data/bundler/lib/bundler/lockfile_generator.rb +104 -0
  92. data/bundler/lib/bundler/lockfile_parser.rb +289 -0
  93. data/bundler/lib/bundler/man/.document +1 -0
  94. data/bundler/lib/bundler/man/bundle-add.1 +59 -0
  95. data/bundler/lib/bundler/man/bundle-add.1.ronn +58 -0
  96. data/bundler/lib/bundler/man/bundle-binstubs.1 +30 -0
  97. data/bundler/lib/bundler/man/bundle-binstubs.1.ronn +41 -0
  98. data/bundler/lib/bundler/man/bundle-cache.1 +40 -0
  99. data/bundler/lib/bundler/man/bundle-cache.1.ronn +79 -0
  100. data/bundler/lib/bundler/man/bundle-check.1 +22 -0
  101. data/bundler/lib/bundler/man/bundle-check.1.ronn +26 -0
  102. data/bundler/lib/bundler/man/bundle-clean.1 +17 -0
  103. data/bundler/lib/bundler/man/bundle-clean.1.ronn +18 -0
  104. data/bundler/lib/bundler/man/bundle-config.1 +321 -0
  105. data/bundler/lib/bundler/man/bundle-config.1.ronn +411 -0
  106. data/bundler/lib/bundler/man/bundle-console.1 +35 -0
  107. data/bundler/lib/bundler/man/bundle-console.1.ronn +44 -0
  108. data/bundler/lib/bundler/man/bundle-doctor.1 +30 -0
  109. data/bundler/lib/bundler/man/bundle-doctor.1.ronn +33 -0
  110. data/bundler/lib/bundler/man/bundle-exec.1 +104 -0
  111. data/bundler/lib/bundler/man/bundle-exec.1.ronn +151 -0
  112. data/bundler/lib/bundler/man/bundle-gem.1 +69 -0
  113. data/bundler/lib/bundler/man/bundle-gem.1.ronn +117 -0
  114. data/bundler/lib/bundler/man/bundle-help.1 +9 -0
  115. data/bundler/lib/bundler/man/bundle-help.1.ronn +12 -0
  116. data/bundler/lib/bundler/man/bundle-info.1 +14 -0
  117. data/bundler/lib/bundler/man/bundle-info.1.ronn +17 -0
  118. data/bundler/lib/bundler/man/bundle-init.1 +20 -0
  119. data/bundler/lib/bundler/man/bundle-init.1.ronn +31 -0
  120. data/bundler/lib/bundler/man/bundle-inject.1 +23 -0
  121. data/bundler/lib/bundler/man/bundle-inject.1.ronn +24 -0
  122. data/bundler/lib/bundler/man/bundle-install.1 +215 -0
  123. data/bundler/lib/bundler/man/bundle-install.1.ronn +383 -0
  124. data/bundler/lib/bundler/man/bundle-list.1 +35 -0
  125. data/bundler/lib/bundler/man/bundle-list.1.ronn +33 -0
  126. data/bundler/lib/bundler/man/bundle-lock.1 +60 -0
  127. data/bundler/lib/bundler/man/bundle-lock.1.ronn +94 -0
  128. data/bundler/lib/bundler/man/bundle-open.1 +32 -0
  129. data/bundler/lib/bundler/man/bundle-open.1.ronn +27 -0
  130. data/bundler/lib/bundler/man/bundle-outdated.1 +100 -0
  131. data/bundler/lib/bundler/man/bundle-outdated.1.ronn +106 -0
  132. data/bundler/lib/bundler/man/bundle-platform.1 +49 -0
  133. data/bundler/lib/bundler/man/bundle-platform.1.ronn +49 -0
  134. data/bundler/lib/bundler/man/bundle-plugin.1 +55 -0
  135. data/bundler/lib/bundler/man/bundle-plugin.1.ronn +59 -0
  136. data/bundler/lib/bundler/man/bundle-pristine.1 +23 -0
  137. data/bundler/lib/bundler/man/bundle-pristine.1.ronn +34 -0
  138. data/bundler/lib/bundler/man/bundle-remove.1 +21 -0
  139. data/bundler/lib/bundler/man/bundle-remove.1.ronn +23 -0
  140. data/bundler/lib/bundler/man/bundle-show.1 +16 -0
  141. data/bundler/lib/bundler/man/bundle-show.1.ronn +21 -0
  142. data/bundler/lib/bundler/man/bundle-update.1 +275 -0
  143. data/bundler/lib/bundler/man/bundle-update.1.ronn +351 -0
  144. data/bundler/lib/bundler/man/bundle-version.1 +22 -0
  145. data/bundler/lib/bundler/man/bundle-version.1.ronn +24 -0
  146. data/bundler/lib/bundler/man/bundle-viz.1 +30 -0
  147. data/bundler/lib/bundler/man/bundle-viz.1.ronn +32 -0
  148. data/bundler/lib/bundler/man/bundle.1 +102 -0
  149. data/bundler/lib/bundler/man/bundle.1.ronn +116 -0
  150. data/bundler/lib/bundler/man/gemfile.5 +470 -0
  151. data/bundler/lib/bundler/man/gemfile.5.ronn +552 -0
  152. data/bundler/lib/bundler/man/index.txt +29 -0
  153. data/bundler/lib/bundler/match_metadata.rb +17 -0
  154. data/bundler/lib/bundler/match_platform.rb +23 -0
  155. data/bundler/lib/bundler/match_remote_metadata.rb +29 -0
  156. data/bundler/lib/bundler/mirror.rb +221 -0
  157. data/bundler/lib/bundler/plugin/api/source.rb +321 -0
  158. data/bundler/lib/bundler/plugin/api.rb +81 -0
  159. data/bundler/lib/bundler/plugin/dsl.rb +53 -0
  160. data/bundler/lib/bundler/plugin/events.rb +61 -0
  161. data/bundler/lib/bundler/plugin/index.rb +193 -0
  162. data/bundler/lib/bundler/plugin/installer/git.rb +34 -0
  163. data/bundler/lib/bundler/plugin/installer/rubygems.rb +19 -0
  164. data/bundler/lib/bundler/plugin/installer.rb +112 -0
  165. data/bundler/lib/bundler/plugin/source_list.rb +31 -0
  166. data/bundler/lib/bundler/plugin.rb +359 -0
  167. data/bundler/lib/bundler/process_lock.rb +24 -0
  168. data/bundler/lib/bundler/remote_specification.rb +117 -0
  169. data/bundler/lib/bundler/resolver/base.rb +107 -0
  170. data/bundler/lib/bundler/resolver/candidate.rb +94 -0
  171. data/bundler/lib/bundler/resolver/incompatibility.rb +15 -0
  172. data/bundler/lib/bundler/resolver/package.rb +77 -0
  173. data/bundler/lib/bundler/resolver/root.rb +25 -0
  174. data/bundler/lib/bundler/resolver/spec_group.rb +79 -0
  175. data/bundler/lib/bundler/resolver.rb +462 -0
  176. data/bundler/lib/bundler/retry.rb +66 -0
  177. data/bundler/lib/bundler/ruby_dsl.rb +53 -0
  178. data/bundler/lib/bundler/ruby_version.rb +131 -0
  179. data/bundler/lib/bundler/rubygems_ext.rb +328 -0
  180. data/bundler/lib/bundler/rubygems_gem_installer.rb +137 -0
  181. data/bundler/lib/bundler/rubygems_integration.rb +493 -0
  182. data/bundler/lib/bundler/runtime.rb +307 -0
  183. data/bundler/lib/bundler/safe_marshal.rb +31 -0
  184. data/bundler/lib/bundler/self_manager.rb +186 -0
  185. data/bundler/lib/bundler/settings/validator.rb +102 -0
  186. data/bundler/lib/bundler/settings.rb +588 -0
  187. data/bundler/lib/bundler/setup.rb +33 -0
  188. data/bundler/lib/bundler/shared_helpers.rb +380 -0
  189. data/bundler/lib/bundler/similarity_detector.rb +63 -0
  190. data/bundler/lib/bundler/source/gemspec.rb +18 -0
  191. data/bundler/lib/bundler/source/git/git_proxy.rb +455 -0
  192. data/bundler/lib/bundler/source/git.rb +380 -0
  193. data/bundler/lib/bundler/source/metadata.rb +62 -0
  194. data/bundler/lib/bundler/source/path/installer.rb +53 -0
  195. data/bundler/lib/bundler/source/path.rb +261 -0
  196. data/bundler/lib/bundler/source/rubygems/remote.rb +68 -0
  197. data/bundler/lib/bundler/source/rubygems.rb +516 -0
  198. data/bundler/lib/bundler/source/rubygems_aggregate.rb +68 -0
  199. data/bundler/lib/bundler/source.rb +116 -0
  200. data/bundler/lib/bundler/source_list.rb +227 -0
  201. data/bundler/lib/bundler/source_map.rb +71 -0
  202. data/bundler/lib/bundler/spec_set.rb +247 -0
  203. data/bundler/lib/bundler/stub_specification.rb +119 -0
  204. data/bundler/lib/bundler/templates/.document +1 -0
  205. data/bundler/lib/bundler/templates/Executable +27 -0
  206. data/bundler/lib/bundler/templates/Executable.bundler +109 -0
  207. data/bundler/lib/bundler/templates/Executable.standalone +14 -0
  208. data/bundler/lib/bundler/templates/Gemfile +5 -0
  209. data/bundler/lib/bundler/templates/newgem/CHANGELOG.md.tt +5 -0
  210. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +84 -0
  211. data/bundler/lib/bundler/templates/newgem/Cargo.toml.tt +7 -0
  212. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +26 -0
  213. data/bundler/lib/bundler/templates/newgem/LICENSE.txt.tt +21 -0
  214. data/bundler/lib/bundler/templates/newgem/README.md.tt +45 -0
  215. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +67 -0
  216. data/bundler/lib/bundler/templates/newgem/bin/console.tt +11 -0
  217. data/bundler/lib/bundler/templates/newgem/bin/setup.tt +8 -0
  218. data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +25 -0
  219. data/bundler/lib/bundler/templates/newgem/exe/newgem.tt +3 -0
  220. data/bundler/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +15 -0
  221. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf-c.rb.tt +10 -0
  222. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf-rust.rb.tt +6 -0
  223. data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
  224. data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
  225. data/bundler/lib/bundler/templates/newgem/ext/newgem/src/lib.rs.tt +12 -0
  226. data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +37 -0
  227. data/bundler/lib/bundler/templates/newgem/gitignore.tt +23 -0
  228. data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +18 -0
  229. data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +9 -0
  230. data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +15 -0
  231. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +51 -0
  232. data/bundler/lib/bundler/templates/newgem/rspec.tt +3 -0
  233. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +13 -0
  234. data/bundler/lib/bundler/templates/newgem/sig/newgem.rbs.tt +8 -0
  235. data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +11 -0
  236. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +15 -0
  237. data/bundler/lib/bundler/templates/newgem/standard.yml.tt +3 -0
  238. data/bundler/lib/bundler/templates/newgem/test/minitest/test_helper.rb.tt +6 -0
  239. data/bundler/lib/bundler/templates/newgem/test/minitest/test_newgem.rb.tt +13 -0
  240. data/bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  241. data/bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  242. data/bundler/lib/bundler/ui/rg_proxy.rb +19 -0
  243. data/bundler/lib/bundler/ui/shell.rb +165 -0
  244. data/bundler/lib/bundler/ui/silent.rb +85 -0
  245. data/bundler/lib/bundler/ui.rb +9 -0
  246. data/bundler/lib/bundler/uri_credentials_filter.rb +43 -0
  247. data/bundler/lib/bundler/uri_normalizer.rb +23 -0
  248. data/bundler/lib/bundler/vendor/.document +1 -0
  249. data/bundler/lib/bundler/vendor/connection_pool/LICENSE +20 -0
  250. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +174 -0
  251. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +3 -0
  252. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb +56 -0
  253. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +175 -0
  254. data/bundler/lib/bundler/vendor/fileutils/LICENSE.txt +22 -0
  255. data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +2694 -0
  256. data/bundler/lib/bundler/vendor/net-http-persistent/README.rdoc +82 -0
  257. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +41 -0
  258. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +65 -0
  259. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +79 -0
  260. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1073 -0
  261. data/bundler/lib/bundler/vendor/pub_grub/LICENSE.txt +21 -0
  262. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/assignment.rb +20 -0
  263. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +189 -0
  264. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/failure_writer.rb +182 -0
  265. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/incompatibility.rb +150 -0
  266. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/package.rb +43 -0
  267. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/partial_solution.rb +121 -0
  268. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/rubygems.rb +45 -0
  269. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/solve_failure.rb +19 -0
  270. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +60 -0
  271. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/term.rb +105 -0
  272. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version.rb +3 -0
  273. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb +129 -0
  274. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb +411 -0
  275. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +248 -0
  276. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb +178 -0
  277. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub.rb +31 -0
  278. data/bundler/lib/bundler/vendor/thor/LICENSE.md +20 -0
  279. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +105 -0
  280. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +61 -0
  281. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +108 -0
  282. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +143 -0
  283. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +373 -0
  284. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +130 -0
  285. data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +340 -0
  286. data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +825 -0
  287. data/bundler/lib/bundler/vendor/thor/lib/thor/command.rb +151 -0
  288. data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +107 -0
  289. data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +106 -0
  290. data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +281 -0
  291. data/bundler/lib/bundler/vendor/thor/lib/thor/invocation.rb +178 -0
  292. data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +37 -0
  293. data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
  294. data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor.rb +17 -0
  295. data/bundler/lib/bundler/vendor/thor/lib/thor/nested_context.rb +29 -0
  296. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +89 -0
  297. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +195 -0
  298. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +178 -0
  299. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +293 -0
  300. data/bundler/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
  301. data/bundler/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +72 -0
  302. data/bundler/lib/bundler/vendor/thor/lib/thor/runner.rb +335 -0
  303. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +388 -0
  304. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb +115 -0
  305. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/column_printer.rb +29 -0
  306. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +84 -0
  307. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/lcs_diff.rb +49 -0
  308. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +134 -0
  309. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/terminal.rb +42 -0
  310. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/wrapped_printer.rb +38 -0
  311. data/bundler/lib/bundler/vendor/thor/lib/thor/shell.rb +81 -0
  312. data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +285 -0
  313. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +3 -0
  314. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +663 -0
  315. data/bundler/lib/bundler/vendor/tsort/LICENSE.txt +22 -0
  316. data/bundler/lib/bundler/vendor/tsort/lib/tsort.rb +455 -0
  317. data/bundler/lib/bundler/vendor/uri/LICENSE.txt +22 -0
  318. data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +853 -0
  319. data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +100 -0
  320. data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +267 -0
  321. data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +1588 -0
  322. data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +125 -0
  323. data/bundler/lib/bundler/vendor/uri/lib/uri/https.rb +23 -0
  324. data/bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb +261 -0
  325. data/bundler/lib/bundler/vendor/uri/lib/uri/ldaps.rb +22 -0
  326. data/bundler/lib/bundler/vendor/uri/lib/uri/mailto.rb +293 -0
  327. data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +539 -0
  328. data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +183 -0
  329. data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +6 -0
  330. data/bundler/lib/bundler/vendor/uri/lib/uri/ws.rb +83 -0
  331. data/bundler/lib/bundler/vendor/uri/lib/uri/wss.rb +23 -0
  332. data/bundler/lib/bundler/vendor/uri/lib/uri.rb +104 -0
  333. data/bundler/lib/bundler/vendored_fileutils.rb +4 -0
  334. data/bundler/lib/bundler/vendored_net_http.rb +8 -0
  335. data/bundler/lib/bundler/vendored_persistent.rb +11 -0
  336. data/bundler/lib/bundler/vendored_pub_grub.rb +4 -0
  337. data/bundler/lib/bundler/vendored_thor.rb +8 -0
  338. data/bundler/lib/bundler/vendored_timeout.rb +8 -0
  339. data/bundler/lib/bundler/vendored_tsort.rb +4 -0
  340. data/bundler/lib/bundler/vendored_uri.rb +4 -0
  341. data/bundler/lib/bundler/version.rb +13 -0
  342. data/bundler/lib/bundler/vlad.rb +17 -0
  343. data/bundler/lib/bundler/worker.rb +117 -0
  344. data/bundler/lib/bundler/yaml_serializer.rb +93 -0
  345. data/bundler/lib/bundler.rb +665 -0
  346. data/{test/rubygems/bogussources.rb → exe/gem} +5 -2
  347. data/exe/update_rubygems +38 -0
  348. data/hide_lib_for_update/note.txt +0 -4
  349. data/lib/rubygems/available_set.rb +12 -12
  350. data/lib/rubygems/basic_specification.rb +75 -58
  351. data/lib/rubygems/bundler_version_finder.rb +77 -0
  352. data/lib/rubygems/ci_detector.rb +75 -0
  353. data/lib/rubygems/command.rb +144 -71
  354. data/lib/rubygems/command_manager.rb +64 -27
  355. data/lib/rubygems/commands/build_command.rb +88 -17
  356. data/lib/rubygems/commands/cert_command.rb +131 -83
  357. data/lib/rubygems/commands/check_command.rb +30 -27
  358. data/lib/rubygems/commands/cleanup_command.rb +57 -40
  359. data/lib/rubygems/commands/contents_command.rb +37 -39
  360. data/lib/rubygems/commands/dependency_command.rb +53 -65
  361. data/lib/rubygems/commands/environment_command.rb +32 -16
  362. data/lib/rubygems/commands/exec_command.rb +249 -0
  363. data/lib/rubygems/commands/fetch_command.rb +36 -19
  364. data/lib/rubygems/commands/generate_index_command.rb +40 -74
  365. data/lib/rubygems/commands/help_command.rb +22 -22
  366. data/lib/rubygems/commands/info_command.rb +38 -0
  367. data/lib/rubygems/commands/install_command.rb +67 -143
  368. data/lib/rubygems/commands/list_command.rb +10 -9
  369. data/lib/rubygems/commands/lock_command.rb +12 -14
  370. data/lib/rubygems/commands/mirror_command.rb +4 -4
  371. data/lib/rubygems/commands/open_command.rb +28 -26
  372. data/lib/rubygems/commands/outdated_command.rb +6 -6
  373. data/lib/rubygems/commands/owner_command.rb +51 -27
  374. data/lib/rubygems/commands/pristine_command.rb +99 -71
  375. data/lib/rubygems/commands/push_command.rb +53 -46
  376. data/lib/rubygems/commands/query_command.rb +21 -328
  377. data/lib/rubygems/commands/rdoc_command.rb +33 -33
  378. data/lib/rubygems/commands/search_command.rb +9 -9
  379. data/lib/rubygems/commands/server_command.rb +15 -76
  380. data/lib/rubygems/commands/setup_command.rb +370 -186
  381. data/lib/rubygems/commands/signin_command.rb +34 -0
  382. data/lib/rubygems/commands/signout_command.rb +32 -0
  383. data/lib/rubygems/commands/sources_command.rb +57 -41
  384. data/lib/rubygems/commands/specification_command.rb +38 -28
  385. data/lib/rubygems/commands/stale_command.rb +6 -5
  386. data/lib/rubygems/commands/uninstall_command.rb +96 -62
  387. data/lib/rubygems/commands/unpack_command.rb +44 -53
  388. data/lib/rubygems/commands/update_command.rb +155 -99
  389. data/lib/rubygems/commands/which_command.rb +14 -17
  390. data/lib/rubygems/commands/yank_command.rb +28 -32
  391. data/lib/rubygems/compatibility.rb +13 -32
  392. data/lib/rubygems/config_file.rb +214 -119
  393. data/lib/rubygems/core_ext/kernel_gem.rb +10 -16
  394. data/lib/rubygems/core_ext/kernel_require.rb +92 -90
  395. data/lib/rubygems/core_ext/kernel_warn.rb +49 -0
  396. data/lib/rubygems/core_ext/tcpsocket_init.rb +54 -0
  397. data/lib/rubygems/defaults.rb +184 -54
  398. data/lib/rubygems/dependency.rb +75 -62
  399. data/lib/rubygems/dependency_installer.rb +74 -230
  400. data/lib/rubygems/dependency_list.rb +32 -33
  401. data/lib/rubygems/deprecate.rb +113 -17
  402. data/lib/rubygems/doctor.rb +31 -31
  403. data/lib/rubygems/errors.rb +51 -13
  404. data/lib/rubygems/exceptions.rb +65 -35
  405. data/lib/rubygems/ext/build_error.rb +3 -1
  406. data/lib/rubygems/ext/builder.rb +103 -77
  407. data/lib/rubygems/ext/cargo_builder/link_flag_converter.rb +27 -0
  408. data/lib/rubygems/ext/cargo_builder.rb +360 -0
  409. data/lib/rubygems/ext/cmake_builder.rb +6 -7
  410. data/lib/rubygems/ext/configure_builder.rb +6 -9
  411. data/lib/rubygems/ext/ext_conf_builder.rb +40 -61
  412. data/lib/rubygems/ext/rake_builder.rb +18 -21
  413. data/lib/rubygems/ext.rb +8 -7
  414. data/lib/rubygems/gem_runner.rb +19 -21
  415. data/lib/rubygems/gemcutter_utilities/webauthn_listener/response.rb +163 -0
  416. data/lib/rubygems/gemcutter_utilities/webauthn_listener.rb +105 -0
  417. data/lib/rubygems/gemcutter_utilities/webauthn_poller.rb +78 -0
  418. data/lib/rubygems/gemcutter_utilities.rb +246 -43
  419. data/lib/rubygems/install_default_message.rb +3 -3
  420. data/lib/rubygems/install_message.rb +3 -3
  421. data/lib/rubygems/install_update_options.rb +104 -98
  422. data/lib/rubygems/installer.rb +407 -225
  423. data/lib/rubygems/installer_uninstaller_utils.rb +27 -0
  424. data/lib/rubygems/local_remote_options.rb +29 -32
  425. data/lib/rubygems/name_tuple.rb +18 -23
  426. data/lib/rubygems/net/http.rb +3 -0
  427. data/lib/rubygems/net-http/LICENSE.txt +22 -0
  428. data/lib/rubygems/net-http/lib/net/http/backward.rb +40 -0
  429. data/lib/rubygems/net-http/lib/net/http/exceptions.rb +34 -0
  430. data/lib/rubygems/net-http/lib/net/http/generic_request.rb +414 -0
  431. data/lib/rubygems/net-http/lib/net/http/header.rb +981 -0
  432. data/lib/rubygems/net-http/lib/net/http/proxy_delta.rb +17 -0
  433. data/lib/rubygems/net-http/lib/net/http/request.rb +88 -0
  434. data/lib/rubygems/net-http/lib/net/http/requests.rb +425 -0
  435. data/lib/rubygems/net-http/lib/net/http/response.rb +738 -0
  436. data/lib/rubygems/net-http/lib/net/http/responses.rb +1174 -0
  437. data/lib/rubygems/net-http/lib/net/http/status.rb +84 -0
  438. data/lib/rubygems/net-http/lib/net/http.rb +2496 -0
  439. data/lib/rubygems/net-http/lib/net/https.rb +23 -0
  440. data/lib/rubygems/net-protocol/LICENSE.txt +22 -0
  441. data/lib/rubygems/net-protocol/lib/net/protocol.rb +544 -0
  442. data/lib/rubygems/openssl.rb +7 -0
  443. data/lib/rubygems/optparse/.document +1 -0
  444. data/lib/rubygems/optparse/COPYING +56 -0
  445. data/lib/rubygems/optparse/lib/optionparser.rb +2 -0
  446. data/lib/rubygems/optparse/lib/optparse/ac.rb +54 -0
  447. data/lib/rubygems/optparse/lib/optparse/date.rb +18 -0
  448. data/lib/rubygems/optparse/lib/optparse/kwargs.rb +22 -0
  449. data/lib/rubygems/optparse/lib/optparse/shellwords.rb +7 -0
  450. data/lib/rubygems/optparse/lib/optparse/time.rb +11 -0
  451. data/lib/rubygems/optparse/lib/optparse/uri.rb +7 -0
  452. data/lib/rubygems/optparse/lib/optparse/version.rb +71 -0
  453. data/lib/rubygems/optparse/lib/optparse.rb +2330 -0
  454. data/lib/rubygems/optparse.rb +3 -0
  455. data/lib/rubygems/package/digest_io.rb +5 -7
  456. data/lib/rubygems/package/file_source.rb +6 -8
  457. data/lib/rubygems/package/io_source.rb +6 -4
  458. data/lib/rubygems/package/old.rb +19 -28
  459. data/lib/rubygems/package/source.rb +1 -1
  460. data/lib/rubygems/package/tar_header.rb +114 -93
  461. data/lib/rubygems/package/tar_reader/entry.rb +116 -22
  462. data/lib/rubygems/package/tar_reader.rb +18 -40
  463. data/lib/rubygems/package/tar_writer.rb +42 -56
  464. data/lib/rubygems/package.rb +245 -145
  465. data/lib/rubygems/package_task.rb +8 -14
  466. data/lib/rubygems/path_support.rb +21 -16
  467. data/lib/rubygems/platform.rb +135 -74
  468. data/lib/rubygems/psych_tree.rb +3 -2
  469. data/lib/rubygems/query_utils.rb +349 -0
  470. data/lib/rubygems/rdoc.rb +4 -326
  471. data/lib/rubygems/remote_fetcher.rb +99 -181
  472. data/lib/rubygems/request/connection_pools.rb +31 -24
  473. data/lib/rubygems/request/http_pool.rb +6 -7
  474. data/lib/rubygems/request/https_pool.rb +2 -3
  475. data/lib/rubygems/request.rb +103 -53
  476. data/lib/rubygems/request_set/gem_dependency_api.rb +182 -190
  477. data/lib/rubygems/request_set/lockfile/parser.rb +42 -52
  478. data/lib/rubygems/request_set/lockfile/tokenizer.rb +34 -24
  479. data/lib/rubygems/request_set/lockfile.rb +32 -35
  480. data/lib/rubygems/request_set.rb +115 -71
  481. data/lib/rubygems/requirement.rb +77 -68
  482. data/lib/rubygems/resolv/LICENSE.txt +22 -0
  483. data/lib/rubygems/resolv/lib/resolv.rb +3387 -0
  484. data/lib/rubygems/resolver/activation_request.rb +34 -61
  485. data/lib/rubygems/resolver/api_set/gem_parser.rb +24 -0
  486. data/lib/rubygems/resolver/api_set.rb +40 -32
  487. data/lib/rubygems/resolver/api_specification.rb +37 -18
  488. data/lib/rubygems/resolver/best_set.rb +15 -17
  489. data/lib/rubygems/resolver/composed_set.rb +9 -11
  490. data/lib/rubygems/resolver/conflict.rb +19 -33
  491. data/lib/rubygems/resolver/current_set.rb +2 -4
  492. data/lib/rubygems/resolver/dependency_request.rb +8 -9
  493. data/lib/rubygems/resolver/git_set.rb +8 -10
  494. data/lib/rubygems/resolver/git_specification.rb +11 -13
  495. data/lib/rubygems/resolver/index_set.rb +13 -15
  496. data/lib/rubygems/resolver/index_specification.rb +42 -11
  497. data/lib/rubygems/resolver/installed_specification.rb +9 -11
  498. data/lib/rubygems/resolver/installer_set.rb +87 -45
  499. data/lib/rubygems/resolver/local_specification.rb +5 -7
  500. data/lib/rubygems/resolver/lock_set.rb +13 -15
  501. data/lib/rubygems/resolver/lock_specification.rb +13 -15
  502. data/lib/rubygems/resolver/molinillo/LICENSE +9 -0
  503. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +57 -0
  504. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +88 -0
  505. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +36 -0
  506. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +66 -0
  507. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +62 -0
  508. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +63 -0
  509. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +61 -0
  510. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +126 -0
  511. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +46 -0
  512. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +36 -0
  513. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +164 -0
  514. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +110 -146
  515. data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +83 -9
  516. data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +2 -1
  517. data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb +13 -1
  518. data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +3 -1
  519. data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +552 -172
  520. data/lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb +3 -2
  521. data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +12 -6
  522. data/lib/rubygems/resolver/molinillo/lib/molinillo.rb +6 -5
  523. data/lib/rubygems/resolver/molinillo.rb +2 -1
  524. data/lib/rubygems/resolver/requirement_list.rb +2 -2
  525. data/lib/rubygems/resolver/set.rb +3 -5
  526. data/lib/rubygems/resolver/source_set.rb +6 -7
  527. data/lib/rubygems/resolver/spec_specification.rb +16 -4
  528. data/lib/rubygems/resolver/specification.rb +25 -10
  529. data/lib/rubygems/resolver/stats.rb +1 -0
  530. data/lib/rubygems/resolver/vendor_set.rb +6 -8
  531. data/lib/rubygems/resolver/vendor_specification.rb +6 -8
  532. data/lib/rubygems/resolver.rb +121 -72
  533. data/lib/rubygems/s3_uri_signer.rb +177 -0
  534. data/lib/rubygems/safe_marshal/elements.rb +138 -0
  535. data/lib/rubygems/safe_marshal/reader.rb +306 -0
  536. data/lib/rubygems/safe_marshal/visitors/stream_printer.rb +31 -0
  537. data/lib/rubygems/safe_marshal/visitors/to_ruby.rb +385 -0
  538. data/lib/rubygems/safe_marshal/visitors/visitor.rb +74 -0
  539. data/lib/rubygems/safe_marshal.rb +74 -0
  540. data/lib/rubygems/safe_yaml.rb +36 -0
  541. data/lib/rubygems/security/policies.rb +49 -51
  542. data/lib/rubygems/security/policy.rb +46 -53
  543. data/lib/rubygems/security/signer.rb +86 -29
  544. data/lib/rubygems/security/trust_dir.rb +22 -24
  545. data/lib/rubygems/security.rb +101 -82
  546. data/lib/rubygems/security_option.rb +43 -0
  547. data/lib/rubygems/shellwords.rb +3 -0
  548. data/lib/rubygems/source/git.rb +40 -42
  549. data/lib/rubygems/source/installed.rb +5 -9
  550. data/lib/rubygems/source/local.rb +30 -33
  551. data/lib/rubygems/source/lock.rb +10 -10
  552. data/lib/rubygems/source/specific_file.rb +7 -9
  553. data/lib/rubygems/source/vendor.rb +3 -7
  554. data/lib/rubygems/source.rb +78 -68
  555. data/lib/rubygems/source_list.rb +11 -15
  556. data/lib/rubygems/spec_fetcher.rb +71 -83
  557. data/lib/rubygems/specification.rb +833 -1115
  558. data/lib/rubygems/specification_policy.rb +538 -0
  559. data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem +21 -0
  560. data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem +21 -0
  561. data/lib/rubygems/stub_specification.rb +55 -57
  562. data/lib/rubygems/text.rb +39 -27
  563. data/lib/rubygems/timeout/LICENSE.txt +22 -0
  564. data/lib/rubygems/timeout/lib/timeout.rb +199 -0
  565. data/lib/rubygems/timeout.rb +3 -0
  566. data/lib/rubygems/tsort/.document +1 -0
  567. data/lib/rubygems/tsort/LICENSE.txt +22 -0
  568. data/lib/rubygems/tsort/lib/tsort.rb +455 -0
  569. data/lib/rubygems/tsort.rb +3 -0
  570. data/lib/rubygems/uninstaller.rb +150 -87
  571. data/lib/rubygems/unknown_command_spell_checker.rb +21 -0
  572. data/lib/rubygems/update_suggestion.rb +56 -0
  573. data/lib/rubygems/uri.rb +126 -0
  574. data/lib/rubygems/uri_formatter.rb +4 -7
  575. data/lib/rubygems/user_interaction.rb +92 -146
  576. data/lib/rubygems/util/licenses.rb +712 -317
  577. data/lib/rubygems/util/list.rb +5 -2
  578. data/lib/rubygems/util.rb +58 -75
  579. data/lib/rubygems/validator.rb +26 -48
  580. data/lib/rubygems/version.rb +106 -56
  581. data/lib/rubygems/version_option.rb +22 -14
  582. data/lib/rubygems/yaml_serializer.rb +93 -0
  583. data/lib/rubygems.rb +427 -361
  584. data/rubygems-update.gemspec +38 -0
  585. data/setup.rb +13 -27
  586. metadata +500 -363
  587. data/.autotest +0 -71
  588. data/.document +0 -5
  589. data/.travis.yml +0 -46
  590. data/CONTRIBUTING.rdoc +0 -129
  591. data/CVE-2013-4287.txt +0 -35
  592. data/CVE-2013-4363.txt +0 -45
  593. data/CVE-2015-3900.txt +0 -40
  594. data/History.txt +0 -3105
  595. data/MAINTAINERS.md +0 -5
  596. data/POLICIES.rdoc +0 -61
  597. data/README.rdoc +0 -54
  598. data/Rakefile +0 -449
  599. data/UPGRADING.rdoc +0 -92
  600. data/appveyor.yml +0 -36
  601. data/bin/gem +0 -25
  602. data/bin/update_rubygems +0 -37
  603. data/lib/gauntlet_rubygems.rb +0 -51
  604. data/lib/rubygems/indexer.rb +0 -434
  605. data/lib/rubygems/installer_test_case.rb +0 -194
  606. data/lib/rubygems/mock_gem_ui.rb +0 -89
  607. data/lib/rubygems/package/tar_test_case.rb +0 -147
  608. data/lib/rubygems/psych_additions.rb +0 -10
  609. data/lib/rubygems/server.rb +0 -869
  610. data/lib/rubygems/source_local.rb +0 -6
  611. data/lib/rubygems/source_specific_file.rb +0 -5
  612. data/lib/rubygems/ssl_certs/AddTrustExternalCARoot-2048.pem +0 -25
  613. data/lib/rubygems/ssl_certs/AddTrustExternalCARoot.pem +0 -32
  614. data/lib/rubygems/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem +0 -14
  615. data/lib/rubygems/ssl_certs/DigiCertHighAssuranceEVRootCA.pem +0 -23
  616. data/lib/rubygems/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem +0 -28
  617. data/lib/rubygems/ssl_certs/GeoTrustGlobalCA.pem +0 -20
  618. data/lib/rubygems/syck_hack.rb +0 -77
  619. data/lib/rubygems/test_case.rb +0 -1496
  620. data/lib/rubygems/test_utilities.rb +0 -384
  621. data/lib/ubygems.rb +0 -11
  622. data/test/rubygems/alternate_cert.pem +0 -18
  623. data/test/rubygems/alternate_cert_32.pem +0 -18
  624. data/test/rubygems/alternate_key.pem +0 -27
  625. data/test/rubygems/bad_rake.rb +0 -2
  626. data/test/rubygems/ca_cert.pem +0 -68
  627. data/test/rubygems/child_cert.pem +0 -18
  628. data/test/rubygems/child_cert_32.pem +0 -18
  629. data/test/rubygems/child_key.pem +0 -27
  630. data/test/rubygems/client.pem +0 -49
  631. data/test/rubygems/data/gem-private_key.pem +0 -27
  632. data/test/rubygems/data/gem-public_cert.pem +0 -20
  633. data/test/rubygems/data/null-type.gemspec.rz +0 -0
  634. data/test/rubygems/encrypted_private_key.pem +0 -30
  635. data/test/rubygems/expired_cert.pem +0 -18
  636. data/test/rubygems/fake_certlib/openssl.rb +0 -8
  637. data/test/rubygems/fix_openssl_warnings.rb +0 -13
  638. data/test/rubygems/foo/discover.rb +0 -1
  639. data/test/rubygems/future_cert.pem +0 -18
  640. data/test/rubygems/future_cert_32.pem +0 -18
  641. data/test/rubygems/good_rake.rb +0 -2
  642. data/test/rubygems/grandchild_cert.pem +0 -18
  643. data/test/rubygems/grandchild_cert_32.pem +0 -18
  644. data/test/rubygems/grandchild_key.pem +0 -27
  645. data/test/rubygems/invalid_client.pem +0 -49
  646. data/test/rubygems/invalid_issuer_cert.pem +0 -18
  647. data/test/rubygems/invalid_issuer_cert_32.pem +0 -18
  648. data/test/rubygems/invalid_key.pem +0 -27
  649. data/test/rubygems/invalid_signer_cert.pem +0 -18
  650. data/test/rubygems/invalid_signer_cert_32.pem +0 -18
  651. data/test/rubygems/invalidchild_cert.pem +0 -18
  652. data/test/rubygems/invalidchild_cert_32.pem +0 -18
  653. data/test/rubygems/invalidchild_key.pem +0 -27
  654. data/test/rubygems/plugin/exception/rubygems_plugin.rb +0 -3
  655. data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -4
  656. data/test/rubygems/plugin/standarderror/rubygems_plugin.rb +0 -3
  657. data/test/rubygems/private_key.pem +0 -27
  658. data/test/rubygems/public_cert.pem +0 -18
  659. data/test/rubygems/public_cert_32.pem +0 -18
  660. data/test/rubygems/public_key.pem +0 -9
  661. data/test/rubygems/rubygems/commands/crash_command.rb +0 -6
  662. data/test/rubygems/rubygems_plugin.rb +0 -22
  663. data/test/rubygems/sff/discover.rb +0 -1
  664. data/test/rubygems/simple_gem.rb +0 -67
  665. data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -9
  666. data/test/rubygems/specifications/foo-0.0.1-x86-mswin32.gemspec +0 -0
  667. data/test/rubygems/ssl_cert.pem +0 -19
  668. data/test/rubygems/ssl_key.pem +0 -15
  669. data/test/rubygems/test_bundled_ca.rb +0 -59
  670. data/test/rubygems/test_config.rb +0 -24
  671. data/test/rubygems/test_deprecate.rb +0 -77
  672. data/test/rubygems/test_gem.rb +0 -1718
  673. data/test/rubygems/test_gem_available_set.rb +0 -130
  674. data/test/rubygems/test_gem_command.rb +0 -248
  675. data/test/rubygems/test_gem_command_manager.rb +0 -264
  676. data/test/rubygems/test_gem_commands_build_command.rb +0 -121
  677. data/test/rubygems/test_gem_commands_cert_command.rb +0 -671
  678. data/test/rubygems/test_gem_commands_check_command.rb +0 -69
  679. data/test/rubygems/test_gem_commands_cleanup_command.rb +0 -197
  680. data/test/rubygems/test_gem_commands_contents_command.rb +0 -240
  681. data/test/rubygems/test_gem_commands_dependency_command.rb +0 -230
  682. data/test/rubygems/test_gem_commands_environment_command.rb +0 -154
  683. data/test/rubygems/test_gem_commands_fetch_command.rb +0 -127
  684. data/test/rubygems/test_gem_commands_generate_index_command.rb +0 -51
  685. data/test/rubygems/test_gem_commands_help_command.rb +0 -75
  686. data/test/rubygems/test_gem_commands_install_command.rb +0 -1007
  687. data/test/rubygems/test_gem_commands_list_command.rb +0 -34
  688. data/test/rubygems/test_gem_commands_lock_command.rb +0 -69
  689. data/test/rubygems/test_gem_commands_mirror.rb +0 -20
  690. data/test/rubygems/test_gem_commands_open_command.rb +0 -70
  691. data/test/rubygems/test_gem_commands_outdated_command.rb +0 -33
  692. data/test/rubygems/test_gem_commands_owner_command.rb +0 -205
  693. data/test/rubygems/test_gem_commands_pristine_command.rb +0 -491
  694. data/test/rubygems/test_gem_commands_push_command.rb +0 -330
  695. data/test/rubygems/test_gem_commands_query_command.rb +0 -657
  696. data/test/rubygems/test_gem_commands_search_command.rb +0 -18
  697. data/test/rubygems/test_gem_commands_server_command.rb +0 -60
  698. data/test/rubygems/test_gem_commands_setup_command.rb +0 -136
  699. data/test/rubygems/test_gem_commands_sources_command.rb +0 -249
  700. data/test/rubygems/test_gem_commands_specification_command.rb +0 -251
  701. data/test/rubygems/test_gem_commands_stale_command.rb +0 -43
  702. data/test/rubygems/test_gem_commands_uninstall_command.rb +0 -283
  703. data/test/rubygems/test_gem_commands_unpack_command.rb +0 -209
  704. data/test/rubygems/test_gem_commands_update_command.rb +0 -514
  705. data/test/rubygems/test_gem_commands_which_command.rb +0 -87
  706. data/test/rubygems/test_gem_commands_yank_command.rb +0 -100
  707. data/test/rubygems/test_gem_config_file.rb +0 -491
  708. data/test/rubygems/test_gem_dependency.rb +0 -362
  709. data/test/rubygems/test_gem_dependency_installer.rb +0 -1235
  710. data/test/rubygems/test_gem_dependency_list.rb +0 -260
  711. data/test/rubygems/test_gem_dependency_resolution_error.rb +0 -29
  712. data/test/rubygems/test_gem_doctor.rb +0 -169
  713. data/test/rubygems/test_gem_ext_builder.rb +0 -341
  714. data/test/rubygems/test_gem_ext_cmake_builder.rb +0 -87
  715. data/test/rubygems/test_gem_ext_configure_builder.rb +0 -87
  716. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -211
  717. data/test/rubygems/test_gem_ext_rake_builder.rb +0 -65
  718. data/test/rubygems/test_gem_gem_runner.rb +0 -69
  719. data/test/rubygems/test_gem_gemcutter_utilities.rb +0 -235
  720. data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -62
  721. data/test/rubygems/test_gem_indexer.rb +0 -367
  722. data/test/rubygems/test_gem_install_update_options.rb +0 -197
  723. data/test/rubygems/test_gem_installer.rb +0 -1552
  724. data/test/rubygems/test_gem_local_remote_options.rb +0 -134
  725. data/test/rubygems/test_gem_name_tuple.rb +0 -45
  726. data/test/rubygems/test_gem_package.rb +0 -876
  727. data/test/rubygems/test_gem_package_old.rb +0 -90
  728. data/test/rubygems/test_gem_package_tar_header.rb +0 -147
  729. data/test/rubygems/test_gem_package_tar_reader.rb +0 -90
  730. data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -142
  731. data/test/rubygems/test_gem_package_tar_writer.rb +0 -264
  732. data/test/rubygems/test_gem_package_task.rb +0 -84
  733. data/test/rubygems/test_gem_path_support.rb +0 -121
  734. data/test/rubygems/test_gem_platform.rb +0 -308
  735. data/test/rubygems/test_gem_rdoc.rb +0 -270
  736. data/test/rubygems/test_gem_remote_fetcher.rb +0 -1051
  737. data/test/rubygems/test_gem_request.rb +0 -363
  738. data/test/rubygems/test_gem_request_connection_pools.rb +0 -130
  739. data/test/rubygems/test_gem_request_set.rb +0 -595
  740. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +0 -831
  741. data/test/rubygems/test_gem_request_set_lockfile.rb +0 -470
  742. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +0 -549
  743. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +0 -306
  744. data/test/rubygems/test_gem_requirement.rb +0 -387
  745. data/test/rubygems/test_gem_resolver.rb +0 -715
  746. data/test/rubygems/test_gem_resolver_activation_request.rb +0 -74
  747. data/test/rubygems/test_gem_resolver_api_set.rb +0 -209
  748. data/test/rubygems/test_gem_resolver_api_specification.rb +0 -145
  749. data/test/rubygems/test_gem_resolver_best_set.rb +0 -138
  750. data/test/rubygems/test_gem_resolver_composed_set.rb +0 -46
  751. data/test/rubygems/test_gem_resolver_conflict.rb +0 -88
  752. data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -85
  753. data/test/rubygems/test_gem_resolver_git_set.rb +0 -190
  754. data/test/rubygems/test_gem_resolver_git_specification.rb +0 -114
  755. data/test/rubygems/test_gem_resolver_index_set.rb +0 -90
  756. data/test/rubygems/test_gem_resolver_index_specification.rb +0 -90
  757. data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -50
  758. data/test/rubygems/test_gem_resolver_installer_set.rb +0 -258
  759. data/test/rubygems/test_gem_resolver_local_specification.rb +0 -46
  760. data/test/rubygems/test_gem_resolver_lock_set.rb +0 -64
  761. data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -100
  762. data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -21
  763. data/test/rubygems/test_gem_resolver_specification.rb +0 -65
  764. data/test/rubygems/test_gem_resolver_vendor_set.rb +0 -84
  765. data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -84
  766. data/test/rubygems/test_gem_security.rb +0 -307
  767. data/test/rubygems/test_gem_security_policy.rb +0 -541
  768. data/test/rubygems/test_gem_security_signer.rb +0 -209
  769. data/test/rubygems/test_gem_security_trust_dir.rb +0 -101
  770. data/test/rubygems/test_gem_server.rb +0 -409
  771. data/test/rubygems/test_gem_silent_ui.rb +0 -117
  772. data/test/rubygems/test_gem_source.rb +0 -242
  773. data/test/rubygems/test_gem_source_fetch_problem.rb +0 -20
  774. data/test/rubygems/test_gem_source_git.rb +0 -309
  775. data/test/rubygems/test_gem_source_installed.rb +0 -37
  776. data/test/rubygems/test_gem_source_list.rb +0 -118
  777. data/test/rubygems/test_gem_source_local.rb +0 -107
  778. data/test/rubygems/test_gem_source_lock.rb +0 -115
  779. data/test/rubygems/test_gem_source_specific_file.rb +0 -76
  780. data/test/rubygems/test_gem_source_vendor.rb +0 -32
  781. data/test/rubygems/test_gem_spec_fetcher.rb +0 -311
  782. data/test/rubygems/test_gem_specification.rb +0 -3519
  783. data/test/rubygems/test_gem_stream_ui.rb +0 -239
  784. data/test/rubygems/test_gem_stub_specification.rb +0 -217
  785. data/test/rubygems/test_gem_text.rb +0 -77
  786. data/test/rubygems/test_gem_uninstaller.rb +0 -485
  787. data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -33
  788. data/test/rubygems/test_gem_uri_formatter.rb +0 -29
  789. data/test/rubygems/test_gem_util.rb +0 -40
  790. data/test/rubygems/test_gem_validator.rb +0 -46
  791. data/test/rubygems/test_gem_version.rb +0 -222
  792. data/test/rubygems/test_gem_version_option.rb +0 -152
  793. data/test/rubygems/test_kernel.rb +0 -86
  794. data/test/rubygems/test_require.rb +0 -322
  795. data/test/rubygems/wrong_key_cert.pem +0 -18
  796. data/test/rubygems/wrong_key_cert_32.pem +0 -18
  797. data/util/CL2notes +0 -56
  798. data/util/create_certs.rb +0 -157
  799. data/util/create_encrypted_key.rb +0 -17
  800. data/util/generate_spdx_license_list.rb +0 -51
  801. data/util/update_bundled_ca_certificates.rb +0 -118
data/History.txt DELETED
@@ -1,3105 +0,0 @@
1
- # coding: UTF-8
2
-
3
- === 2.6.1 / 2016-02-28
4
-
5
- Bug fixes:
6
-
7
- * Ensure `default_path` and `home` are set for paths. Pull request #1513
8
- by Aaron Patterson.
9
- * Restore but deprecate support for Array values on `Gem.paths=`. Pull
10
- request #1514 by Aaron Patterson.
11
- * Fix invalid gem file preventing gem install from working. Pull request
12
- #1499 by Luis Sagastume.
13
-
14
- === 2.6.0 / 2016-02-26
15
-
16
- Minor enhancements:
17
-
18
- * RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
19
- metadata setting. Pull request #1486 by Josh Lane.
20
- * Update bundled Molinillo to 0.4.3. Pull request #1493 by Samuel E. Giddins.
21
- * Add version option to gem open command. Pull request #1483 by Hrvoje
22
- Šimić.
23
- * Feature/add silent flag. Pull request #1455 by Luis Sagastume.
24
- * Allow specifying gem requirements via env variables. Pull request #1472
25
- by Samuel E. Giddins.
26
-
27
- Bug fixes:
28
-
29
- * RubyGems now stores `gem push` credentials under the host you signed-in for.
30
- Pull request #1485 by Josh Lane.
31
- * Move `coding` location to first line. Pull request #1471 by SHIBATA
32
- Hiroshi.
33
- * [PathSupport] Handle a regexp path separator. Pull request #1469 by
34
- Samuel E. Giddins.
35
- * Clean up the PathSupport object. Pull request #1094 by Aaron Patterson.
36
- * Join with File::PATH_SEPARATOR in Gem.use_paths. Pull request #1476 by
37
- Samuel E. Giddins.
38
- * Handle when the gem home and gem path arent set in the config file. Pull
39
- request #1478 by Samuel E. Giddins.
40
- * Terminate TimeoutHandler. Pull request #1479 by Nobuyoshi Nakada.
41
- * Remove redundant cache. Pull request #1482 by Eileen M. Uchitelle.
42
- * Freeze `Gem::Version@segments` instance variable. Pull request #1487 by
43
- Ben Dean.
44
- * Gem cleanup is trying to uninstall gems outside GEM_HOME and reporting
45
- an error after it tries. Pull request #1353 by Luis Sagastume.
46
- * Avoid duplicated sources. Pull request #1489 by Luis Sagastume.
47
- * Better description for quiet flag. Pull request #1491 by Luis Sagastume.
48
- * Raise error if find_by_name returns with nil. Pull request #1494 by
49
- Zoltán Hegedüs.
50
- * Find_files only from loaded_gems when using gemdeps. Pull request #1277
51
- by Michal Papis.
52
-
53
- === 2.5.2 / 2016-01-31
54
-
55
- Bug fixes:
56
-
57
- * Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
58
- Zuijlen.
59
- * Handle trailing colons in GEM_PATH, by Damien Robert.
60
- * Improve the Gemfile `gemspec` method, fixing #1204 and #1033. Pull request
61
- #1276 by Michael Papis.
62
- * Warn only once when a gemspec license is invalid. Pull request #1414 by Samuel
63
- E. Giddins.
64
- * Check for exact constants before using them, fixing Ruby bug #11940. Pull
65
- request #1438 by Nobuyoshi Nakada.
66
- * Fix building C extensions on Ruby 1.9.x on Windows. Pull request #1453 by Marie
67
- Markwell.
68
- * Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
69
- Giddins.
70
-
71
- Minor enhancements:
72
-
73
- * Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
74
- Sagastume.
75
- * Allow basic auth to be excluded from `allowed_push_host`. By Josh Lane.
76
- * Add `gem list --exact`, which finds gems by string match instead of regex. Pull
77
- request #1344 by Luis Sagastume.
78
- * Suggest alternatives when gem license is unknown. Pull request #1443 by Samuel
79
- E. Giddins.
80
- * Print a useful error if a binstub expects a newer version of a gem than is
81
- installed. Pull request #1407 by Samuel E. Giddins.
82
- * Allow the (supported) s3:// scheme to be used with `--source`. Pull request
83
- #1416 by Dave Adams.
84
- * Add `--[no-]post-install-message` to `install` and `update`. Pull request #1162
85
- by Josef Šimánek.
86
- * Add `--host` option to `yank`, providing symmetry with `pull`. Pull request
87
- #1361 by Mike Virata-Stone.
88
- * Update bundled Molinillo to 0.4.1. Pull request #1452 by Samuel E. Giddins.
89
- * Allow calling `build` without '.gemspec'. Pull request #1454 by Stephen
90
- Blackstone.
91
- * Add support for `source` option on gems in Gemfile. Pull request #1355 by
92
- Michael Papis.
93
- * Function correctly when string literals are frozen on Ruby 2.3. Pull request
94
- #1408 by Samuel E. Giddins.
95
-
96
- === 2.5.1 / 2015-12-10
97
-
98
- Bug fixes:
99
-
100
- * Ensure platform sorting only uses strings. Affected binary installs on Windows.
101
- Issue #1369 reported by Ryan Atball (among others).
102
- Pull request #1375 by Samuel E. Giddins.
103
- * Revert PR #1332. Unable to reproduce, and nil should be impossible.
104
- * Gem::Specification#to_fullpath now returns .rb extensions when such a file
105
- exists. Pull request #1114 by y-yagi.
106
- * RubyGems now handles Net::HTTPFatalError instead of crashing. Pull
107
- request #1314 by Samuel E. Giddins.
108
- * Updated bundled Molinillo to 0.4.0. Pull request #1322, #1396 by Samuel E.
109
- Giddins.
110
- * Improved performance of spec loading by reducing likelihood of loading the
111
- complete specification. Pull request #1373 by Aaron Patterson.
112
- * Improved caching of requirable files Pull request #1377 by Aaron Patterson.
113
- * Fixed activation of gems with development dependencies. Pull request #1388
114
- by Samuel E. Giddins.
115
- * RubyGems now uses the same Molinillo vendoring strategy as Bundler. Pull
116
- request #1397 by Samuel E. Giddins.
117
- * Fixed documentation of Gem::Requirement.parse. Pull request #1398 by
118
- Juanito Fatas.
119
- * RubyGems no longer warns when a prerelease gem has prerelease dependencies.
120
- Pull request #1399 by Samuel E. Giddins.
121
- * Fixed Gem::Version documentation example. Pull request #1401 by Guilherme
122
- Goettems Schneider.
123
- * Updated documentation links to https://. Pull request #1404 by Suriyaa
124
- Kudo.
125
- * Fixed double word typo. Pull request #1411 by Jake Worth.
126
-
127
- === 2.5.0 / 2015-11-03
128
-
129
- Major enhancements:
130
-
131
- * Added the Gem::Licenses class which provides a set of standard license
132
- identifiers as set by spdx.org. This is now used by the
133
- Gem::Specification#license attribute to try to standardize (though not
134
- enforce) licenses set by gem authors.
135
-
136
- Pull request #1249 by Kyle Mitchell.
137
-
138
- Minor enhancements:
139
-
140
- * Use Molinillo as the resolver library. This is the same resolver as used by
141
- Bundler. Pull request #1189 by Samuel E. Giddins.
142
- * Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
143
- * The parsed gem dependencies file is now available via Gem.gemdeps following
144
- Gem.use_gemdeps. Pull request #1224 by Hsing-Hui Hsu, issue #1213 by
145
- Michal Papis.
146
- * Moved description attribute to recommended for Gem::Specification.
147
- Pull request #1046 by Michal Papis
148
- * Moved `Gem::Indexer#abbreviate` and `#sanitize` to `Gem::Specification`.
149
- Pull request #1145 by Arthur Nogueira Neves
150
- * Cache Gem::Version segments for `#bump` and `#release`.
151
- Pull request #1131 by Matijs van Zuijlen
152
- * Fix edge case in `levenshtein_distance` for comparing longer strings.
153
- Pull request #1173 by Richard Schneeman
154
- * Remove duplication from List#to_a, improving from O(n^2) to O(n) time.
155
- Pull request #1200 by Marc Siegel.
156
- * Gem::Specification.add_specs is deprecated and will be removed from version
157
- 3.0 with no replacement. To add specs, install the gem, then reset the
158
- cache.
159
- * Gem::Specification.add_spec is deprecated and will be removed from version
160
- 3.0 with no replacement. To add specs, install the gem, then reset the
161
- cache.
162
- * Gem::Specification.remove_spec is deprecated and will be removed from version
163
- 3.0 with no replacement. To remove specs, uninstall the gem, then reset the
164
- cache by calling Gem::Specification.reset.
165
- * Call Array#compact before calling Array#uniq for minor speed improvement in
166
- the Gem::Specification#files method.
167
- Pull request #1253 by Marat Amerov.
168
- * Use stringio instead of custom String classes.
169
- Pull request #1250 by Petr Skocik.
170
- * Use URI#host instead of URI#hostname to retain backwards compatibility with
171
- Ruby 1.9.2 and earlier in util library.
172
- Pull request #1288 by Joe Rafaniello.
173
- * Documentation update for gem sources.
174
- Pull request #1324 by Ilya Vassilevsky.
175
- * Documentation update for required_ruby_version.
176
- Pull request #1321 by Matt Patterson.
177
- * Documentation update for gem update.
178
- Pull request #1306 by Tim Blair.
179
- * Emit a warning on SRV resolve failure.
180
- Pull request #1023 by Ivan Kuchin.
181
- * Allow duplicate dependencies between runtime and development.
182
- Pull request #1032 by Murray Steele.
183
- * The gem env command now shows the user installation directory.
184
- Pull request #1343 by Luis Sagastume.
185
- * The Gem::Platform#=== method now treats a nil cpu arch the same as 'universal'.
186
- Pull request #1356 by Daniel Berger.
187
- * Improved memory performance in Gem::Specification.traverse. Pull request
188
- #1188 by Aaron Patterson.
189
- * RubyGems packages now support symlinks. Pull request #1209 by Samuel E.
190
- Giddins.
191
- * RubyGems no longer outputs mkmf.log if it does not exist. Pull request
192
- #1222 by Andrew Hooker.
193
- * Added Bitrig platform. Pull request #1233 by John C. Vernaleo.
194
- * Improved error message for first-time RubyGems developers. Pull request
195
- #1241 by André Arko
196
- * Improved performance of Gem::Specification#load with cached specs. Pull
197
- request #1297 by Samuel E. Giddins.
198
- * Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
199
- Agis Anastasopoulos.
200
-
201
- Bug fixes:
202
-
203
- * Fixed Rake homepage url in example for Gem::Specification#homepage.
204
- Pull request #1171 by Arthur Nogueira Neves
205
- * Don't crash if partially uninstalled gem can't be found.
206
- Pull request #1283 by Cezary Baginski.
207
- * Test warning cleanup.
208
- Pull request #1298 by Samuel E. Giddins.
209
- * Documentation fix for GemDependencyAPI.
210
- Pull request #1308 by Michael Papis.
211
- * Fetcher now ignores ENOLCK errors in single threaded environments. This
212
- handles an issue with gem installation on NFS as best we can. Addresses
213
- issue #1176 by Ryan Moore.
214
- Pull request #1327 by Daniel Berger.
215
- * Fix some path quoting issues in the test suite.
216
- Pull request #1328 by Gavin Miller.
217
- * Fix NoMethodError in running ruby processes when gems are uninstalled.
218
- Pull request #1332 by Peter Drake.
219
- * Fixed a potential NoMethodError for gem cleanup.
220
- Pull request #1333 by Peter Drake.
221
- * Fixed gem help bug.
222
- Issue #1352 reported by bogem, pull request #1357 by Luis Sagastume.
223
- * Remove temporary directories after tests finish. Pull request #1181 by
224
- Nobuyoshi Nokada.
225
- * Update links in RubyGems documentation. Pull request #1185 by Darío Hereñú.
226
- * Prerelease gem executables can now be run. Pull request #1186 by Samuel E.
227
- Giddins.
228
- * Updated RubyGems travis-ci ruby versions. Pull request #1187 by Samuel E.
229
- Giddins.
230
- * Fixed release date of RubyGems 2.4.6. Pull request #1190 by Frieder
231
- Bluemle.
232
- * Fixed bugs in gem activation. Pull request #1202 by Miklós Fazekas.
233
- * Fixed documentation for `gem list`. Pull request #1228 by Godfrey Chan.
234
- * Fixed #1200 history entry. Pull request #1234 by Marc Siegel.
235
- * Fixed synchronization issue when resetting the Gem::Specification gem list.
236
- Pull request #1239 by Samuel E. Giddins.
237
- * Fixed running tests in parallel. Pull request #1257 by SHIBATA Hiroshi.
238
- * Fixed running tests with `--program-prefix` or `--program-suffix` for ruby.
239
- Pull request #1258 by Shane Gibbs.
240
- * Fixed Gem::Specification#to_yaml. Pull request #1262 by Hiroaki Izu.
241
- * Fixed taintedness of Gem::Specification#raw_require_paths. Pull request
242
- #1268 by Sam Ruby.
243
- * Fixed sorting of platforms when installing gems. Pull request #1271 by
244
- nonsequitur.
245
- * Use `--no-document` over deprecated documentation options when installing
246
- dependencies on travis. Pull request #1272 by takiy33.
247
- * Improved support for IPv6 addresses in URIs. Pull request #1275 by Joe
248
- Rafaniello.
249
- * Spec validation no longer crashes if a file does not exist. Pull request
250
- #1278 by Samuel E. Giddins.
251
- * Gems can now be installed within `rescue`. Pull request #1282 by Samuel E.
252
- Giddins.
253
- * Increased Diffie-Hellman key size for tests for modern OpenSSL. Pull
254
- request #1290 by Vít Ondruch.
255
- * RubyGems handles invalid config files better. Pull request #1367 by Agis
256
- Anastasopoulos.
257
-
258
- === 2.4.8 / 2015-06-08
259
-
260
- Bug fixes:
261
-
262
- * Tightened API endpoint checks for CVE-2015-3900
263
-
264
- === 2.4.7 / 2015-05-14
265
-
266
- Bug fixes:
267
-
268
- * Limit API endpoint to original security domain for CVE-2015-3900.
269
- Fix by claudijd
270
-
271
- === 2.4.6 / 2015-02-05
272
-
273
- Bug fixes:
274
-
275
- * Fixed resolving gems with both upper and lower requirement boundaries.
276
- Issue #1141 by Jakub Jirutka.
277
- * Moved extension directory after require_paths to fix missing constant bugs
278
- in some gems with C extensions. Issue #784 by André Arko, pull request
279
- #1137 by Barry Allard.
280
- * Use Gem::Dependency#requirement when adding a dependency to an existing
281
- dependency instance. Pull request #1101 by Josh Cheek.
282
- * Fixed warning of shadowed local variable in Gem::Specification. Pull request
283
- #1109 by Rohit Arondekar
284
- * Gem::Requirement should always sort requirements before coercion to Hash.
285
- Pull request #1139 by Eito Katagiri.
286
- * The `gem open` command should change the current working directory before
287
- opening the editor. Pull request #1142 by Alex Wood.
288
- * Ensure quotes are stripped from the Windows launcher script used to install
289
- gems. Pull request #1115 by Youngjun Song.
290
- * Fixed errors when writing to NFS to to 0444 files. Issue #1161 by Emmanuel
291
- Hadoux.
292
- * Removed dead code in Gem::StreamUI. Pull request #1117 by mediaslave24.
293
- * Fixed typos. Pull request #1096 by hakeda.
294
- * Relaxed CMake dependency for RHEL 6 and CentOS 6. Pull request #1124 by Vít
295
- Ondruch.
296
- * Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
297
-
298
- === 2.4.5 / 2014-12-03
299
-
300
- Bug fixes:
301
-
302
- * Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
303
- request #1060 by unak.
304
- * RubyGems no longer attempts to look up gems remotely with the --local flag.
305
- Pull request #1084 by Jeremy Evans.
306
- * Executable stubs use the correct gem version when RUBYGEMS_GEMDEPS is
307
- active. Issue #1072 by Michael Kaiser-Nyman.
308
- * Fixed handling of pinned gems in lockfiles with versions. Issue #1078 by
309
- Ian Ker-Seymer.
310
- * Fixed handling of git@example:gem.git URIs. Issue #1054 by Mogutan Mogu.
311
- * Fixed handling of platforms retrieved from the dependencies API. Issue
312
- #1058 and patch suggestion by tux-mind.
313
- * RubyGems now suggests a copy-pasteable `gem pristine` command when
314
- extensions are missing. Pull request #1057 by Shannon Skipper.
315
- * Improved errors for long file names when packaging. Pull request #1016 by
316
- Piotrek Bator.
317
- * `gem pristine` now skips gems cannot be found remotely. Pull request #1064
318
- by Tuomas Kareinen.
319
- * `gem pristine` now caches gems to the proper directory. Pull request #1064
320
- by Tuomas Kareinen.
321
- * `gem pristine` now skips bundled gems properly. Pull request #1064 by
322
- Tuomas Kareinen.
323
- * Improved interoperability of Vagrant with RubyGems. Pull request #1057 by
324
- Vít Ondruch.
325
- * Renamed CONTRIBUTING to CONTRIBUTING.rdoc to allow markup. Pull request
326
- #1090 by Roberto Miranda.
327
- * Switched from #partition to #reject as only one collection is used. Pull
328
- request #1074 by Tuomas Kareinen.
329
- * Fixed installation of gems on systems using memory-mapped files. Pull
330
- request #1038 by Justin Li.
331
- * Fixed bug in Gem::Text#min3 where `a == b < c`. Pull request #1026 by
332
- fortissimo1997.
333
- * Fixed uninitialized variable warning in BasicSpecification. Pull request
334
- #1019 by Piotr Szotkowski.
335
- * Removed unneeded exception handling for cyclic dependencies. Pull request
336
- #1043 by Jens Wille.
337
- * Fixed grouped expression warning. Pull request #1081 by André Arko.
338
- * Fixed handling of platforms when writing lockfiles.
339
-
340
- === 2.4.4 / 2014-11-12
341
-
342
- Bug fixes:
343
-
344
- * Add alternate Root CA for upcoming certificate change. Fixes #1050 by
345
- Protosac
346
-
347
- === 2.4.3 / 2014-11-10
348
-
349
- Bug fixes:
350
-
351
- * Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
352
- * Fix typo in platform= docs. Pull request #1048 by @jasonrclark
353
- * Add root SSL certificates for upcoming certificate change. Fixes #1050 by
354
- Protosac
355
-
356
- === 2.4.2 / 2014-10-01
357
-
358
- This release was sponsored by Ruby Central.
359
-
360
- Bug fixes:
361
-
362
- * RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
363
- voelzemo.
364
- * Added support for missing git_source method in the gem dependencies API.
365
- * Fixed handling of git gems with an alternate install directory.
366
- * Lockfiles will no longer be truncated upon resolution errors.
367
- * Fixed messaging for `gem owner -a`. Issue #1004 by Aaron Patterson, Ryan
368
- Davis.
369
- * Removed meaningless ensure. Pull request #1003 by gogotanaka.
370
- * Improved wording of --source option help. Pull request #989 by Jason Clark.
371
- * Empty build_info files are now ignored. Issue #903 by Adan Alvarado.
372
- * Gem::Installer ignores dependency checks when installing development
373
- dependencies. Issue #994 by Jens Willie.
374
- * `gem update` now continues after dependency errors. Issue #993 by aaronchi.
375
- * RubyGems no longer warns about semantic version dependencies for the 0.x
376
- range. Issue #987 by Jeff Felchner, pull request #1006 by Hsing-Hui Hsu.
377
- * Added minimal lock to allow multithread installation of gems. Issue #982
378
- and pull request #1005 by Yorick Peterse
379
- * RubyGems now considers prerelease dependencies as it did in earlier versions
380
- when --prerelease is given. Issue #990 by Jeremy Tryba.
381
- * Updated capitalization in README. Issue #1010 by Ben Bodenmiller.
382
- * Fixed activating gems from a Gemfile for default gems. Issue #991 by khoan.
383
- * Fixed windows stub script generation for Cygwin. Issue #1000 by Brett
384
- DiFrischia.
385
- * Allow gem bindir and ruby.exe to live in separate diretories. Pull request
386
- #942 by Ian Flynn.
387
- * Fixed handling of gemspec in gem dependencies files to match Bundler
388
- behavior. Issue #1020 by Michal Papis.
389
- * Fixed `gem update` when updating to prereleases. Issue #1028 by Santiago
390
- Pastorino.
391
- * RubyGems now fails immediately when a git reference cannot be found instead
392
- of spewing git errors. Issue #1031 by Michal Papis
393
-
394
- === 2.4.1 / 2014-07-17
395
-
396
- Bug fixes:
397
-
398
- * RubyGems can now be updated on Ruby implementations that do not support
399
- vendordir in RbConfig::CONFIG. Issue #974 by net1957.
400
-
401
- === 2.4.0 / 2014-07-16
402
-
403
- Minor enhancements:
404
-
405
- * The contents command now supports a --show-install-dir option that shows
406
- only the directory the gem is installed in. Feature request #966 by Akinori
407
- MUSHA.
408
- * Added a --build-root option to the install command for packagers. Pull
409
- request #965 by Marcus Rückert.
410
- * Added vendor gem support to RubyGems. Package managers may now install gems
411
- in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
412
- Marcus Rückert.
413
-
414
- Bug fixes:
415
-
416
- * Kernel#gem now respects the prerelease flag when activating gems.
417
- Previously this behavior was undefined which could lead to bugs when a
418
- prerelease version was unintentionally activated. Bug #938 by Joe Ferris.
419
- * RubyGems now prefers gems from git over installed gems. This allows gems
420
- from git to override an installed gem with the same name and version. Bug
421
- #944 by Thomas Kriechbaumer.
422
- * Fixed handling of git gems in a lockfile with unversioned dependencies. Bug
423
- #940 by Michael Kaiser-Nyman.
424
- * The ruby directive in a gem dependencies file is ignored when installing.
425
- Bug #941 by Michael Kaiser-Nyman.
426
- * Added open to list of builtin commands (`gem open` now works). Reported by
427
- Espen Antonsen.
428
- * `gem open` now works with command-line editors. Pull request #962 by Tim
429
- Pope.
430
- * `gem install -g` now respects `--conservative`. Pull request #950 by Jeremy
431
- Evans.
432
- * RubyGems releases announcements now now include checksums. Bug #939 by
433
- Alexander E. Fischer.
434
- * RubyGems now expands ~ in $PATH when checking if installed executables will
435
- be runnable. Pull request #945 by Alex Talker.
436
- * Fixed `gem install -g --explain`. Issue #947 by Luis Lavena. Patch by
437
- Hsing-Hui Hsu.
438
- * RubyGems locks less during gem activation. Pull request #951 by Aaron
439
- Patterson and Justin Searls, #969 by Jeremy Tryba.
440
- * Kernel#gem is now thread-safe. Pull request #967 by Aaron Patterson.
441
- * RubyGems now handles spaces in directory names for some parts of extension
442
- building. Pull request #949 by Tristan Hill.
443
- * RubyGems no longer defines an empty Date class. Pull Request #948 by Benoit
444
- Daloze.
445
- * RubyGems respects --document options for `gem update` again. Bug 946 by
446
- jonforums. Patch by Hsing-Hui Hsu.
447
- * RubyGems generates documentation again with --ignore-dependencies. Bug #961
448
- by Pulfer.
449
- * RubyGems can install extensions across partitions now. Pull request #970 by
450
- Michael Scherer.
451
- * `-s` is now short for `--source` which resolves an ambiguity with
452
- --no-suggestions. Pull request #955 by Alexander Kahn.
453
- * Added extra test for ~> for 0.0.X versions. Pull request #958 by Mark
454
- Lorenz.
455
- * Fixed typo in gem updated help. Pull request #952 by Per Modin.
456
- * Clarified that the gem description should not be excessively long. Part of
457
- bug #956 by Renier Morales.
458
- * Hid documentation of outdated test_files related methods in Specification.
459
- Guides issue #90 by Emil Soman.
460
- * RubyGems now falls back to the old index if the rubygems.org API fails
461
- during gem resolution.
462
-
463
-
464
- === 2.3.0 / 2014-06-10
465
-
466
- Minor enhancements:
467
-
468
- * Added the `open` command which allows you to inspect the source of a gem
469
- using your editor.
470
- Issue #789 by Mike Perham. Pull request #804 by Vitali F.
471
- * The `update` command shows a summary of which gems were and were not
472
- updated. Issue #544 by Mark D. Blackwell.
473
- Pull request #777 by Tejas Bubane.
474
- * Improved "could not find 'gem'" error reporting. Pull request #913 by
475
- Richard Schneeman.
476
- * Gem.use_gemdeps now accepts an argument specifying the path of the gem
477
- dependencies file. When the file is not found an ArgumentError is raised.
478
- * Writing a .lock file for a gem dependencies file is now controlled by the
479
- --[no-]lock option. Pull reuqest #774 by Jeremy Evans.
480
- * Suggestion of alternate names and spelling corrections during install can be
481
- suppressed with the --no-suggestions option. Issue #867 by Jimmy Cuadra.
482
- * Added mswin64 support. Pull request #881 by U. Nakamura.
483
- * A gem is installable from an IO again (as in RubyGems 1.8.x and older).
484
- Pull request #716 by Xavier Shay.
485
- * RubyGems no longer attempts to build extensions during activation. Instead
486
- a warning is issued instructing you to run `gem pristine` which will build
487
- the extensions for the current platform. Issue #796 by dunric.
488
- * Added Gem::UserInteraction#verbose which prints when the --verbose option is
489
- given. Pull request #811 by Aaron Patterson.
490
- * RubyGems can now fetch gems from private repositories using S3. Pull
491
- request #856 by Brian Palmer.
492
- * Added Gem::ConflictError subclass of Gem::LoadError so you can distinguish
493
- conflicts from other problems. Pull request #841 by Aaron Patterson.
494
- * Cleaned up unneeded load_yaml bootstrapping in Rakefile. Pull request #815
495
- by Zachary Scott.
496
- * Improved performance of conflict resolution. Pull request #842 by Aaron
497
- Patterson.
498
- * Add documentation of "~> 0" to Gem::Version. Issue #896 by Aaron Suggs.
499
- * Added CONTRIBUTING file. Pull request #849 by Mark Turner.
500
- * Allow use of bindir in windows_stub_script in .bat
501
- Pull request #818 by @unak and @nobu
502
- * Use native File::PATH_SEPARATOR and remove $ before gem env on
503
- Gem::Dependency#to_specs. Pull request #915 by @parkr
504
- * RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
505
- Benjamin Fleischer.
506
-
507
- Bug fixes:
508
-
509
- * RubyGems now only fetches the latest specs to find misspellings which speeds
510
- up gem suggestions. Pull request #808 by Aaron Patterson.
511
- * The given .gem is installed again when multiple versions of the same gem
512
- exist in the current directory. Bug #875 by Prem Sichanugrist.
513
- * Local gems are preferred by name over remote gems again. Bug #834 by
514
- jonforums.
515
- * RubyGems can install local prerelease gems again. Pull request #866 by
516
- Aaron Patterson. Issue #813 by André Arko.
517
- * RubyGems installs development dependencies correctly again. Issue #893 by
518
- Jens Wille.
519
- * RubyGems only installs prerelease versions when they are requested again.
520
- Issue #853 by Seth Vargo, special thanks to Zachary Scott and Ben Moss.
521
- Issue #884 by Nathaniel Bibler.
522
- * Fixed RubyGems list and search command help. Pull request #905 and #928 by
523
- Gabriel Gilder.
524
- * The list of gems to uninstall is always sorted now. Bug #918 by postmodern.
525
- * The update command only updates exactly matching gem names now. Bug #919 by
526
- postmodern.
527
- * Gem::Server now supports prerelease versions. Bug #857 by Marcelo Alvim.
528
- * RubyGems no longer raises an exception immediately when gems are missing
529
- with RUBYGEMS_GEMDEPS. A warning is printed instead. Issue #886 by Michael
530
- Kaiser-Nyman.
531
- * Commands using the rubygems.org API no longer try to sign-in when a
532
- non-rubygems API key has been chosen. Bug #826 by Ben Sedat.
533
- * Updated documentation of Gem::Specification#executables to indicate that
534
- only ruby scripts are allowed. Bug #830 by Geoff Nixon.
535
- * Gem dependency API supports multiple platforms for #platform and #platforms
536
- now. Bug #821 by johnny5-.
537
- * Gem dependency API supports lockfiles without explicit sources. Bug #820 by
538
- johnny5-.
539
- * Gem dependency API supports lockfiles with multiple sources. Bug #822 by
540
- johnny5-, bug #851 by sumit shah.
541
- * Gem dependency API supports lockfiles with git sources using branch, tag and
542
- ref. Bug #822 by johnny5-, #931 by Christoph Blank.
543
- * Gem dependency API no longer raises an exception when a gem does not exist
544
- in one of the configured sources. Bug #897 by Michael Kaiser-Nyman.
545
- * Gem dependency API no longer lists development dependencies in the lockfile.
546
- Bug #768 by Diego Viola, #916 by Santiago Pastorino.
547
- * SSL configuration entries in ~/.gemrc are properly round-tripped. Bug #837
548
- by Noah Luck Easterly.
549
- * The environment command now shows the system configuration directory where
550
- the all-users gemrc lives. Bug #827 by Ben Langfeld.
551
- * Improved speed of conflict checking when activating gems. Pull request #843
552
- by Aaron Patterson.
553
- * Improved speed of levenshtein distance for gem suggestion misspellings.
554
- Pull requests #809, #812 by Aaron Patterson.
555
- * Restored persistent connections. Pull request #869 by Aaron Patterson.
556
- * Reduced requests when fetching gems with the bundler API. Pull request #773
557
- by Charlie Somerville.
558
- * Reduced dependency prefetching to improve install speed. Pull requests
559
- #871, #872 by Matthew Draper.
560
- * RubyGems now avoids net/http auto-proxy detection. Issue #824 by HINOHARA
561
- Hiroshi.
562
- * Removed conversion of Gem::List (used for debugging installs) to unless
563
- necessary. Pull request #870 by Aaron Patterson.
564
- * RubyGems now prints release notes from the current release. Bug #814 by
565
- André Arko.
566
- * RubyGems allows installation of unsigned gems again with -P MediumSecurity
567
- and lower. Bug #859 by Justin S. Collins.
568
- * Fixed typo in Jim Weirich's name. Ruby pull request #577 by Mo Khan.
569
- * Fixed typo in Gem.datadir documentation. Pull request #868 by Patrick
570
- Jones.
571
- * Fixed File.exists? warnings. Pull request #829 by SHIBATA Hiroshi.
572
- * Fixed show_release_notes test for LANG=C. Issue #862 by Luis Lavena.
573
- * Fixed Gem::Package from IO tests on windows. Patch from issue #861 by Luis
574
- Lavena.
575
- * Check for nil extensions as BasicSpecification does not initialize them.
576
- Pull request #882 by André Arko.
577
- * Fixed Gem::BasicSpecification#require_paths receives a String for
578
- @require_paths. Pull requrest #904 by @danielpclark
579
- * Fixed circular require warnings. Bug #908 by Zachary Scott.
580
- * Gem::Specification#require_paths can no longer accidentally be an Array.
581
- Pull requests #904, #909 by Daniel P. Clark.
582
- * Don't build extensions if `build_dir/extensions` isn't writable.
583
- Pull request #912 by @dunric
584
- * Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
585
- #852 by Vít Ondruch.
586
-
587
- === 2.2.5 / 2015-06-08
588
-
589
- Bug fixes:
590
-
591
- * Tightened API endpoint checks for CVE-2015-3900
592
-
593
- === 2.2.4 / 2015-05-14
594
-
595
- Bug fixes:
596
-
597
- * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
598
- Fix by claudijd
599
-
600
- === 2.2.3 / 2014-12-21
601
-
602
- Bug fixes:
603
-
604
- * Backport: Add alternate Root CA for upcoming certificate change.
605
- Fixes #1050 by Protosac
606
-
607
- === 2.2.2 / 2014-02-05
608
-
609
- Bug fixes:
610
-
611
- * Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
612
- Nakada.
613
- * Removed double requests in RemoteFetcher#cache_update_path to improve remote
614
- install speed. Pull request #772 by Charlie Somerville.
615
- * The mkmf.log is now placed next to gem_make.out when building extensions.
616
- * `gem install -g --local` no longer accesses the network. Bug #776 by Jeremy
617
- Evans.
618
- * RubyGems now correctly handles URL passwords with encoded characters. Pull
619
- request #781 by Brian Fletcher.
620
- * RubyGems now correctly escapes URL characters. Pull request #788 by Brian
621
- Fletcher.
622
- * RubyGems can now unpack tar files where the type flag is not given. Pull
623
- request #790 by Cody Russell.
624
- * Typo corrections. Pull request ruby/ruby#506 by windwiny.
625
- * RubyGems now uses both the default certificates and ssl_ca_cert instead of
626
- one or the other. Pull request #795 by zebardy.
627
- * RubyGems can now use the bundler API against hosted gem servers in a
628
- directory. Pull request #801 by Brian Fletcher.
629
- * RubyGems bin stubs now ignore non-versions. This allows RubyGems bin stubs
630
- to list file names like "_foo_". Issue #799 by Postmodern.
631
- * Restored behavior of Gem::Version::new when subclassed. Issue #805 by
632
- Sergio Rubio.
633
-
634
- === 2.2.1 / 2014-01-06
635
-
636
- Bug fixes:
637
-
638
- * Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
639
- #767 by Diego Viola.
640
- * RubyGems now displays which gem couldn't be uninstalled from the home
641
- directory. Pull request #757 by Michal Papis.
642
- * Removed unused method Gem::Resolver#find_conflict_state. Pull request #759
643
- by Smit Shah.
644
- * Fixed installing gems from local files without dependencies. Issue #760 by
645
- Arash Mousavi, pull request #764 by Tim Moore.
646
- * Removed TODO about syntax that works in Ruby 1.8.7. Pull request #765 by
647
- Benjamin Fleischer.
648
- * Switched Gem.ruby_api_version to use RbConfig::CONFIG['ruby_version'] which
649
- has the same value but is overridable by packagers through
650
- --with-ruby-version= when configuring ruby. Bug #770 by Jeremy Evans.
651
- * RubyGems now prefers the bundler API for `gem install` to reduce HTTP
652
- requests. (This change was intended for RubyGems 2.2.0 but was missed.)
653
- This should address bug #762 by Dan Peterson and bug #766 by mipearson.
654
- * Added Gem::BasicSpecification#source_paths so documentation or analysis
655
- tools can work properly as require_paths no longer returns extension source
656
- directories. Bug #758 Vít Ondruch.
657
- * Gem.read_binary can read read-only files again. This caused file://
658
- repositories to stop working. Bug #761 by John Anderson.
659
- * Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
660
- request #763 by James Mead
661
-
662
- === 2.2.0 / 2013-12-26
663
-
664
- Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
665
- RubyGems as it was prepared for the 2.2.0 release.
666
-
667
- Major enhancements:
668
-
669
- * RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
670
- rubygems executables are started and uses the found dependencies. This
671
- means `rake` will work similar to `bundle exec rake`. To enable this set
672
- the `RUBYGEMS_GEMDEPS` environment variable to the location of your
673
- dependencies file.
674
-
675
- See Gem::use_gemdeps for further details.
676
-
677
- * A RubyGems directory may now be shared amongst multiple ruby versions. Upon
678
- activation RubyGems will automatically compile missing extensions for the
679
- current platform when the built objects are missing. Issue #596 by Michal
680
- Papis
681
-
682
- By default different platforms do not share gem install locations so this
683
- must be configured by setting GEM_HOME to a common directory. Some gems use
684
- fixed paths for requiring extensions and are not compatible with sharing gem
685
- directories.
686
-
687
- The default sharing location may be configured by RubyGems packagers through
688
- Gem.default_ext_dir_for. Pull Request #744 by Vít Ondruch.
689
-
690
- Minor enhancements:
691
-
692
- * RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
693
- prevent an accidental push to a public repository (such as rubygems.org).
694
- If you have private gems you should set this value in your gem specification
695
- metadata. Pull request #603 by Seamus Abshere.
696
- * `gem list` now shows results for multiple arguments. Pull request #604 by
697
- Zach Rabinovich.
698
- * `gem pristine --extensions` will restore only gems with extensions. Issue
699
- #619 by Postmodern.
700
- * Gem::Specification#files is now sorted. Pull request #612 by Justin George.
701
- * For `gem list` and friends, "LOCAL" and "REMOTE" headers are omitted if
702
- only local or remote gem information is requested with --quiet. Pull
703
- request #615 by Michal Papis.
704
- * Added Gem::Specification#full_require_paths which is like require_paths, but
705
- returns a fully-qualified results. Pull request #632 by Vít Ondruch.
706
- * RubyGems now looks for the https_proxy environment variable for https://
707
- sources. RubyGems will fall back to http_proxy if there is no https_proxy.
708
- Issue #610 by mkristian.
709
- * RubyGems now creates directories in .gem files. Issue #631 by marksolaris.
710
- * RubyGems raises an exception when a specification includes its gem. Issue
711
- #623 by notEthan.
712
- * RubyGems now displays relevant release note information when updating
713
- RubyGems. Issue #647 by Trevor Wennblom.
714
- * Deprecated Gem::Installer::ExtensionBuildError in favor of
715
- Gem::Ext::BuildError. The old constant is an alias for the new constant.
716
- * When extensions are built the gem_make.out file is always written now, even
717
- on success. This will help with debugging bad builds that report success.
718
- * If a specification fails to validate RubyGems shows a link to the
719
- specification reference guide. Issue #656 by Markus Heiler.
720
- * When using `gem install -g`, RubyGems now detects the presence of an
721
- Isolate, Gemfile or gem.deps.rb file.
722
- * Added Gem::StubSpecification#stubbed? to help determine if a user should run
723
- `gem pristine` to speed up gem loading. Pull request #694 and #701 by Jon
724
- Leighton.
725
- * RubyGems now warns when a gem has a pessimistic version dependency that may
726
- be too strict.
727
- * RubyGems now warns when a gem has an open-ended dependency.
728
- * RubyGems now raises an exception when a dependency for a gem is defined
729
- twice.
730
- * Marked the license specification attribute as recommended. Pull request
731
- #713 by Benjamin Fleischer.
732
- * RubyGems uses io/console instead of `stty` when available. Pull request
733
- #740 by Nobuyoshi Nakada
734
- * Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
735
- Request #755 by strzibny.
736
-
737
- Bug fixes:
738
-
739
- * RubyGems now returns an error status when any file given to `gem which`
740
- cannot be found. Ruby bug #9004 by Eugene Vilensky.
741
- * Fixed command escaping when building rake extensions. Pull request #721 by
742
- Dmitry Ratnikov.
743
- * Fixed uninstallation of gems when GEM_HOME is a relative directory. Issue
744
- #708 by Ryan Davis.
745
- * Default gems are now ignored by Gem::Validator#alien. Issue #717 by David
746
- Bahar.
747
- * Fixed typos in RubyGems. Pull requests #723, #725, #731 by Akira Matsuda,
748
- pull request #736 by Leo Gallucci, pull request #746 by DV Suresh.
749
- * RubyGems now holds exclusive locks on cached gem files to prevent incorrect
750
- updates. Pull Request #737 by Smit Shah
751
- * Improved speed of `gem install --ignore-dependencies`. Patch by Terence
752
- Lee.
753
-
754
- === 2.1.11 / 2013-11-12
755
-
756
- Bug fixes:
757
-
758
- * Gem::Specification::remove_spec no longer checks for existence of the spec
759
- to be removed. Issue #698 by Tiago Macedo.
760
- * Restored wildcard handling when installing gems. Issue #697 by Chuck Remes.
761
- * Added DigiCert High Assurance EV Root CA certificate for the cloudfront.net
762
- certificate change.
763
- * The Gem::RemoteFetcher tests now choose the test server port more reliably.
764
- Pull Request #706 by akr.
765
-
766
- === 2.1.10 / 2013-10-24
767
-
768
- Bug fixes:
769
-
770
- * Use class check instead of :version method check when creating Gem::Version
771
- objects. Fixes #674 by jkanywhere.
772
- * Fail during `gem update` when an error occurs checking for newer versions.
773
- This means RubyGems no longer reports "nothing to update" when it cannot
774
- communicate with the server. Issue #688 by Jimmy Dee.
775
- * Allow installation of gems when the home directory does not exist. Issue
776
- #689 by Laurence Rowe
777
- * Fix updating gems which have multiple platforms. Issue #693 by Ookami
778
- Kenrou.
779
- * The gem server now uses user-provided directories. Issue #696 by Marcelo
780
- Alvim.
781
- * Improved resolution of gems when specific versions have conflicting
782
- dependencies.
783
- * RubyGems installs local gems regardless of platform again. Issue #695
784
- * The --ignore-dependencies option for gem installation works again. Issue
785
- #695
786
-
787
- === 2.1.9 / 2013-10-14
788
-
789
- Bug fixes:
790
-
791
- * Reduce sorting when fetching specifications. This speeds up the update and
792
- outdated commands, and others. Issue #657 by windwiny.
793
- * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
794
- Masahiro Tomita, Issue #668 by Kouhei Sutou.
795
-
796
- === 2.1.8 / 2013-10-10
797
-
798
- Bug fixes:
799
-
800
- * Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
801
- * Files starting with "." in the root directory are installed again. Issue
802
- #680 by Ivo Wever, Pull Request #681 by Jeremy Evans.
803
- * The index generator no longer indexes default gems. Issue #661 by
804
- Jeremy Hinegardner.
805
-
806
- === 2.1.7 / 2013-10-09
807
-
808
- Bug fixes:
809
-
810
- * `gem sources --list` now displays a list of sources. Pull request #672 by
811
- Nathan Marley.
812
- * RubyGems no longer alters Gem::Specification.dirs when installing. Pull
813
- Request #670 by Vít Ondruch
814
- * Use RFC 2616-compatible time in HTTP headers. Pull request #655 by Larry
815
- Marburger.
816
- * RubyGems now gives a more descriptive message for missing licenses on
817
- validation. Issue #656 by Markus Heiler.
818
- * Expand unpack destination directory. This fixes problems when File.realpath
819
- is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
820
-
821
- === 2.1.6 / 2013-10-08
822
-
823
- Bug fixes:
824
-
825
- * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
826
- #665 by emeyekayee. Fixes #671 by jonforums.
827
- * Remove redundant built-in certificates not needed for https://rubygems.org
828
- Fixes #654 by Vít Ondruch.
829
- * Added test for missing certificates for https://s3.amazonaws.com or
830
- https://rubygems.org. Pull request #673 by Hannes Georg.
831
- * RubyGems now allows a Pathname for Kernel#require like the built-in
832
- Kernel#require. Pull request #663 by Aaron Patterson.
833
- * Required rbconfig in Gem::ConfigFile for Ruby 1.9.1 compatibility. (Ruby
834
- 1.9.1 is no longer receiving security fixes, so please update to a newer
835
- version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
836
- Thomas Sänger.
837
-
838
- === 2.1.5 / 2013-09-24
839
-
840
- Security fixes:
841
-
842
- * RubyGems 2.1.4 and earlier are vulnerable to excessive CPU usage due to a
843
- backtracking in Gem::Version validation. See CVE-2013-4363 for full details
844
- including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
845
- 1.8.23.2 (for Ruby 1.9.3).
846
-
847
- === 2.1.4 / 2013-09-17
848
-
849
- Bug fixes:
850
-
851
- * `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
852
- #650 by Kyle (remkade).
853
- * Fixed uninstalling gems installed in the home directory (as in
854
- `--user-install`). Issue #653 by Lin Jen-Shin.
855
-
856
- === 2.1.3 / 2013-09-12
857
-
858
- Bug fixes:
859
-
860
- * Gems with files entries starting with "./" no longer install 0 files. Issue
861
- #644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
862
-
863
- === 2.1.2 / 2013-09-11
864
-
865
- Bug fixes:
866
-
867
- * Restore concurrent requires following the fix for ruby bug #8374. Pull
868
- request #637 and issue #640 by Charles Nutter.
869
- * Gems with extensions are now installed correctly when the --install-dir
870
- option is used. Issue #642 by Lin Jen-Shin.
871
- * Gem fetch now fetches the newest (not oldest) gem when --version is given.
872
- Issue #643 by Brian Shirai.
873
-
874
- === 2.1.1 / 2013-09-10
875
-
876
- Bug fixes:
877
-
878
- * Only matching gems matching your local platform are considered for
879
- installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
880
-
881
- === 2.1.0 / 2013-09-09
882
-
883
- Security fixes:
884
-
885
- * RubyGems 2.0.7 and earlier are vulnerable to excessive CPU usage due to a
886
- backtracking in Gem::Version validation. See CVE-2013-4287 for full details
887
- including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
888
- 1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
889
-
890
- Major enhancements:
891
-
892
- * RubyGems uses a new dependency resolver for gem installation which works
893
- similar to the bundler resolver. The new resolver can resolve conflicts the
894
- previous resolver could not and offers improved diagnostics when conflicts
895
- are discovered.
896
-
897
- Minor enhancements:
898
-
899
- * RubyGems now has improved platform matching for the ARM architecture. Gems
900
- built with a CPU of "arm" will match any specific ARM CPU. See `gem help
901
- platform` for further details. Fixes #532 by Kim Burgestrand.
902
- * The --version option now accepts compound requirements the same as in a gem
903
- dependency. The following invocation will install rails between 4.0.0.beta
904
- and 4.2:
905
-
906
- gem install rails -v '>= 4.0.0.beta, < 4.2'
907
-
908
- Fixes #531 by Gary S. Weaver
909
- * `gem clean` now allows `-n` as an alias for `--dryrun`. Pull Request #517
910
- by Gastón Ramos
911
- * Added `gem update --system` to `gem help`. Pull Request #514 by Vince
912
- Wadhwani
913
- * Added PATH to `gem env` output. Pull Request #490 by Michal Papis
914
- * Added --host option to `gem owner` to match other commands using the
915
- gemcutter API. Pull Request #462 and issue #461 by Hugo Lopes Tavares
916
- * Added --abort-on-dependent to `gem uninstall`. This will abort instead of
917
- asking to uninstall a gem that is depended upon by another gem. Pull
918
- request #549 by Philip Arndt.
919
- * RubyGems no longer alters Gem::Specification.dirs when installing. Based on
920
- Pull Request #452 by Vít Ondruch
921
- * RubyGems uses ENV['MAKE'] or ENV['make'] over rbconfig.rb's make if present.
922
- Pull Request #443 by Erik Hollensbe
923
- * RubyGems can now save remote source cache files in an alternate directory
924
- controlled by `ENV["GEM_SPEC_CACHE"]`. Pull Request #489 by Michal Papis
925
- * Generated private keys are now encrypted. Pull Request #453 by pietro
926
- * Separated Gem::Request from Gem::RemoteFetcher. Pull Request #283 by Steve
927
- Klabnik.
928
- * RubyGems indicates when a .gem's content is corrupt while verifying. Bug
929
- #519 by William T Nelson.
930
- * Refactored common installer setup. Pull request #520 by Gastón Ramos
931
- * Moved activation tests to Gem::Specification. Pull request #521 by Gastón
932
- Ramos
933
- * When a --version option with a prerelease version is given RubyGems
934
- automatically enables prerelease versions but only the last version is
935
- used. If the first version is a prerelease version this is no longer sticky
936
- unless an explicit --[no-]prerelease was also given. Fixes part of #531.
937
- * RubyGems now supports an SSL client certificate. Pull request #550 by
938
- Robert Kenny.
939
- * RubyGems now suggests how to fix permission errors. Pull request #553 by
940
- Odin Dutton.
941
- * Added support for installing a gem as default gems for alternate ruby
942
- implementations. Pull request #566 by Charles Nutter.
943
- * Improved performance of Gem::Specification#load by caching the loaded
944
- gemspec. Pull request #569 by Charlie Somerville.
945
- * RubyGems now warns when an unsigned gem is verified if -P was given during
946
- installation even if the security policy allows unsigned gems and warns when
947
- an untrusted certificate is seen even if the security policy allows
948
- untrusted certificates. Issue #474 by Grant Olson
949
- * RubyGems can now rewrite executables with or without a shebang of
950
- /usr/bin/env via <code>gem pristine --all --only-executables
951
- --env-[no-]shebang</code>. Issue #579 by Paul Annesley.
952
- * RubyGems can now run its tests without OpenSSL. Ruby Bug #8557 by nobu.
953
- * Improved performance by caching Gem::Version objects and avoiding
954
- method_missing in Gem::Specification. Pull request #447 by Jon Leighton.
955
- * Files in a .gem now preserve their modification times. Pull request #582 by
956
- Jesse Bowes
957
- * Improved speed of looking up dependencies in SpecFetcher through
958
- Array#bsearch (when present). Pull request #595 by Andras Suller
959
- * Added `--all` option to `gem uninstall` which removes all gems in GEM_HOME.
960
- Pull request #584 by Shannon Skipper.
961
- * Added Gem.find_latest_files which is equivalent to Gem.find_files but only
962
- returns matching files from the latest version of each gem. Issue #186 by
963
- Ryan Davis.
964
- * Improved performance of `gem outdated` by reducing duplicate work (it is
965
- still slow, but I see a near 50% improvement for 250 gems on a fast
966
- connection). See also Gem::Specification::outdated_and_latest_version
967
-
968
- Bug fixes:
969
-
970
- * rubygems_plugin.rb files are now only loaded from the latest installed gem.
971
- * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
972
- #625 by elarkin
973
- * Fixed credential creation for `gem push` when `--host` is not given. Pull
974
- request #622 by Arthur Nogueira Neves
975
-
976
- === 2.0.17 / 2015-06-08
977
-
978
- Bug fixes:
979
-
980
- * Tightened API endpoint checks for CVE-2015-3900
981
-
982
- === 2.0.16 / 2015-05-14
983
-
984
- Bug fixes:
985
-
986
- * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
987
- Fix by claudijd
988
-
989
- === 2.0.15 / 2014-12-21
990
-
991
- Bug fixes:
992
-
993
- * Backport: Add alternate Root CA for upcoming certificate change.
994
- Fixes #1050 by Protosac
995
-
996
- === 2.0.14 / 2013-11-12
997
-
998
- Bug fixes:
999
-
1000
- * Gem::Specification::remove_spec no longer checks for existence of the spec
1001
- to be removed. Issue #698 by Tiago Macedo.
1002
- * Restored wildcard handling when installing gems. Issue #697 by Chuck Remes.
1003
- * Added DigiCert High Assurance EV Root CA certificate for the cloudfront.net
1004
- certificate change.
1005
- * The Gem::RemoteFetcher tests now choose the test server port more reliably.
1006
- Pull Request #706 by akr.
1007
-
1008
- === 2.0.13 / 2013-10-24
1009
-
1010
- Bug fixes:
1011
-
1012
- * Use class check instead of :version method check when creating Gem::Version
1013
- objects. Fixes #674 by jkanywhere.
1014
- * Allow installation of gems when the home directory does not exist. Issue
1015
- #689 by Laurence Rowe
1016
- * Fix updating gems which have multiple platforms. Issue #693 by Ookami
1017
- Kenrou.
1018
-
1019
- === 2.0.12 / 2013-10-14
1020
-
1021
- Bug fixes:
1022
-
1023
- * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
1024
- Masahiro Tomita, Issue #668 by Kouhei Sutou.
1025
-
1026
- === 2.0.11 / 2013-10-08
1027
-
1028
- Bug fixes:
1029
-
1030
- * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
1031
- #665 by emeyekayee. Fixes #671 by jonforums.
1032
- * Remove redundant built-in certificates not needed for https://rubygems.org
1033
- Fixes #654 by Vít Ondruch.
1034
- * Added test for missing certificates for https://s3.amazonaws.com or
1035
- https://rubygems.org. Pull request #673 by Hannes Georg.
1036
- * RubyGems now allows a Pathname for Kernel#require like the built-in
1037
- Kernel#require. Pull request #663 by Aaron Patterson.
1038
- * Required rbconfig in Gem::ConfigFile for Ruby 1.9.1 compatibility. (Ruby
1039
- 1.9.1 is no longer receiving security fixes, so please update to a newer
1040
- version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
1041
- Thomas Sänger.
1042
-
1043
- === 2.0.10 / 2013-09-24
1044
-
1045
- Security fixes:
1046
-
1047
- * RubyGems 2.1.4 and earlier are vulnerable to excessive CPU usage due to a
1048
- backtracking in Gem::Version validation. See CVE-2013-4363 for full details
1049
- including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
1050
- 1.8.23.2 (for Ruby 1.9.3).
1051
-
1052
- === 2.0.9 / 2013-09-13
1053
-
1054
- Bug fixes:
1055
-
1056
- * Gem fetch now fetches the newest (not oldest) gem when --version is given.
1057
- Issue #643 by Brian Shirai.
1058
- * Fixed credential creation for `gem push` when `--host` is not given. Pull
1059
- request #622 by Arthur Nogueira Neves
1060
-
1061
- === 2.0.8 / 2013-09-09
1062
-
1063
- Security fixes:
1064
-
1065
- * RubyGems 2.0.7 and earlier are vulnerable to excessive CPU usage due to a
1066
- backtracking in Gem::Version validation. See CVE-2013-4287 for full details
1067
- including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
1068
- 1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
1069
-
1070
- Bug fixes:
1071
-
1072
- * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
1073
- #625 by elarkin
1074
-
1075
- === 2.0.7 / 2013-08-15
1076
-
1077
- Bug fixes:
1078
-
1079
- * Extensions may now be built in parallel (therefore gems may be installed in
1080
- parallel). Bug #607 by Hemant Kumar.
1081
- * Changed broken link to RubyGems Bookshelf to point to RubyGems guides. Ruby
1082
- pull request #369 by 謝致邦.
1083
- * Fixed various test failures due to platform differences or poor tests.
1084
- Patches by Yui Naruse and Koichi Sasada.
1085
- * Fixed documentation for Kernel#require.
1086
-
1087
- === 2.0.6 / 2013-07-24
1088
-
1089
- Bug fixes:
1090
-
1091
- * Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
1092
- #593 by Blargel.
1093
- * Fixed crash when installing gems with extensions under the `-V` flag. Bug
1094
- #601 by Nick Hoffman.
1095
- * Fixed race condition retrieving HTTP connections in Gem::Request on JRuby.
1096
- Bug #597 by Hemant Kumar.
1097
- * Fixed building extensions on ruby 1.9.3 under mingw. Bug #594 by jonforums,
1098
- Bug #599 by Chris Riesbeck
1099
- * Restored default of remote search to `gem search`.
1100
-
1101
- === 2.0.5 / 2013-07-11
1102
-
1103
- * Fixed building of extensions that run ruby in their makefiles. Bug #589 by
1104
- Zachary Salzbank.
1105
-
1106
- === 2.0.4 / 2013-07-09
1107
-
1108
- Bug fixes:
1109
-
1110
- * Fixed error caused by gem install not finding the right platform for your
1111
- platform. Bug #576 by John Anderson
1112
- * Fixed pushing gems with the default host. Bug #495 by Utkarsh Kukreti
1113
- * Improved unhelpful error message from `gem owner --remove`. Bug #488 by
1114
- Steve Klabnik
1115
- * Fixed typo in `gem spec` help. Pull request #563 by oooooooo
1116
- * Fixed creation of build_info with --install-dir. Bug #457 by Vít Ondruch.
1117
- * RubyGems converts non-string dependency names to strings now. Bug #505 by
1118
- Terence Lee
1119
- * Outdated prerelease versions are now listed in `gem outdated`.
1120
- * RubyGems now only calls fsync() on the specification when installing, not
1121
- every file from the gem. This improves the performance of gem installation
1122
- on some systems. Pull Request #556 by Grzesiek Kolodziejczyk
1123
- * Removed surprise search term anchoring in `gem search` to restore 1.8-like
1124
- search behavior while still defaulting to --remote. Pull request #562 by
1125
- Ben Bleything
1126
- * Fixed handling of DESTDIR when building extensions. Pull request #573 by
1127
- Akinori MUSHA
1128
- * Fixed documentation of `gem pristine` defaults (--all is not a default).
1129
- Pull request #577 by Shannon Skipper
1130
- * Fixed a windows extension-building test failure. Pull request #575 by
1131
- Hiroshi Shirosaki
1132
- * Fixed issue with `gem update` where it would attempt to use a Version
1133
- instead of a Requirement to find the latest gem. Fixes #570 by Nick Cox.
1134
- * RubyGems now ignores an empty but set RUBYGEMS_HOST environment variable.
1135
- Based on pull request #558 by Robin Dupret.
1136
- * Removed duplicate creation of gem subdirectories in
1137
- Gem::DependencyInstaller. Pull Request #456 by Vít Ondruch
1138
- * RubyGems now works with Ruby built with `--with-ruby-version=''`. Pull
1139
- Request #455 by Vít Ondruch
1140
- * Fixed race condition when two threads require the same gem. Ruby bug report
1141
- #8374 by Joel VanderWerf
1142
- * Cleaned up siteconf between extension build and extension install. Pull
1143
- request #587 by Dominic Cleal
1144
- * Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
1145
- r41148 by Yui Naruse
1146
-
1147
- === 2.0.3 / 2013-03-11
1148
-
1149
- * Bug fixes:
1150
- * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
1151
- #506 by André Arko
1152
- * Use File.realpath to remove extra / while checking if files are
1153
- installable. Issue #508 by Jacob Evans.
1154
- * When installing RubyGems on JRuby, the standard library is no longer
1155
- deleted. Fixes #504 by Juan Sanchez, #507 by Charles Oliver Nutter.
1156
- * When building extconf.rb extensions use the intermediate destination
1157
- directory. This addresses further issues with C extension building.
1158
- * Use the absolute path to the generated siteconf in case the extension
1159
- changes directories to run extconf.rb (like memcached). Fixes #498 by
1160
- Chris Morris.
1161
- * Fixed default gem key and cert locations. Pull request #511 by Samuel
1162
- Cochran.
1163
-
1164
- === 2.0.2 / 2013-03-06
1165
-
1166
- * Bug fixes:
1167
- * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
1168
- upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
1169
- * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
1170
- * Fixed HTTP to HTTPS upgrade for rubygems.org.
1171
-
1172
- === 2.0.1 / 2013-03-05
1173
-
1174
- * Bug fixes:
1175
- * Lazily load RubyGems.org API credentials to avoid failure during
1176
- RubyGems installation. Bug #465 by Isaac Sanders.
1177
- * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
1178
- Santiago Pastorino.
1179
- * Improved detection of missing Zlib::GzipReader encoding support. Works
1180
- around JRuby-only bug #472 by Matt Beedle.
1181
- * "Done installing documentation" is no longer displayed when documentation
1182
- generation is disabled. Fixes bug #469 by Jeff Sandberg
1183
- * The existing executable check now respects --format-executable. Pull
1184
- request #471 by Jeremy Evans.
1185
- * RubyGems no longer creates gem subdirectories when fetching gems. Fixes
1186
- #482 by Loren Segal.
1187
- * RubyGems does not require OpenSSL like RubyGems 1.8, but still prefers it.
1188
- Fixes #481 by André Arko.
1189
- * RubyGems only fetches specs for list, search and query commands when
1190
- needed like RubyGems 1.x. Fixes bug #487 by bitbuerster, Ruby bug #8019
1191
- by Ike Miller.
1192
- * Allow specification of mode for gem subdirectory creation.
1193
- Ruby bug #7713 by nobu
1194
- * Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
1195
-
1196
- === 2.0.0 / 2013-02-24
1197
-
1198
- RubyGems 2.0 includes several new features and many breaking changes. Some of
1199
- these changes will cause existing software to break. These changes are a
1200
- result of improvements to the internals of RubyGems that make it more
1201
- maintainable and improve APIs for RubyGems users.
1202
-
1203
- If you are using bundler be sure to install a 1.3.0.prerelease version or
1204
- newer. Older versions of bundler will not work with RubyGems 2.0.
1205
-
1206
- Changes since RubyGems 1.8.25 (including past pre-releases):
1207
-
1208
- * Breaking changes:
1209
-
1210
- * Deprecated Gem.unresolved_deps in favor of
1211
- Gem::Specification.unresolved_deps
1212
- * Merged Gem::Builder into Gem::Package. Use Gem::Package.build(spec)
1213
- instead of Gem::Builder.new(spec).build
1214
- * Merged Gem::Format into Gem::Package. Use Gem::Package.new instead
1215
- of Gem::Format.from_file_by_path
1216
- * Moved Gem::OldFormat to Gem::Package::Old. Gem::Package will
1217
- automatically detect old gems for you, so there is no need to refer to it.
1218
- * Removed Gem::DocManager, replaced by Gem::RDoc and done_installing hook
1219
- * Removed Gem::Package::TarInput in favor of Gem::Package
1220
- * Removed Gem::Package::TarOutput in favor of Gem::Package
1221
- * Removed Gem::RemoteFetcher#open_uri_or_path. (steveklabnik)
1222
- * Removed Gem::SSL in favor of using OpenSSL directly
1223
- * Removed Gem.loaded_path
1224
- * Removed RSS generation from the gem indexer
1225
- * Removed benchmark option from .gemrc
1226
- * Removed broken YAML gemspec support in `gem build`
1227
- * Removed support for Ruby 1.9.1
1228
- * Removed many deprecated methods
1229
-
1230
- * Major enhancements:
1231
-
1232
- * Improved support for default gems shipping with ruby 2.0.0+
1233
- * A gem can have arbitrary metadata through Gem::Specification#metadata
1234
- * `gem search` now defaults to --remote and is anchored like gem list. Fixes
1235
- #166
1236
- * Added --document to replace --rdoc and --ri. Use --no-document to disable
1237
- documentation, --document=rdoc to only generate rdoc.
1238
- * Only ri-format documentation is generated by default.
1239
- * `gem server` uses RDoc::Servlet from RDoc 4.0 to generate HTML
1240
- documentation.
1241
- * Add ability to install gems directly from a compatible gemdep
1242
- file (Gemfile, Isolate, gem.deps.rb)
1243
- <code>gem install --file path</code>
1244
- * Add ability to load gem activation information from a gemdeps
1245
- file (Gemfile, Isolate, gem.deps.rb).
1246
- Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
1247
- to autodetect (current and parent directories are searched).
1248
-
1249
- * Minor enhancements:
1250
- * Added `gem check --doctor` to clean up after failed uninstallation. Bug
1251
- #419 by Erik Hollensbe
1252
- * RubyGems no longer defaults to uninstalling gems if a dependency would be
1253
- broken. Now you must manually say "yes". Pull Request #406 by Shannon
1254
- Skipper.
1255
- * Gem::DependencyInstaller now passes build_args down to the installer.
1256
- Pull Request #412 by Sam Rawlins.
1257
- * Added a cmake builder. Pull request #265 by Allan Espinosa.
1258
- * Removed rubyforge page from gem list output
1259
- * Added --only-executables option to `gem pristine`. Fixes #326
1260
- * Added -I flag for 'gem query' to exclude installed items
1261
- * Added Gem.install(name, version=default) for interactive sessions
1262
- * Added Gem::FilePermissionError#directory
1263
- * Added Gem::rubygems_version which is like Gem::ruby_version
1264
- * Added RUBYGEMS_HOST documentation to `gem env`
1265
- * Added a post_installs hook that runs after Gem::DependencyInstaller
1266
- finishes installing a set of gems
1267
- * Added a usage method for Gem::Commands::OwnerCommand. (ffmike)
1268
- * Added an optional type parameter to Gem::Specification#doc_dir.
1269
- * Added announcements url and clarified how to file tickets
1270
- * Added guidance for how to use rdoc and ri in setup command. (jjb)
1271
- * Attempting to install multiple gems with --version is now an error. You
1272
- can specify per-gem versions like <code>rake:0.9.5</code>
1273
- * Clarified Gem::CommandManager example code to avoid multi load problems.
1274
- (baroquebobcat)
1275
- * Corrupt or bad cached specs are now re-downloaded. (cookrn)
1276
- * Extension build arguments are saved from install and reused for pristine
1277
- * If the OS allows it, documentation is built in a forked background
1278
- process. (alexch)
1279
- * Imported gem yank from the gemcutter gem. Fixes #177, #343
1280
- * Packaged gems now contain and verify SHA1 checksums
1281
- * Removed commas from gem update summary so you can paste it back to
1282
- cleanup. (amatsuda)
1283
- * RubyGems will now warn when building gems with prerelease dependencies.
1284
- Fixes #255
1285
- * The RUBYGEMS_HOST environment variable is used to determine appropriate
1286
- API key for pushing or yanking gems
1287
- * Uninstall is now performed in reverse topological order.
1288
- * Users are told what to type when they try to uninstall a gem outside
1289
- GEM_HOME
1290
- * When building gems with non-world-readable files a warning is shown.
1291
-
1292
- * Bug fixes:
1293
- * Gem.refresh now maintains the active gem list. Clearing the list would
1294
- cause double-loads which would cause other bugs. Pull Request #427 by
1295
- Jeremy Evans
1296
- * RubyGems now refuses to read the gem push credentials file if it has
1297
- insecure permissions. Pull Request #438 by Shannon Skipper
1298
- * RubyGems now requires a local gem name to end in '.gem'. Issue #407 by
1299
- Santiago Pastorino.
1300
- * Do not allow old-format gems to be installed with a security policy that
1301
- verifies data.
1302
- * Gem installation will fail if RubyGems cannot load the specification from
1303
- the gem. Bug #419 by Erik Hollensbe
1304
- * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
1305
- * Only update the spec cache when we have permission. Ruby Bug #7509
1306
- * gem install now ignores directories and non .gem files that match the gem
1307
- to install. Bug #407 by Santiago Pastorino.
1308
- * Added PID to setup bin_file while installing RubyGems to protect against
1309
- errors. Fixes #328 by ConradIrwin
1310
- * Added missing require in Gem::Uninstaller when format_executable is set.
1311
- (sakuro)
1312
- * Exact gem command name matches are now chosen even if a longer command
1313
- overlaps the exact name
1314
- * Fixed Gem.loaded_path? with a Pathname instance. (mattetti)
1315
- * Fixed Gem::Dependency.new mismatch with rubygems.org checks
1316
- * Fixed SecurityError in Gem::Specification.load when $SAFE=1. (ged)
1317
- * Fixed SystemStackError with "gem list -r -a" on 1.9 (cldwalker)
1318
- * Fixed `gem owners` command so that exceptions don't stop the rest of the
1319
- command from completing
1320
- * Fixed `gem unpack uninstalled_gem` default version picker.
1321
- * Fixed defunct rubyforge urls in gem command line help
1322
- * Fixed documentation for the various hooks collections
1323
- * Fixed documentation generation on setup when the gem directory does not
1324
- exist. Fixes #253
1325
- * Fixed documentation to reflect where defaults overrides are loaded from.
1326
- (ferrous26)
1327
- * Fixed editing of a Makefile with 8-bit characters. Fixes #181
1328
- * Fixed gem loading issue caused by dependencies not resolving.
1329
- * Fixed independent testing of test_gem_package_tar_output. Ruby Bug #4686
1330
- by Shota Fukumori
1331
- * Fixed typo in uninstall message. (sandal)
1332
- * Gem::Requirement#<=> returns nil on non-requirement arg.
1333
- * Gem::Requirement.satisfied_by? raises ArgumentError if given a non-version
1334
- argument
1335
- * Gem::Version#initialize no longer modifies its parameter. (miaout17)
1336
- * Group-writable permissions are now allowed for gem repositories. (ctcherry)
1337
- * Memoized values in Gem::Specification are now reset the version or
1338
- platform changes. Fixes #78
1339
- * More specific errors are raised for bad requirements. (arsduo)
1340
- * Removed reference to 'sources' gem in documentation
1341
- * Removed unused block arguments to avoid creating Proc objects. (k-tsj)
1342
- * RubyGems now asks before overwriting executable wrappers. Ruby Bug #1800
1343
- * The bindir is now created with mkdir_p during install. (voxik)
1344
- * URI scheme matching is no longer case-sensitive. Fixes #322
1345
- * ext/builder now checks $MAKE as well as $make (okkez)
1346
-
1347
- Changes since RubyGems 2.0.0.rc.2:
1348
-
1349
- * Bug fixes:
1350
- * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
1351
- #450 by Jeremy Kemper
1352
- * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
1353
- Forums.
1354
- * Fixed `gem update` with --user-install. Ruby bug #7779 by Jon Forums.
1355
- * Fixed test_initialize_user_install for windows. Ruby bug #7885 by Luis
1356
- Lavena.
1357
- * Create extension destination directory before building extensions. Ruby
1358
- Bug #7897 and patch by Kenta Murata.
1359
- * Fixed verification of gems at LowSecurity due to missing signature.
1360
- Thanks to André Arko.
1361
-
1362
- === 2.0.0.rc.2 / 2013-02-08
1363
-
1364
- * Bug fixes:
1365
- * Fixed signature verification of gems which was broken only on master.
1366
- Thanks to Brian Buchanan.
1367
- * Proper exceptions are raised when verifying an unsigned gem. Thanks to
1368
- André Arko.
1369
-
1370
- === 2.0.0.rc.1 / 2013-01-08
1371
-
1372
- * Minor enhancements:
1373
- * This release of RubyGems can push gems to rubygems.org. Ordinarily
1374
- prerelease versions of RubyGems cannot push gems.
1375
- * Added `gem check --doctor` to clean up after failed uninstallation. Bug
1376
- #419 by Erik Hollensbe
1377
-
1378
- * Bug fixes:
1379
- * Fixed exception raised when attempting to push gems to rubygems.org. Bug
1380
- #418 by André Arko
1381
- * Gem installation will fail if RubyGems cannot load the specification from
1382
- the gem. Bug #419 by Erik Hollensbe
1383
-
1384
- === 2.0.0.preview2.2 / 2012-12-14
1385
-
1386
- * Minor enhancements:
1387
- * Added a cmake builder. Pull request #265 by Allan Espinosa.
1388
- * Removed rubyforge page from gem list output
1389
-
1390
- * Bug fixes:
1391
- * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
1392
- #413 by Jeremy Kemper.
1393
-
1394
- === 2.0.0.preview2.1 / 2012-12-08
1395
-
1396
- * Minor enhancements:
1397
- * Gem::DependencyInstaller now passes build_args down to the installer.
1398
- Pull Request #412 by Sam Rawlins.
1399
- * RubyGems no longer defaults to uninstalling gems if a dependency would be
1400
- broken. Now you must manually say "yes". Pull Request #406 by Shannon
1401
- Skipper.
1402
-
1403
- * Bug fixes:
1404
- * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
1405
- * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
1406
- * Only update the spec cache when we have permission. Ruby Bug #7509
1407
- * Restored order of version marking. Fixes an issue with bundler. Thanks
1408
- to Aaron Patterson and Terence Lee.
1409
- * Gem cleanup now skips default gems. Pull Request #409 by Kouhei Sutou
1410
- * gem list, search and query can show remote gems again. Bug #410 by
1411
- Henry Maddocks
1412
- * gem install now ignores directories that match the gem to install. Bug
1413
- #407 by Santiago Pastorino.
1414
-
1415
- === 2.0.0.preview2 / 2012-12-01
1416
-
1417
- This release contains two commits not present in Ruby 2.0.0.preview2. One
1418
- commit is for ruby 1.8.7 support, the second allows RubyGems to work under
1419
- $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
1420
-
1421
- * Breaking changes:
1422
-
1423
- * Deprecated Gem.unresolved_deps in favor of
1424
- Gem::Specification.unresolved_deps
1425
- * Merged Gem::Builder into Gem::Package. Use Gem::Package.build(spec)
1426
- instead of Gem::Builder.new(spec).build
1427
- * Merged Gem::Format into Gem::Package. Use Gem::Package.new instead
1428
- of Gem::Format.from_file_by_path
1429
- * Moved Gem::OldFormat to Gem::Package::Old. Gem::Package will
1430
- automatically detect old gems for you, so there is no need to refer to it.
1431
- * Removed Gem::DocManager, replaced by Gem::RDoc and done_installing hook
1432
- * Removed Gem::Package::TarInput in favor of Gem::Package
1433
- * Removed Gem::Package::TarOutput in favor of Gem::Package
1434
- * Removed Gem::RemoteFetcher#open_uri_or_path. (steveklabnik)
1435
- * Removed Gem::SSL in favor of using OpenSSL directly
1436
- * Removed Gem.loaded_path
1437
- * Removed RSS generation from the gem indexer
1438
- * Removed benchmark option from .gemrc
1439
- * Removed broken YAML gemspec support in `gem build`
1440
- * Removed support for Ruby 1.9.1
1441
- * Removed many deprecated methods
1442
-
1443
- * Major enhancements:
1444
-
1445
- * Improved support for default gems shipping with ruby 2.0.0+
1446
- * A gem can have arbitrary metadata through Gem::Specification#metadata
1447
- * `gem search` now defaults to --remote and is anchored like gem list. Fixes
1448
- #166
1449
- * Added --document to replace --rdoc and --ri. Use --no-document to disable
1450
- documentation, --document=rdoc to only generate rdoc.
1451
- * Only ri-format documentation is generated by default.
1452
- * `gem server` uses RDoc::Servlet from RDoc 4.0 to generate HTML
1453
- documentation.
1454
- * Add ability to install gems directly from a compatible gemdep
1455
- file (Gemfile, Isolate, gem.deps.rb)
1456
- <code>gem install --file path</code>
1457
- * Add ability to load gem activation information from a gemdeps
1458
- file (Gemfile, Isolate, gem.deps.rb).
1459
- Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
1460
- to autodetect (current and parent directories are searched).
1461
-
1462
- * Minor enhancements:
1463
-
1464
- * Added --only-executables option to `gem pristine`. Fixes #326
1465
- * Added -I flag for 'gem query' to exclude installed items
1466
- * Added Gem.install(name, version=default) for interactive sessions
1467
- * Added Gem::FilePermissionError#directory
1468
- * Added Gem::rubygems_version which is like Gem::ruby_version
1469
- * Added RUBYGEMS_HOST documentation to `gem env`
1470
- * Added a post_installs hook that runs after Gem::DependencyInstaller
1471
- finishes installing a set of gems
1472
- * Added a usage method for Gem::Commands::OwnerCommand. (ffmike)
1473
- * Added an optional type parameter to Gem::Specification#doc_dir.
1474
- * Added announcements url and clarified how to file tickets
1475
- * Added guidance for how to use rdoc and ri in setup command. (jjb)
1476
- * Attempting to install multiple gems with --version is now an error. You
1477
- can specify per-gem versions like <code>rake:0.9.5</code>
1478
- * Clarified Gem::CommandManager example code to avoid multi load problems.
1479
- (baroquebobcat)
1480
- * Corrupt or bad cached specs are now re-downloaded. (cookrn)
1481
- * Extension build arguments are saved from install and reused for pristine
1482
- * If the OS allows it, documentation is built in a forked background
1483
- process. (alexch)
1484
- * Imported gem yank from the gemcutter gem. Fixes #177, #343
1485
- * Packaged gems now contain and verify SHA1 checksums
1486
- * Removed commas from gem update summary so you can paste it back to
1487
- cleanup. (amatsuda)
1488
- * RubyGems will now warn when building gems with prerelease dependencies.
1489
- Fixes #255
1490
- * The RUBYGEMS_HOST environment variable is used to determine appropriate
1491
- API key for pushing or yanking gems
1492
- * Uninstall is now performed in reverse topological order.
1493
- * Users are told what to type when they try to uninstall a gem outside
1494
- GEM_HOME
1495
- * When building gems with non-world-readable files a warning is shown.
1496
-
1497
- * Bug fixes:
1498
-
1499
- * Added PID to setup bin_file while installing RubyGems to protect against
1500
- errors. Fixes #328 by ConradIrwin
1501
- * Added missing require in Gem::Uninstaller when format_executable is set.
1502
- (sakuro)
1503
- * Exact gem command name matches are now chosen even if a longer command
1504
- overlaps the exact name
1505
- * Fixed Gem.loaded_path? with a Pathname instance. (mattetti)
1506
- * Fixed Gem::Dependency.new mismatch with rubygems.org checks
1507
- * Fixed SecurityError in Gem::Specification.load when $SAFE=1. (ged)
1508
- * Fixed SystemStackError with "gem list -r -a" on 1.9 (cldwalker)
1509
- * Fixed `gem owners` command so that exceptions don't stop the rest of the
1510
- command from completing
1511
- * Fixed `gem unpack uninstalled_gem` default version picker.
1512
- * Fixed defunct rubyforge urls in gem command line help
1513
- * Fixed documentation for the various hooks collections
1514
- * Fixed documentation generation on setup when the gem directory does not
1515
- exist. Fixes #253
1516
- * Fixed documentation to reflect where defaults overrides are loaded from.
1517
- (ferrous26)
1518
- * Fixed editing of a Makefile with 8-bit characters. Fixes #181
1519
- * Fixed gem loading issue caused by dependencies not resolving.
1520
- * Fixed independent testing of test_gem_package_tar_output. Ruby Bug #4686
1521
- by Shota Fukumori
1522
- * Fixed typo in uninstall message. (sandal)
1523
- * Gem::Requirement#<=> returns nil on non-requirement arg.
1524
- * Gem::Requirement.satisfied_by? raises ArgumentError if given a non-version
1525
- argument
1526
- * Gem::Version#initialize no longer modifies its parameter. (miaout17)
1527
- * Group-writable permissions are now allowed for gem repositories. (ctcherry)
1528
- * Memoized values in Gem::Specification are now reset the version or
1529
- platform changes. Fixes #78
1530
- * More specific errors are raised for bad requirements. (arsduo)
1531
- * Removed reference to 'sources' gem in documentation
1532
- * Removed unused block arguments to avoid creating Proc objects. (k-tsj)
1533
- * RubyGems now asks before overwriting executable wrappers. Ruby Bug #1800
1534
- * The bindir is now created with mkdir_p during install. (voxik)
1535
- * URI scheme matching is no longer case-sensitive. Fixes #322
1536
- * ext/builder now checks $MAKE as well as $make (okkez)
1537
-
1538
- === 1.8.29 / 2013-11-23
1539
-
1540
- Bug fixes:
1541
-
1542
- * Fixed installation when the LANG environment variable is empty.
1543
- * Added DigiCert High Assurance EV Root CA to the default SSL certificates for
1544
- cloudfront.
1545
-
1546
- === 1.8.28 / 2013-10-08
1547
-
1548
- Bug fixes:
1549
-
1550
- * Added the Verisign Class 3 Public Primary Certification Authority G5
1551
- certificate and its intermediary to follow the s3.amazonaws.com certificate
1552
- change. Fixes #665 by emeyekayee. Fixes #671 by jonforums.
1553
- * Remove redundant built-in certificates not needed for https://rubygems.org
1554
- Fixes #654 by Vít Ondruch.
1555
- * Added test for missing certificates for https://s3.amazonaws.com or
1556
- https://rubygems.org. Pull request #673 by Hannes Georg.
1557
-
1558
- === 1.8.27 / 2013-09-24
1559
-
1560
- Security fixes:
1561
-
1562
- * RubyGems 2.1.4 and earlier are vulnerable to excessive CPU usage due to a
1563
- backtracking in Gem::Version validation. See CVE-2013-4363 for full details
1564
- including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
1565
- 1.8.23.2 (for Ruby 1.9.3).
1566
-
1567
- === 1.8.26 / 2013-09-09
1568
-
1569
- Security fixes:
1570
-
1571
- * RubyGems 2.0.7 and earlier are vulnerable to excessive CPU usage due to a
1572
- backtracking in Gem::Version validation. See CVE-2013-4287 for full details
1573
- including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
1574
- 1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
1575
-
1576
- Bug fixes:
1577
-
1578
- * Fixed editing of a Makefile with 8-bit characters. Fixes #181
1579
-
1580
- === 1.8.25 / 2013-01-24
1581
-
1582
- * Bug fixes:
1583
- * Added 11627 to setup bin_file location to protect against errors. Fixes
1584
- #328 by ConradIrwin
1585
- * Specification#ruby_code didn't handle Requirement with multiple
1586
- * Fix error on creating a Version object with a frozen string.
1587
- * Fix incremental index updates
1588
- * Fix missing load_yaml in YAML-related requirement.rb code.
1589
- * Manually backport encoding-aware YAML gemspec
1590
-
1591
- === 1.8.24 / 2012-04-27
1592
-
1593
- * 1 bug fix:
1594
-
1595
- * Install the .pem files properly. Fixes #320
1596
- * Remove OpenSSL dependency from the http code path
1597
-
1598
- === 1.8.23.2 / 2013-09-24
1599
-
1600
- Security fixes:
1601
-
1602
- * RubyGems 2.1.4 and earlier are vulnerable to excessive CPU usage due to a
1603
- backtracking in Gem::Version validation. See CVE-2013-4363 for full details
1604
- including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
1605
- 1.8.23.2 (for Ruby 1.9.3).
1606
-
1607
- === 1.8.23.1 / 2013-09-09
1608
-
1609
- Security fixes:
1610
-
1611
- * RubyGems 2.0.7 and earlier are vulnerable to excessive CPU usage due to a
1612
- backtracking in Gem::Version validation. See CVE-2013-4287 for full details
1613
- including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
1614
- 1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
1615
-
1616
- === 1.8.23 / 2012-04-19
1617
-
1618
- This release increases the security used when RubyGems is talking to
1619
- an https server. If you use a custom RubyGems server over SSL, this
1620
- release will cause RubyGems to no longer connect unless your SSL cert
1621
- is globally valid.
1622
-
1623
- You can configure SSL certificate usage in RubyGems through the
1624
- :ssl_ca_cert and :ssl_verify_mode options in ~/.gemrc and /etc/gemrc.
1625
- The recommended way is to set :ssl_ca_cert to the CA certificate for
1626
- your server or a certificate bundle containing your CA certification.
1627
-
1628
- You may also set :ssl_verify_mode to 0 to completely disable SSL
1629
- certificate checks, but this is not recommended.
1630
-
1631
-
1632
- * 2 security fixes:
1633
- * Disallow redirects from https to http
1634
- * Turn on verification of server SSL certs
1635
-
1636
- * 1 minor feature:
1637
- * Add --clear-sources to fetch
1638
-
1639
- * 2 bug fixes:
1640
- * Use File.identical? to check if two files are the same.
1641
- * Fixed init_with warning when using psych
1642
-
1643
- === 1.8.22 / 2012-04-13
1644
-
1645
- * 4 bug fixes:
1646
-
1647
- * Workaround for psych/syck YAML date parsing issue
1648
- * Don't trust the encoding of ARGV. Fixes #307
1649
- * Quiet default warnings about missing spec variables
1650
- * Read a binary file properly (windows fix)
1651
-
1652
- === 1.8.21 / 2012-03-22
1653
-
1654
- * 2 bug fixes:
1655
-
1656
- * Add workaround for buggy yaml output from 1.9.2
1657
- * Force 1.9.1 to remove it's prelude code. Fixes #305
1658
-
1659
- === 1.8.20 / 2012-03-21
1660
-
1661
- * 4 bug fixes:
1662
-
1663
- * Add --force to `gem build` to skip validation. Fixes #297
1664
- * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
1665
- * Treat the source as a proper url base. Fixes #304
1666
- * Warn when updating the specs cache fails. Fixes #300
1667
-
1668
- === 1.8.19 / 2012-03-14
1669
-
1670
- * 3 bug fixes:
1671
-
1672
- * Handle loading psych vs syck properly. Fixes #298
1673
- * Make sure Date objects don't leak in via Marshal
1674
- * Perform Date => Time coercion on yaml loading. Fixes #266
1675
-
1676
- === 1.8.18 / 2012-03-11
1677
-
1678
- * 4 bug fixes:
1679
-
1680
- * Use Psych API to emit more compatible YAML
1681
- * Download and write inside `gem fetch` directly. Fixes #289
1682
- * Honor sysconfdir on 1.8. Fixes #291
1683
- * Search everywhere for a spec for `gem spec`. Fixes #288
1684
- * Fix Gem.all_load_path. Fixes #171
1685
-
1686
- === 1.8.17 / 2012-02-17
1687
-
1688
- * 2 minor enhancements:
1689
-
1690
- * Add MacRuby to the list of special cases for platforms (ferrous26)
1691
- * Add a default for where to install rubygems itself
1692
-
1693
- * 3 bug fixes:
1694
-
1695
- * Fixed gem loading issue caused by dependencies not resolving.
1696
- * Fixed umask error when stdlib is required and unresolved dependencies exist.
1697
- * Shebang munging would only take one arg after the cmd
1698
- * Define SUCKAGE better, ie only MRI 1.9.2
1699
- * Propagate env-shebang to the pristine command if set for install.
1700
-
1701
- === 1.8.16 / 2012-02-12
1702
-
1703
- * 3 bug fixes:
1704
-
1705
- * Fix gem specification loading when encoding is not UTF-8. #146
1706
- * Allow group writable if umask allows it already.
1707
- * Uniquify the spec list based on directory order priority
1708
-
1709
- === 1.8.15 / 2012-01-06
1710
-
1711
- * 1 bug fix:
1712
-
1713
- * Don't eager load yaml, it creates a bad loop. Fixes #256
1714
-
1715
- === 1.8.14 / 2012-01-05
1716
-
1717
- * 2 bug fixes:
1718
-
1719
- * Ignore old/bad cache data in Version
1720
- * Make sure our YAML workarounds are loaded properly. Fixes #250.
1721
-
1722
- === 1.8.13 / 2011-12-21
1723
-
1724
- * 1 bug fix:
1725
-
1726
- * Check loaded_specs properly when trying to satisfy a dep
1727
-
1728
- * 2 minor enhancements:
1729
-
1730
- * Remove using #loaded_path? for performance
1731
- * Remove Zlib workaround for Windows build.
1732
-
1733
- === 1.8.12 / 2011-12-02
1734
-
1735
- * Bug fix:
1736
- * Handle more cases where Syck's DefaultKey showed up in requirements
1737
- and wasn't cleaned out.
1738
-
1739
- === 1.8.11 / 2011-10-03
1740
-
1741
- * Bug fix:
1742
- * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
1743
- namespace.
1744
-
1745
- === 1.8.10 / 2011-08-25
1746
-
1747
- RubyGems 1.8.10 contains a security fix that prevents malicious gems from
1748
- executing code when their specification is loaded. See
1749
- https://github.com/rubygems/rubygems/pull/165 for details.
1750
-
1751
- * 5 bug fixes:
1752
-
1753
- * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
1754
- and %q to prevent code injection. Issue #165 by Postmodern
1755
- * RubyGems attempt to activate the psych gem now to obtain bugfixes from
1756
- psych.
1757
- * Gem.dir has been restored to the front of Gem.path. Fixes remaining
1758
- problem with Issue #115
1759
- * Fixed Syck DefaultKey infecting ruby-format specifications.
1760
- * `gem uninstall a b` no longer stops if gem "a" is not installed.
1761
-
1762
- === 1.8.9 / 2011-08-23
1763
-
1764
- * Bug fixes:
1765
-
1766
- * Fixed uninstalling multiple gems using `gem uninstall`
1767
- * Gem.use_paths splatted to take multiple paths! Issue #148
1768
-
1769
- === 1.8.8 / 2011-08-11
1770
-
1771
- * Bug fix:
1772
- * The encoding of a gem's YAML spec is now UTF-8. Issue #149
1773
-
1774
- === 1.8.7 / 2011-08-04
1775
-
1776
- * Bug fixes:
1777
- * Added missing require for `gem uninstall --format-executable`
1778
- * The correct name of the executable being uninstalled is now displayed with
1779
- --format-executable
1780
- * Fixed `gem unpack uninstalled_gem` default version picker
1781
- * RubyGems no longer claims a nonexistent gem can be uninstalled
1782
- * `gem which` no longer claims directories are requirable files
1783
- * `gem cleanup` continues cleaning up gems if one can't be uninstalled due
1784
- to permissions. Issue #82
1785
- * Gem repository directories are no longer created world-writable. Patch by
1786
- Sakuro OZAWA. Ruby Bug #4930
1787
-
1788
- === 1.8.6 / 2011-07-25
1789
-
1790
- * 1 minor enhancement:
1791
-
1792
- * Add autorequires and delay startup of RubyGems until require is called.
1793
- See Ruby bug #4962
1794
-
1795
- * 9 bug fixes:
1796
-
1797
- * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
1798
- * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
1799
- * Added missing APPLE_GEM_HOME in paths.
1800
- * Extend YAML::Syck::DefaultKey fixing to `marshal_dump` as well.
1801
- * Fix #29216: check correct bin_dir in check_that_user_bin_dir_is_in_path.
1802
- * Revert Gem.latest_load_paths to working order (PathSupport revert).
1803
- * Restore normalization of GEM_HOME.
1804
- * Handle the Syck DefaultKey problem once and for all.
1805
- * Fix SystemStackError occurring with "gem list -r -a" on 1.9.
1806
-
1807
- === 1.8.5 / 2011-05-31
1808
-
1809
- * 2 minor enhancement:
1810
-
1811
- * The -u option to 'update local source cache' is official deprecated.
1812
- * Remove has_rdoc deprecations from Specification.
1813
-
1814
- * 2 bug fixes:
1815
-
1816
- * Handle bad specs more gracefully.
1817
- * Reset any Gem paths changed in the installer.
1818
-
1819
- === 1.8.4 / 2011-05-25
1820
-
1821
- * 1 minor enhancement:
1822
-
1823
- * Removed default_executable deprecations from Specification.
1824
-
1825
- === 1.8.3 / 2011-05-19
1826
-
1827
- * 4 bug fixes:
1828
-
1829
- * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
1830
- Shota Fukumori
1831
- * Fix test failures for systems with separate ruby versions. Ruby Bug #3808
1832
- by Jeremy Evans
1833
- * Fixed some bad calls left behind after rolling out some refactorings.
1834
- * Syck has a parse error on (good) times output from Psych. (dazuma, et al)
1835
-
1836
- === 1.8.2 / 2011-05-11
1837
-
1838
- * 2 minor enhancements:
1839
-
1840
- * Moved #outdated from OutdatedCommand to Specification (for Isolate).
1841
- * Print out a warning about missing executables.
1842
-
1843
- * 3 bug fixes:
1844
-
1845
- * Added missing requires to fix various upgrade issues.
1846
- * `gem pristine` respects multiple gem repositories.
1847
- * setup.rb now execs with --disable-gems when possible
1848
-
1849
- === 1.8.1 / 2011-05-05
1850
-
1851
- * 1 minor enhancement:
1852
-
1853
- * Added Gem::Requirement#specific? and Gem::Dependency#specific?
1854
-
1855
- * 4 bug fixes:
1856
-
1857
- * Typo on Indexer rendered it useless on Windows
1858
- * gem dep can fetch remote dependencies for non-latest gems again.
1859
- * gem uninstall with multiple versions no longer crashes with ArgumentError
1860
- * Always use binary mode for File.open to keep Windows happy
1861
-
1862
- === 1.8.0 / 2011-04-34
1863
-
1864
- This release focused on properly encapsulating functionality. Most of this
1865
- work focused on moving functionality out of Gem::SourceIndex and
1866
- Gem::GemPathSearcher into Gem::Specification where it belongs.
1867
-
1868
- After installing RubyGems 1.8.0 you will see deprecations when loading your
1869
- exsting gems. Run `gem pristine --all --no-extensions` to regenerate your
1870
- gem specifications safely.
1871
-
1872
- Currently RubyGems does not save the build arguments used to build gems with
1873
- extensions. You will need to run `gem pristine gem_with_extension --
1874
- --build-arg` to regenerate a gem with an extension where it requires special
1875
- build arguments.
1876
-
1877
- * 24(+) Deprecations (WOOT!):
1878
-
1879
- * DependencyList.from_source_index deprecated the source_index argument.
1880
- * Deprecated Dependency.new(/regex/).
1881
- * Deprecated Gem.searcher.
1882
- * Deprecated Gem.source_index and Gem.available?
1883
- * Deprecated Gem: activate_dep, activate_spec, activate,
1884
- report_activate_error, and required_location.
1885
- * Deprecated Gem::all_partials
1886
- * Deprecated Gem::cache_dir
1887
- * Deprecated Gem::cache_gem
1888
- * Deprecated Gem::default_system_source_cache_dir
1889
- * Deprecated Gem::default_user_source_cache_dir
1890
- * Deprecated Platform#empty?
1891
- * Deprecated Specification.cache_gem
1892
- * Deprecated Specification.installation_path
1893
- * Deprecated Specification.loaded, loaded?, and loaded=
1894
- * Deprecated all of Gem::SourceIndex.
1895
- * Deprecated all of Gem::GemPathSearcher.
1896
- * Deprecated Gem::Specification#default_executable.
1897
-
1898
- * 2 major enhancements:
1899
-
1900
- * Gem::SourceIndex functionality has been moved to Gem::Specification.
1901
- Gem::SourceIndex is completely disconnected from Gem::Specification
1902
- * Refactored GemPathSearcher entirely out. RIPMF
1903
-
1904
- * 41 minor enhancements:
1905
-
1906
- * Added CommandManager#unregister_command
1907
- * Added Dependency#matching_specs + to_specs.
1908
- * Added Dependency#to_spec
1909
- * Added Gem.pre_reset_hook/s and post_reset_hook/s.
1910
- * Added GemCommand.reset to reinitialize the singleton
1911
- * Added Specification#activate.
1912
- * Added Specification#activated, activated=, and activated?
1913
- * Added Specification#base_dir.
1914
- * Added Specification#bin_dir and bin_file.
1915
- * Added Specification#cache_dir and cache_file. Aliased cache_gem.
1916
- * Added Specification#doc_dir and ri_dir.
1917
- * Added Specification#find(name_or_dep, *requirements).
1918
- * Added Specification#gem_dir and gems_dir.
1919
- * Added Specification#spec_dir and spec_file.
1920
- * Added Specification.add_spec, add_specs, and remove_spec.
1921
- * Added Specification.all=. If you use this, we will light you on fire.
1922
- * Added Specification.all_names.
1923
- * Added Specification.dirs and dirs=. dirs= resets.
1924
- * Added Specification.find_all_by_name(name, *reqs)
1925
- * Added Specification.latest_specs. SO TINY!
1926
- * Added TestCase#all_spec_names to help clean up tests
1927
- * Added TestCase#assert_path_exists and refute_path_exists. Will move to
1928
- minitest.
1929
- * Gem.sources no longer tries to load sources gem. Only uses default_sources.
1930
- * Installer no longer accepts a source_index option.
1931
- * More low-level integration.
1932
- * Removed Gem::FileOperations since it is a dummy class
1933
- * Removed a comment because I am dumb
1934
- * Removed pkgs/sources/lib/sources.rb
1935
- * Revamped indexer to mostly not use SourceIndex (legacy index requires it).
1936
- * Rewrote our last functional test suite to be happy and fast
1937
- * RubyGems is now under the Ruby License or the MIT license
1938
- * Specification#== now only checks name, version, and platform.
1939
- * Specification#authors= now forcefully flattens contents (bad rspec! no
1940
- cookie!)
1941
- * Specification#eql? checks all fields.
1942
- * Specification#installation_path no longer raises if it hasn't been
1943
- activated.
1944
- * Specification#validate now ensures that authors is not empty.
1945
- * TestCase.util_setup_spec_fetcher no longer returns a SourceIndex.
1946
- * Uninstaller no longer passes around SourceIndex instances
1947
- * Warn on loading bad spec array values (ntlm-http gem has nil in its cert
1948
- chain)
1949
- * `gem pristine` now accepts --no-executables to skip restoring gems with
1950
- extensions.
1951
- * `gem pristine` can now restore multiple gems.
1952
-
1953
- * 6 bug fixes:
1954
-
1955
- * DependencyInstaller passed around a source_index instance but used
1956
- Gem.source_index.
1957
- * Fixed Platform#== and #hash so instances may be used as hash keys.
1958
- * Fixed broken Specification#original_platform. It should never be nil.
1959
- * Gem::Text#format_text now strips trailing whitespace
1960
- * Normalize LOAD_PATH with File.expand_path
1961
- * `gem build` errors should exit 1.
1962
- * `gem pristine` can now restore non-latest gems where the cached gem was
1963
- removed.
1964
-
1965
- === 1.7.1 / 2011-03-32
1966
-
1967
- * 1 bug fix:
1968
- * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
1969
- `rake check_manifest` showing a diff would not exit with an error.)
1970
-
1971
- === 1.7.0 / 2011-03-32
1972
-
1973
- * 16 Deprecations (woot!)
1974
- * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
1975
- cache.
1976
- * Deprecated RemoteFetcher#open_uri_or_path.
1977
- * Deprecated SourceIndex#all_gems.
1978
- * Deprecated SourceIndex#initialize(hash_of_specs).
1979
- * Deprecated SourceIndex.from_installed_gems, from_gems_in, and
1980
- load_specification.
1981
- * Deprecated Specification#has_rdoc, default_executable, and
1982
- test_suite_file(=).
1983
- * Deprecated Specification#has_rdoc= and default_executable=
1984
-
1985
- * 26 minor enhancements:
1986
- * Added stupid simple deprecation module.
1987
- * Added --spec option to `gem unpack` to output a gem's original metadata
1988
- * Added packaging option to Specification#validate
1989
- * Gem.bin_path requires the exec_name argument.
1990
- * Read from cached specs if fetch fails for some reason
1991
- * Refactored Specification#assign_defaults into #initialize.
1992
- * RemoteFetcher#fetch_path now dispatches dynamically to 'fetch_<uri.schema>'
1993
- * Removed Specification @@gather.
1994
- * Removed Specification.attribute.
1995
- * Removed Specification.attribute_alias_singular.
1996
- * Removed Specification.attribute_defaults.
1997
- * Removed Specification.attributes
1998
- * Removed Specification.overwrite_accessor.
1999
- * Removed Specification.read_only.
2000
- * Removed Specification.required_attribute.
2001
- * Removed Specification::SPECIFICATION_VERSION_HISTORY and turned into rdoc
2002
- * Removed blanket rescue in default_executable. Hope it doesn't blow up! :P
2003
- * Removed nearly all metaprogramming from Specification. Yay for
2004
- attr_accessor!
2005
- * SourceIndex#initialize changed to prefer an array of spec dirs, defaulting
2006
- to none.
2007
- * SourceIndex.new is now the preferred way to create SourceIndex instances.
2008
- *gasp*
2009
- * Specification#validate now checks that array attribs are indeed arrays.
2010
- * Specification.default_value is now an instance method.
2011
- * Switched Specification::TODAY to be proper midnight @ UTC
2012
- * Update Gem::RemoteFetcher\'s User-Agent to handle RUBY_ENGINE and
2013
- RUBY_REVISION when patchlevel is -1
2014
- * UpdateCommand#gems_to_update now returns (name, version) pairs.
2015
- * UpdateCommand#which_to_update now takes an optional system argument.
2016
-
2017
- * 11 bug fixes:
2018
- * Added missing remote fetcher require to pristine command (aarnell)
2019
- * Building gems now checks to ensure all required fields are non-nil
2020
- * Fix option parser when summary is nil.
2021
- * Fixed `gem contents` to work with the lightweight specifications
2022
- * Fixed `gem update --system x.y.z` where x.y.z == latest version. (MGPalmer)
2023
- * Fixed gem contents sorting and tests. (MGPalmer)
2024
- * Fixed intermittant problem in `gem fetch` with --platform specified (quix)
2025
- * Fixed lightweight specifications so `gem rdoc` will generate proper
2026
- documentation
2027
- * MockGemUI#terminate_interaction should not raise Gem::SystemExitException.
2028
- (MGPalmer)
2029
- * RubyGems now raises a better error for broken .gem files. Bug #29067 by
2030
- Elias Baixas
2031
- * `gem update` now uniq's command line arguments.
2032
-
2033
- === 1.6.2 / 2011-03-08
2034
-
2035
- Bug Fixes:
2036
-
2037
- * require of an activated gem could cause activation conflicts. Fixes
2038
- Bug #29056 by Dave Verwer.
2039
- * `gem outdated` now works with up-to-date prerelease gems.
2040
-
2041
- === 1.6.1 / 2011-03-03
2042
-
2043
- Bug Fixes:
2044
-
2045
- * Installation no longer fails when a dependency from a version that won't be
2046
- installed is unsatisfied.
2047
- * README.rdoc now shows how to file tickets and get help. Pull Request #40 by
2048
- Aaron Patterson.
2049
- * Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
2050
- * Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
2051
-
2052
- === 1.6.0 / 2011-02-29
2053
-
2054
- 4 Deprecations:
2055
-
2056
- * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
2057
- 'thread' to their applications.
2058
- * Gem.cache is deprecated. Use Gem.source_index.
2059
- * RbConfig.datadir is deprecated. Use Gem.datadir.
2060
- * Gem::LoadError#version_requirements has been removed. Use
2061
- Gem::LoadError#requirement.
2062
-
2063
- 2 Major Enhancements:
2064
-
2065
- * Rewrote how Gem::activate (gem and require) resolves dependencies.
2066
- * Gem::LoadError#version_requirement has been removed. Use
2067
- Gem::LoadError#requirement.
2068
-
2069
- 17 Minor Enhancments:
2070
-
2071
- * Added --key to `gem push` for setting alternate API keys.
2072
- * Added --format-executable support to gem uninstall.
2073
- * Added Gem::DependencyList#clear.
2074
- * Added Gem::DependencyList#remove_specs_unsatisfied_by
2075
- * Added Gem.latest_spec_for, latest_version_for, and latest_rubygems_version.
2076
- * Added Gem::Dependency#merge which merges requirements for two
2077
- dependencies.
2078
- * Added Gem::TestCase#util_spec for faster tests.
2079
- * Added Gem::Specification#dependent_specs.
2080
- * Added Gem::TestCase#new_spec and Gem::TestCase#install_specs.
2081
- * Added flag to include prerelease gems in Gem::SourceIndex#latest_specs.
2082
- * Gem.cache_dir always references the proper cache dir.
2083
- Pass true to support a user path.
2084
- * Gem.cache_gem, given a filename always references the cache gem.
2085
- Pass true to support a user path.
2086
- * Added Gem::Specification#conflicts
2087
- * Removed rdoc gem/require from test_case.rb.
2088
- * Rubygems will no longer let you push if you're using beta or unreleased
2089
- rubygems.
2090
- * Save RAM / GC churn by removing spec.files and rdoc options from
2091
- locally cached gem specifications.
2092
- * SpecFetcher.fetch_spec can now take a string source_uri.
2093
-
2094
- 10 Bug Fixes:
2095
-
2096
- * Added missing require of Gem::RemoteFetcher to the unpack command.
2097
- * RubyGems now completely removes a previous install when reinstalling.
2098
- * Fixed Gem::Installer#generate_bin to only chmod files that exist.
2099
- * Fixed handling of Windows style file:/// uris.
2100
- * Fixed requires in tests. (shota)
2101
- * Fixed script generation on Windows.
2102
- * Fixed test issues if you have older rubygems installed.
2103
- * Gem::DependencyInstaller tests use Gem::Security, add the missing require.
2104
- * Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
2105
- * Gem::Uninstaller now respects --format-executable.
2106
-
2107
- === 1.5.3 / 2011-02-26
2108
-
2109
- Bug Fixes:
2110
-
2111
- * Fix for a bug in Syck which causes install failures for gems packaged with
2112
- Psych. Bug #28965 by Aaron Patterson.
2113
-
2114
- === 1.5.2 / 2011-02-10
2115
-
2116
- Bug Fixes:
2117
-
2118
- * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
2119
-
2120
- === 1.5.1 / 2011-02-09
2121
-
2122
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
2123
-
2124
- Minor Enhancement:
2125
-
2126
- * Added ability to do gem update --system X.Y.Z.
2127
-
2128
- Bug Fixes:
2129
-
2130
- * Scrub !!null YAML from 1.9.2 (install and build).
2131
- * Added missing requires for user_interaction.
2132
- * Wrote option processing tests for gem update.
2133
- * Updated upgrading doco for new gem update --system option.
2134
- * Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
2135
- * RubyGems now enforces ruby 1.8.7 or newer.
2136
-
2137
- === 1.5.0 / 2011-01-31
2138
-
2139
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
2140
-
2141
- Major Enhancements:
2142
-
2143
- * Finally fixed all known 1.9.x issues. Upgrading is now possible!
2144
- * Merged huge 1.3.7/ruby-core changes to master.
2145
-
2146
- Minor Enhancements:
2147
-
2148
- * Added UPGRADING.rdoc to help deal with 1.9 issues.
2149
- * Gem::Format now gives better errors for corrupt gem files and includes paths
2150
- * Pre-install hooks can now abort gem installation by returning false
2151
- * Move shareable TestCase classes to lib/ to help plugin authors with tests.
2152
- * Add post-build hooks that can cancel the gem install
2153
- * Always require custom_require now that require_gem is gone
2154
- * Added GemInstaller accessors for @options so plugins can reference them.
2155
- * Optimized Gem.find_files. ~10% faster than 1.4.2. ~40% faster than ruby 1.9.
2156
- * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
2157
- Erik Hollensbe.
2158
-
2159
- Bug Fixes:
2160
-
2161
- * `gem update` was implicitly doing --system.
2162
- * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
2163
- * Add RubyForge URL to README. Closes #28825
2164
- * 1.9.3: Use chdir {} when building extensions to prevent warnings. Fixes #4337
2165
- * 1.9.2: Fix circular require warning.
2166
- * Make requiring openssl even lazier at request of NaHi
2167
- * `gem unpack` will now download the gem if it is not in the cache. Patch by
2168
- Erik Hollensbe.
2169
- * rubygems-update lists its development dependencies again
2170
-
2171
- === 1.4.2 / 2011-01-06
2172
-
2173
- Bug fixes:
2174
-
2175
- * Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
2176
- * Fixed Gem.find_files.
2177
- * Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
2178
-
2179
- === 1.4.1 / 2010-12-31
2180
-
2181
- Since apparently nobody reads my emails, blog posts or the README:
2182
-
2183
- DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
2184
-
2185
- Bug fix:
2186
-
2187
- * Specification#load was untainting a frozen string (via `gem build *.spec`)
2188
-
2189
- === 1.4.0 / 2010-12-30
2190
-
2191
- NOTE: In order to better maintain rubygems and to get it in sync with
2192
- the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
2193
- switching to a 4-6 week release schedule. This release is the
2194
- precursor to that process and as such may be a bit on the wild side!
2195
- You have been warned!
2196
-
2197
- NOTE: We've switched to git/github. See README.rdoc for details.
2198
-
2199
- New features:
2200
-
2201
- * Added --launch option to `gem server`. (gthiesfeld)
2202
- * Added fuzzy name matching on install failures. (gstark/presidentbeef)
2203
- * Allow searching w/ file extensions: gem which fileutils.rb
2204
- * Progress indicator during download (Ryan Melton)
2205
- * Speed up Gem::Version#<=> by 2-3x in common cases. (raggi)
2206
- * --source is now additive with your current sources.
2207
- Use --clear-sources first to maintain previous behavior.
2208
-
2209
- Bug fixes:
2210
-
2211
- * Dependency "~>"s now respect lower-bound prerelease versions.
2212
- * Ensure the gem directories exist on download.
2213
- * Expand Windows user home candidates for Ruby 1.8. Bug #28371 & #28494
2214
- * Fix find_files to order by version.
2215
- * Fix ivar typo. [Josh Peek]
2216
- * Normalized requires and made many of them lazy.
2217
- Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
2218
- * Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
2219
-
2220
- === 1.3.7 / 2010-05-13
2221
-
2222
- NOTE:
2223
-
2224
- http://rubygems.org is now the default source for downloading gems.
2225
-
2226
- You may have sources set via ~/.gemrc, so you should replace
2227
- http://gems.rubyforge.org with http://rubygems.org
2228
-
2229
- http://gems.rubyforge.org will continue to work for the forseeable future.
2230
-
2231
- New features:
2232
-
2233
- * `gem` commands
2234
- * `gem install` and `gem fetch` now report alternate platforms when a
2235
- matching one couldn't be found.
2236
- * `gem contents` --prefix is now the default as specified in --help. Bug
2237
- #27211 by Mamoru Tasaka.
2238
- * `gem fetch` can fetch of old versions again. Bug #27960 by Eric Hankins.
2239
- * `gem query` and friends output now lists platforms. Bug #27856 by Greg
2240
- Hazel.
2241
- * `gem server` now allows specification of multiple gem dirs for
2242
- documentation. Bug #27573 by Yuki Sonoda.
2243
- * `gem unpack` can unpack gems again. Bug #27872 by Timothy Jones.
2244
- * `gem unpack` now unpacks remote gems.
2245
- * --user-install is no longer the default. If you really liked it, see
2246
- Gem::ConfigFile to learn how to set it by default. (This change was made
2247
- in 1.3.6)
2248
- * RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
2249
-
2250
- Bug fixes:
2251
-
2252
- * Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
2253
- Roger Pack.
2254
- * RubyGems now protects against exceptions being raised by plugins.
2255
- * rubygems/builder now requires user_interaction. Ruby Bug #1040 by Phillip
2256
- Toland.
2257
- * Gem::Dependency support #version_requirements= with a warning. Fix for old
2258
- Rails versions. Bug #27868 by Wei Jen Lu.
2259
- * Gem::PackageTask depends on the package dir like the other rake package
2260
- tasks so dependencies can be hooked up correctly.
2261
-
2262
- === 1.3.6 / 2010-02-17
2263
-
2264
- New features:
2265
-
2266
- * `gem` commands
2267
- * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
2268
- sources
2269
- * `gem dep` now supports --prerelease.
2270
- * `gem fetch` now supports --prerelease.
2271
- * `gem server` now supports --bind. Patch #27357 by Bruno Michel.
2272
- * `gem rdoc` no longer overwrites built documentation. Use --overwrite
2273
- force rebuilding. Patch #25982 by Akinori MUSHA.
2274
- * Captial letters are now allowed in prerelease versions.
2275
-
2276
- Bug fixes:
2277
-
2278
- * Development deps are no longer added to rubygems-update gem so older
2279
- versions can update sucessfully.
2280
- * Installer bugs:
2281
- * Prerelease gems can now depend on non-prerelease gems.
2282
- * Development dependencies are ignored unless explicitly needed. Bug #27608
2283
- by Roger Pack.
2284
- * `gem` commands
2285
- * `gem which` now fails if no paths were found. Adapted patch #27681 by
2286
- Caio Chassot.
2287
- * `gem server` no longer has invalid markup. Bug #27045 by Eric Young.
2288
- * `gem list` and friends show both prerelease and regular gems when
2289
- --prerelease --all is given
2290
- * Gem::Format no longer crashes on empty files. Bug #27292 by Ian Ragsdale.
2291
- * Gem::GemPathSearcher handles nil require_paths. Patch #27334 by Roger Pack.
2292
- * Gem::RemoteFetcher no longer copies the file if it is where we want it.
2293
- Patch #27409 by Jakub Šťastný.
2294
-
2295
- Deprecation Notices:
2296
-
2297
- * lib/rubygems/timer.rb has been removed.
2298
- * Gem::Dependency#version_requirements is deprecated and will be removed on or
2299
- after August 2010.
2300
- * Bulk index update is no longer supported.
2301
- * Gem::manage_gems was removed in 1.3.3.
2302
- * Time::today was removed in 1.3.3.
2303
-
2304
- === 1.3.5 / 2009-07-21
2305
-
2306
- Bug fixes:
2307
-
2308
- * Fix use of prerelease gems.
2309
- * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
2310
-
2311
- Deprecation Notices:
2312
-
2313
- * Bulk index update is no longer supported (the code currently remains, but not
2314
- the tests)
2315
- * Gem::manage_gems was removed in 1.3.3.
2316
- * Time::today was removed in 1.3.3.
2317
-
2318
- === 1.3.4 / 2009-05-03
2319
-
2320
- Bug Fixes:
2321
-
2322
- * Fixed various warnings
2323
- * Gem::ruby_version works correctly for 1.8 branch and trunk
2324
- * Prerelease gems now show up in `gem list` and can be used
2325
- * Fixed option name for `gem setup --format-executable`
2326
- * RubyGems now matches Ruby > 1.9.1 gem paths
2327
- * Gem::RemoteFetcher#download now works for explicit Windows paths across
2328
- drives. Bug #25882 by Lars Christensen
2329
- * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
2330
-
2331
- Deprecation Notices:
2332
-
2333
- * Bulk index update is no longer supported (the code currently remains, but not
2334
- the tests)
2335
- * Gem::manage_gems was removed in 1.3.3.
2336
- * Time::today was removed in 1.3.3.
2337
-
2338
- === 1.3.3 / 2009-05-04
2339
-
2340
- New Features:
2341
-
2342
- * `gem server` allows port names (from /etc/services) with --port.
2343
- * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
2344
- Dobriakov.
2345
- * `gem spec` can retrieve single fields from a spec (like `gem spec rake
2346
- authors`).
2347
- * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
2348
- * RDoc is now generated regardless of Gem::Specification#has_rdoc?
2349
-
2350
- Bug Fixes:
2351
-
2352
- * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
2353
- Eisenberg.
2354
- * Gem.bin_path now escapes paths with spaces.
2355
- * Rake extension builder uses explicit correctly loads rubygems when invoking
2356
- rake.
2357
- * Prerelease versions now match "~>" correctly. Patch #25759 by Yossef
2358
- Mendelssohn.
2359
- * Check bindir for executables, not root when validating. Bug reported by
2360
- David Chelimsky.
2361
- * Remove Time.today, no way to override it before RubyGems loads. Bug #25564
2362
- by Emanuele Vicentini
2363
- * Raise Gem::Exception for #installation_path when not installed. Bug #25741
2364
- by Daniel Berger.
2365
- * Don't raise in Gem::Specification#validate when homepage is nil. Bug #25677
2366
- by Mike Burrows.
2367
- * Uninstall executables from the correct directory. Bug #25555 by Brett
2368
- Eisenberg.
2369
- * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
2370
- reported by Alf Mikula.
2371
-
2372
- Deprecation Notices:
2373
-
2374
- * Gem::manage_gems has been removed.
2375
- * Time::today has been removed early. There was no way to make it warn and be
2376
- easy to override with user code.
2377
-
2378
- === 1.3.2 / 2009-04-15
2379
-
2380
- Select New Features:
2381
-
2382
- * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
2383
- This can be used to add commands (See Gem::CommandManager) or add
2384
- install/uninstall hooks (See Gem::Installer and Gem::Uninstaller).
2385
- * Gem::Version now understands prerelease versions using letters. (eg.
2386
- '1.2.1.b') Thanks to Josh Susser, Alex Vollmer and Phil Hagelberg.
2387
- * RubyGems now includes a Rake task for creating gems which replaces rake's
2388
- Rake::GemPackageTask. See Gem::PackageTask.
2389
- * Gem::find_files now returns paths in $LOAD_PATH.
2390
- * Added Gem::promote_load_path for use with Gem::find_files
2391
- * Added Gem::bin_path to make finding executables easier. Patch #24114 by
2392
- James Tucker.
2393
- * Various improvements to build arguments for installing gems.
2394
- * `gem contents` added --all and --no-prefix.
2395
- * Gem::Specification
2396
- * #validate strips directories and errors on not-files.
2397
- * #description no longer removes newlines.
2398
- * #name must be a String.
2399
- * FIXME and TODO are no longer allowed in various fields.
2400
- * Added support for a license attribute. Feature #11041 (partial).
2401
- * Removed Gem::Specification::list, too much process growth. Bug #23668 by
2402
- Steve Purcell.
2403
- * `gem generate_index`
2404
- * Can now generate an RSS feed.
2405
- * Modern indicies can now be updated incrementally.
2406
- * Legacy indicies can be updated separately from modern.
2407
-
2408
- Select Bugs Fixed:
2409
-
2410
- * Better gem activation error message. Patch #23082.
2411
- * Kernel methods are now private. Patch #20801 by James M. Lawrence.
2412
- * Fixed various usability issues with `gem check`.
2413
- * `gem update` now rescues InstallError and continues. Bug #19268 by Gabriel
2414
- Wilkins.
2415
- * Allow 'https', 'file' as a valid schemes for --source. Patch #22485.
2416
- * `gem install`
2417
- * Now removes existing path before installing. Bug #22837.
2418
- * Uses Gem::bin_path in executable stubs to work around Kernel#load bug in
2419
- 1.9.
2420
- * Correctly handle build args (after --) via the API. Bug #23210.
2421
- * --user-install
2422
- * `gem install --no-user-install` now works. Patch #23573 by Alf Mikula.
2423
- * `gem uninstall` can now uninstall from ~/.gem. Bug #23760 by Roger Pack.
2424
- * setup.rb
2425
- * Clarify RubyGems RDoc installation location. Bug #22656 by Gian Marco
2426
- Gherardi.
2427
- * Allow setup to run from read-only location. Patch #21862 by Luis Herrera.
2428
- * Fixed overwriting ruby executable when BASERUBY was not set. Bug #24958
2429
- by Michael Soulier.
2430
- * Ensure we're in a RubyGems dir when installing.
2431
- * Deal with extraneous quotation mark when autogenerating .bat file on MS
2432
- Windows. Bug #22712.
2433
-
2434
- Deprecation Notices:
2435
-
2436
- * Gem::manage_gems has been removed.
2437
- * Time::today will be removed in RubyGems 1.4.
2438
-
2439
- Special thanks to Chad Wooley for backwards compatibility testing and Luis
2440
- Lavena and Daniel Berger for continuing windows support.
2441
-
2442
- === 1.3.1 / 2008-10-28
2443
-
2444
- Bugs fixed:
2445
-
2446
- * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
2447
- issues related to no uid support under Windows.
2448
- * Fix requires for Gem::inflate, Gem::deflate, etc.
2449
- * Make Gem.dir respect :gemhome value from config. (Note: this feature may be
2450
- removed since it is hard to implement on 1.9.)
2451
- * Kernel methods are now private. Patch #20801 by James M. Lawrence.
2452
- * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
2453
- * Silence PATH warning.
2454
-
2455
- Deprecation Notices:
2456
-
2457
- * Gem::manage_gems will be removed on or after March 2009.
2458
-
2459
- === 1.3.0 / 2008-09-25
2460
-
2461
- New features:
2462
-
2463
- * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
2464
- stdout is not a TTY, except with --both.
2465
- * Added Gem.find_files, allows a gem to discover features provided by other
2466
- gems.
2467
- * Added pre/post (un)install hooks for packagers of RubyGems. (Not for gems
2468
- themselves).
2469
- * RubyGems now installs gems into ~/.gem if GEM_HOME is not writable. Use
2470
- --no-user-install command-line switch to disable this behavior.
2471
- * Fetching specs for update now uses If-Modified-Since requests.
2472
- * RubyGems now updates the ri cache when the rdoc gem is installed and
2473
- documentation is generated.
2474
-
2475
- Deprecation Notices:
2476
-
2477
- * Gem::manage_gems now warns when called. It will be removed on or after March
2478
- 2009.
2479
-
2480
- Bugs Fixed:
2481
-
2482
- * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
2483
- Bug #20775 by Hemant Kumar.
2484
- * RubyGems now uses the regexp we already have for `gem list --installed`. Bug
2485
- #20876 by Nick Hoffman.
2486
- * Platform is now forced to Gem::Platform::RUBY when nil or blank in the
2487
- indexer. Fixes various uninstallable gems.
2488
- * Handle EINVAL on seek. Based on patch in bug #20791 by Neil Wilson.
2489
- * Fix HTTPS support. Patch #21072 by Alex Arnell.
2490
- * RubyGems now loads all cache files even if latest has been loaded. Bug
2491
- #20776 by Uwe Kubosch.
2492
- * RubyGems checks for support of development dependencies for #to_ruby. Bug
2493
- #20778 by Evan Weaver.
2494
- * Now specifications from the future can be loaded.
2495
- * Binary script uninstallation fixed. Bug #21234 by Neil Wilson.
2496
- * Uninstallation with -i fixed. Bug #20812 by John Clayton.
2497
- * Gem::Uninstaller#remove_all now calls Gem::Uninstaller#uninstall_gem so hooks
2498
- get called. Bug #21242 by Neil Wilson.
2499
- * Gem.ruby now properly escaped on windows. Fixes problem with extension
2500
- compilation.
2501
- * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
2502
- * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
2503
-
2504
- Other Changes Include:
2505
-
2506
- * `gem help install` now describes _version_ argument to executable stubs
2507
- * `gem help environment` describes environment variables and ~/.gemrc and
2508
- /etc/gemrc
2509
- * On-disk gemspecs are now read in UTF-8 and written with a UTF-8 magic comment
2510
- * Rakefile
2511
- * If the SETUP_OPTIONS environment variable is set, pass its contents as
2512
- arguments to setup.rb
2513
- * lib/rubygems/platform.rb
2514
- * Remove deprecated constant warnings and really deprecate them. (WIN32,
2515
- etc).
2516
- * lib/rubygems/remote_fetcher.rb
2517
- * Now uses ~/.gem/cache if the cache dir in GEM_HOME is not writable.
2518
- * lib/rubygems/source_index.rb
2519
- * Deprecate options to 'search' other than Gem::Dependency instances and
2520
- issue warning until November 2008.
2521
- * setup.rb
2522
- * --destdir folder structure now built using Pathname, so it works for
2523
- Windows platforms.
2524
- * test/*
2525
- * Fixes to run tests when under test/rubygems/. Patch by Yusuke ENDOH
2526
- [ruby-core:17353].
2527
- * test/test_ext_configure_builder.rb
2528
- * Locale-free patch by Yusuke Endoh [ruby-core:17444].
2529
-
2530
- === 1.2.0 / 2008-06-21
2531
-
2532
- New features:
2533
-
2534
- * RubyGems no longer performs bulk updates and instead only fetches the gemspec
2535
- files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
2536
- allow RubyGems to take advantage of the new metadata updater. If a pre 1.2
2537
- remote source is in the sources list, RubyGems will revert to the bulk update
2538
- code for compatibility.
2539
- * RubyGems now has runtime and development dependency types. Use
2540
- #add_development_dependency and #add_runtime_dependency. All typeless
2541
- dependencies are considered to be runtime dependencies.
2542
- * RubyGems will now require rubygems/defaults/operating_system.rb and
2543
- rubygems/defaults/#{RBX_ENGINE}.rb if they exist. This allows packagers and
2544
- ruby implementers to add custom behavior to RubyGems via these files. (If
2545
- the RubyGems API is insufficient, please suggest improvements via the
2546
- RubyGems list.)
2547
- * /etc/gemrc (and windows equivalent) for global settings
2548
- * setup.rb now handles --vendor and --destdir for packagers
2549
- * `gem stale` command that lists gems by last access time
2550
-
2551
- Bugs Fixed:
2552
-
2553
- * File modes from gems are now honored, patch #19737
2554
- * Marshal Gem::Specification objects from the future can now be loaded.
2555
- * A trailing / is now added to remote sources when missing, bug #20134
2556
- * Gems with legacy platforms will now be correctly uninstalled, patch #19877
2557
- * `gem install --no-wrappers` followed by `gem install --wrappers` no longer
2558
- overwrites executables
2559
- * `gem pristine` now forces reinstallation of gems, bug #20387
2560
- * RubyGems gracefully handles ^C while loading .gemspec files from disk, bug
2561
- #20523
2562
- * Paths are expanded in more places, bug #19317, bug #19896
2563
- * Gem::DependencyInstaller resets installed gems every install, bug #19444
2564
- * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
2565
-
2566
- Other Changes Include:
2567
-
2568
- * setup.rb
2569
- * stub files created by RubyGems 0.7.x and older are no longer removed. When
2570
- upgrading from these ancient versions, upgrade to 1.1.x first to clean up
2571
- stubs.
2572
- * RDoc is no longer required until necessary, patch #20414
2573
- * `gem server`
2574
- * Now completely matches the output of `gem generate_index` and
2575
- has correct content types
2576
- * Refreshes from source directories for every hit. The server will no longer
2577
- need to be restarted after installing gems.
2578
- * `gem query --details` and friends now display author, homepage, rubyforge url
2579
- and installed location
2580
- * `gem install` without -i no longer reinstalls dependencies if they are in
2581
- GEM_PATH but not in GEM_HOME
2582
- * Gem::RemoteFetcher now performs persistent connections for HEAD requests,
2583
- bug #7973
2584
-
2585
- === 1.1.1 / 2008-04-11
2586
-
2587
- Bugs Fixed:
2588
-
2589
- * Gem.prefix now returns non-nil only when RubyGems was installed outside
2590
- sitelibdir or libdir.
2591
- * The `gem server` gem list now correctly links to gem details.
2592
- * `gem update --system` now passes --no-format-executable to setup.rb.
2593
- * Gem::SourceIndex#refresh! now works with multiple gem repositories.
2594
- * Downloaded gems now go into --install-dir's cache directory.
2595
- * Various fixes to downloading gem metadata.
2596
- * `gem install --force` now ignores network errors too.
2597
- * `gem pristine` now rebuilds extensions.
2598
- * `gem update --system` now works on virgin Apple ruby.
2599
- * Gem::RemoteFetcher handles Errno::ECONNABORTED.
2600
- * Printing of release notes fixed.
2601
-
2602
- === 1.1.0 / 2008-03-29
2603
-
2604
- New features:
2605
-
2606
- * RubyGems now uses persistent connections on index updates. Index updates are
2607
- much faster now.
2608
- * RubyGems only updates from a latest index by default, cutting candidate gems
2609
- for updates to roughly 1/4 (at present). Index updates are even faster
2610
- still.
2611
- * `gem list -r` may only show the latest version of a gem, add --all to see
2612
- all gems.
2613
- * `gem spec` now extracts specifications from .gem files.
2614
- * `gem query --installed` to aid automation of checking for gems.
2615
-
2616
- Bugs Fixed:
2617
-
2618
- * RubyGems works with both Config and RbConfig now.
2619
- * Executables are now cleaned upon uninstall.
2620
- * You can now uninstall from a particular directory.
2621
- * Updating from non-default sources fixed.
2622
- * Executable stubs now use ruby install name in shebang.
2623
- * `gem unpack` checks every directory in Gem.path now.
2624
- * `gem install` now exits with non-zero exit code when appropriate.
2625
- * `gem update` only updates gems that need updates.
2626
- * `gem update` doesn't force remote-only updates.
2627
- * `gem update` handles dependencies properly when updating.
2628
- * Gems are now loaded in Gem.path order.
2629
- * Gem stub scripts on windows now work outside Gem.bindir.
2630
- * `gem sources -r` now works without network access.
2631
-
2632
- Other Changes Include:
2633
-
2634
- * RubyGems now requires Ruby > 1.8.3.
2635
- * Release notes are now printed upon installation.
2636
- * `gem env path` now prints a usable path.
2637
- * `gem install` reverts to local-only installation upon network error.
2638
- * Tar handling code refactoring and cleanup.
2639
- * Gem::DependencyInstaller's API has changed.
2640
-
2641
- For a full list of changes to RubyGems, see the ChangeLog file.
2642
-
2643
- === 1.0.1 / 2007-12-20
2644
-
2645
- Bugs Fixed:
2646
-
2647
- * Installation on Ruby 1.8.3 through 1.8.5 fixed
2648
- * `gem build` on 1.8.3 fixed
2649
-
2650
- Other Changes Include:
2651
-
2652
- * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
2653
- this is official in RubyGems 1.0.1.
2654
-
2655
- === 1.0.0 / 2007-12-20
2656
-
2657
- Major New Features Include:
2658
-
2659
- * RubyGems warns about various problems with gemspecs during gem building
2660
- * More-consistent versioning for the RubyGems software
2661
-
2662
- Other Changes Include:
2663
-
2664
- * Fixed various bugs and problems with installing gems on Windows
2665
- * Fixed using `gem server` for installing gems
2666
- * Various operations are even more verbose with --verbose
2667
- * Built gems are now backwards compatible with 0.9.4
2668
- * Improved detection of RUBYOPT loading rubygems
2669
- * `ruby setup.rb` now has a --help option
2670
- * Gem::Specification#bindir is now respected on installation
2671
- * Executable stubs can now be installed to match ruby's name, so if ruby is
2672
- installed as 'ruby18', foo_exec will be installed as 'foo_exec18'
2673
- * `gem unpack` can now unpack into a specific directory with --target
2674
- * OpenSSL is no longer required by default
2675
-
2676
- Deprecations and Deletions:
2677
-
2678
- * Kernel#require_gem has been removed
2679
- * Executables without a shebang will not be wrapped in a future version, this
2680
- may cause such executables to fail to operate on installation
2681
- * Gem::Platform constants other than RUBY and CURRENT have been removed
2682
- * Gem::RemoteInstaller was removed
2683
- * Gem::Specification#test_suite_file and #test_suite_file= are deprecated in
2684
- favor of #test_file and #test_file=
2685
- * Gem::Specification#autorequire= has been deprecated
2686
- * Time::today will be removed in a future version
2687
-
2688
- === 0.9.5 / 2007-11-19
2689
-
2690
- Major New Features Include:
2691
-
2692
- * Platform support
2693
- * Automatic installation of platform gems
2694
- * New bandwidth and memory friendlier index file format
2695
- * "Offline" mode (--no-update-sources)
2696
- * Bulk update threshold can be specified (-B, --bulk-threshold)
2697
- * New `gem fetch` command
2698
- * `gem` now has "really verbose" output when you specify -v
2699
- * Improved stubs and `gem.bat` on mswin, including better compatiblity
2700
- with the One-Click Installer.
2701
-
2702
- Other Changes Include:
2703
-
2704
- * Time::today is deprecated and will be removed at a future date
2705
- * Gem::manage_gems is deprecated and will be removed at a future date
2706
- * `gem install --include-dependencies` (-y) is now deprecated since it is the
2707
- default, use --ignore-dependencies to turn off automatic dependency
2708
- installation
2709
- * Multi-version diamond dependencies only are installed once
2710
- * Processing a YAML bulk index update takes less memory
2711
- * `gem install -i` makes sure all depenencies are installed
2712
- * `gem update --system` reinstalls into the prefix it was originally installed
2713
- in
2714
- * `gem update --system` respects --no-rdoc and --no-ri flags
2715
- * HTTP basic authentication support for proxies
2716
- * Gem::Specification#platforms should no longer be a String, use
2717
- Gem::Platform::CURRENT when building binary gems instead
2718
- * `gem env` has more diagnostic information
2719
- * require 'rubygems' loads less code
2720
- * sources.gem is gone, RubyGems now uses built-in defaults
2721
- * `gem install --source` will no longer add --source by default, use `gem
2722
- sources --add` to make it a permanent extra source
2723
- * `gem query` (list) no longer prints details by default
2724
- * Exact gem names are matched in various places
2725
- * mkrf extensions are now supported
2726
- * A gem can depend on a specific RubyGems version
2727
- * `gem_server` is now `gem server`
2728
- * `gemlock` is now `gem lock`
2729
- * `gem_mirror` is now `gem mirror`
2730
- * `gemwhich` is now `gem which`
2731
- * `gemri` is no longer included with RubyGems
2732
- * `index_gem_repository.rb` is now `gem generate_index`
2733
- * `gem` performs more validation of parameters
2734
- * Custom rdoc styles are now supported
2735
- * Gem indexer no longer removes quick index during index creation
2736
- * Kernel#require only rescues a LoadError for the file being required now
2737
- * `gem dependencies` can now display some information for remote gems
2738
- * Updating RubyGems now works with RUBYOPT=-rubygems
2739
-
2740
- Special thanks to:
2741
-
2742
- * Daniel Berger
2743
- * Luis Lavena
2744
- * Tom Copeland
2745
- * Wilson Bilkovich
2746
-
2747
- === 0.9.4 / 2007-05-23
2748
-
2749
- If you are experiencing problems with the source index (e.g. strange
2750
- "No Method" errors), or problems with zlib (e.g. "Buffer Error"
2751
- messsage), we recommend upgrading to RubyGems 0.9.4.
2752
-
2753
- Bug Fixes Include:
2754
-
2755
- * Several people have been experiencing problems with no method errors
2756
- on the source index cache. The source index cache is now a bit more
2757
- self healing. Furthermore, if the source index cache is
2758
- irreparable, then it is automatically dropped and reloaded.
2759
- * The source cache files may now be dropped with the "gem sources
2760
- --clear-all" command. (This command may require root is the system
2761
- source cache is in a root protected area).
2762
- * Several sub-commands were accidently dropped from the "gem" command.
2763
- These commands have been restored.
2764
-
2765
- === 0.9.3 / 2007-05-10
2766
-
2767
- Bug Fixes Include:
2768
-
2769
- The ZLib library on Windows will occasionally complains about a buffer error
2770
- when unpacking gems. The Gems software has a workaround for that problem, but
2771
- the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
2772
- have received several reports of the error occuring with ZLib 1.2.3, so we
2773
- have permanently enabled the work around on all versions.
2774
-
2775
- === 0.9.2 / 2007-02-05
2776
-
2777
- Bug Fixes Include:
2778
-
2779
- * The "unpack" command now works properly.
2780
- * User name and password are now passed properly to the authenticating
2781
- proxy when downloading gems.
2782
-
2783
- === 0.9.1 / 2007-01-16
2784
-
2785
- See ChangeLog
2786
-
2787
- === 0.9.0 / 2006-06-28
2788
-
2789
- Finally, the much anticipated RubyGems version 0.9.0 is now available.
2790
- This release includes a number of new features and bug fixes. The
2791
- number one change is that we can now download the gem index
2792
- incrementally. This will greatly speed up the gem command when only a
2793
- few gems are out of date.
2794
-
2795
- Major Enhancments include:
2796
-
2797
- * The gem index is now downloaded incrementally, only updating entries
2798
- that are out of date. If more than 50 entries are out of date, we
2799
- revert back to a bulk download.
2800
- * Several patches related to allowing RubyGems to work with
2801
- authenticating proxies (from Danie Roux and Anatol Pomozov). Just
2802
- put the user and password in the proxy URL (e.g. -p
2803
- http://user:password@proxy.address.com:8080) or use the
2804
- HTTP_PROXY_USER and HTTP_PROXY_PASS environment variables.
2805
- * The gem unpack command can now accept a file path rather than just a
2806
- install gem name.
2807
- * Both RI and RDOC documents are now generated by default.
2808
- * A gemri command is included to read gem RI docs (only needed for
2809
- Ruby 1.8.4 or earlier).
2810
-
2811
- Minor enhancements include:
2812
-
2813
- * Verison 0.0.0 is now a valid gem version.
2814
- * Better detection of missing SSL functionality.
2815
- * SSL is not required if the security policy does not require
2816
- signature checking.
2817
- * Rake built extensions are now supported (Tilman Sauerbeck).
2818
- * Several autorequire bug fixes.
2819
- * --traceback is now an alias for --backtrace (I can never remember
2820
- which one it is).
2821
- * SAFE=1 compatibility fixes.
2822
- * .rbw is now a supported suffix for RubyGem's custom require.
2823
- * Several Ruby 1.9 compatibility fixes (Eric Hodel).
2824
-
2825
- Bug Fixes:
2826
-
2827
- * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
2828
- cross-Ruby version compatibility issues.
2829
- * Fixed bug where the wrong executables could be uninstalled (Eric
2830
- Hodel).
2831
- * Fixed bug where gem unpack occasionally unpacked the wrong gem.
2832
- * Fixed bug where a fatal error occured when permissions on .gemrc
2833
- were too restrictive (reported by Luca Pireddu).
2834
- * Fixed prefix handling for native expressions (patch by Aaron Patterson).
2835
- * Fixed several Upgrade => Update typos.
2836
-
2837
- === 0.8.11 / 2005-07-13
2838
-
2839
- * -y is a synonym for --include-dependencies.
2840
- * Better handling of errors in the top level rescue clause.
2841
- * Package list command (e.g. gem inspect GEM).
2842
- * .gemrc now allows cvsrc-like options to set defaults per subcommand.
2843
- * The autorequire gem spec field will now accept a list.
2844
- * Substituted Time for Date in specs, increasing performance
2845
- dramatically.
2846
- * Fixed reported bug of gem directories ending in "-" (reported by
2847
- Erik Hatcher).
2848
- * Fixed but in installer that caused dependency installation to not
2849
- work.
2850
- * Added Paul Duncan's gem signing patch.
2851
- * Added Mark Hubbart's Framework patch (for better integration with OS
2852
- X).
2853
- * Added David Glasser's install-from-mirror patch.
2854
- * Additional internal structural cleanup and test reorganization.
2855
-
2856
- === 0.8.10 / 2005-03-27
2857
-
2858
- * In multi-user environments, it is common to supply mulitple versions of gems
2859
- (for example Rails), allowing individual users to select the version of the
2860
- gem they desire. This allows a user to be insulated from updates to that
2861
- gem. RubyGems 0.8.10 fixes a problem where gems could occasionally become
2862
- confused about the current versions of libraries selected by the user.
2863
- * The other annoying bug is that if there are any existing rubygems-update gems
2864
- installed, then the "gem update --system" command will download a new
2865
- update, but install the latest update prior to the download.
2866
-
2867
- === 0.8.9
2868
-
2869
- Never released
2870
-
2871
- === 0.8.8 / 2005-03-14
2872
-
2873
- * Moved the master definition of class Requirement back under version.
2874
- Kept the body of Requirement under Gem.
2875
-
2876
- === 0.8.7 / 2005-03-14
2877
-
2878
- Even though it has only been a few weeks since that last release,
2879
- there are quite a number of new features in 0.8.7. A complete list of
2880
- new features will be given below, but here is a summary of the hot
2881
- items.
2882
-
2883
- * The bug that prevented some users from installing rails has been
2884
- squashed. A big thanks to Bill Guindon (aGorilla) for helping track
2885
- that one down.
2886
-
2887
- There are several new commands available on the gem command:
2888
-
2889
- * gem cleanup GEMNAME -- Cleanup (uninstall) all the old versions of
2890
- gem. If the gem name is omitted, the entire repository is cleaned.
2891
- * gem dependency GEMNAME -- Show the dependencies for the named gems.
2892
- This is really helpful when trying to figure out what gem needs what
2893
- other gem.
2894
-
2895
- There changes to the existing commands as well.
2896
-
2897
- * gem uninstall is much smarter about removing gems from the
2898
- repository. Lists of gems are now uninstalled in proper dependency
2899
- order (ie. if A depends on B, A is uninstalled first). Also,
2900
- warnings about broken dependencies occur only when removing the
2901
- *last* gem that supports a dependency is removed.
2902
-
2903
- Both gem install and gem uninstall support some new command line
2904
- options that can reduce the amount of yes/no queries given the user.
2905
- For install we have:
2906
-
2907
- * --ignore-dependencies -- Only install requests gems, no
2908
- dependendecies are automatically installed.
2909
- * --include-dependencies -- Automatically install dependencies,
2910
- without confirmation.
2911
-
2912
- For gem uninstall, the new options are:
2913
-
2914
- * --all -- Uninstall all matching gems without confirmation.
2915
- * --ignore-dependencies -- Uninstall, even if dependencies are broken.
2916
- * --executables -- Remove executables without confirmation
2917
-
2918
- Under general cleanup, gems will not, by default, run RDoc on packages
2919
- that do not have the RDoc flag set.
2920
-
2921
- And finally there is a new library file 'gemconfigure' to aid in
2922
- writing version sensitive applications (without undue dependencies on
2923
- RubyGems); and 'gemwhich', a short script to locate libraries in the
2924
- file system. You can read more about them here:
2925
-
2926
- * gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
2927
- * gemwhich: http://docs.rubygems.org/read/chapter/17
2928
-
2929
- === 0.8.6 / 2005-02-27
2930
-
2931
- * Fixed a small bug with shebang construction
2932
-
2933
- === 0.8.5 / 2005-02-26
2934
-
2935
- Do you know how you used to dread getting the following message while
2936
- installing gems?
2937
-
2938
- Updating Gem source index for: http://gems.rubyforge.org
2939
-
2940
- It could take up to 30 seconds (on my machine, even worse on others) for
2941
- that crazy source index to update.
2942
-
2943
- This latest release of RubyGems speeds that wait time up considerably.
2944
- The following table gives the following times for installing RedCloth
2945
- with a required source index update on three system we had available to
2946
- us. No RDoc generation was included in the following times.
2947
-
2948
- RubyGems Linux Mac OSX Windows
2949
- 0.8.4 33 secs 73 secs 58 secs
2950
- 0.8.5 8 secs 14 secs 21 secs
2951
-
2952
- The new caching code is at least 3x faster than previous versions. Woo
2953
- Hoo!
2954
-
2955
- === 0.8.4 / 2005-01-01
2956
-
2957
- * Rubygems 0.8.3's installer was broken unless you already had an older
2958
- version of RubyGems installed. That's fixed.
2959
- * Change in the way Gem::Specification internally deals with lazy attributes
2960
- and defaults, bringing (with some loadpath_manager changes) a fairly
2961
- significant increase in speed.
2962
- * Support for lower-cased Gem file names (for you, Paul Duncan :)
2963
- * Erik Veenstra's patch for making Gem versions sortable.
2964
-
2965
- === 0.8.3 / 2004-12-07
2966
-
2967
- No real earth shattering news here, but there were a number of really
2968
- annoying issues involving other libraries that RubyGems depends upon.
2969
- 0.8.3 contains some workarounds for these issues. In particular:
2970
-
2971
- * Added workaround for the null byte in Dir string issue. (see
2972
- http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/121702).
2973
- (Thanks to Mauricio Fernández for the quick response on this one).
2974
- * Added workaround for old version of Zlib on windows that caused
2975
- Ruwiki to fail to install. (see
2976
- http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/121770)
2977
- * Added workaround for large YAML file issues. (We dynamically cut
2978
- down the size of the source index YAML file and seem to have worked
2979
- around immediate issues.
2980
-
2981
- There has been some minor usability enhancements and changes ...
2982
-
2983
- * A user specific source index cache can be used when the site-wide
2984
- cache is unwritable (i.e. because you are running as a non-admin).
2985
- This *greatly* speeds up gem commands run in non-admin mode when the
2986
- site-wide cache is out of date.
2987
- * The gem command now used an HTTP HEAD command to detect if the
2988
- server's source index needs to be downloaed.
2989
- * gem check gemname --test will run unit tests on installed gems that
2990
- have unit tests.
2991
- * Multiple gem names are allowed on the gem install command line.
2992
- This means you can do:
2993
-
2994
- gem install rake rails needle postgres-pr pimki
2995
-
2996
- (Ok, you get the idea)
2997
- * Multiple authors my be specified in a Gem spec.
2998
- * Switched to using setup.rb (rather than a custom install script) for
2999
- the installation of RubyGems itself. If you have installed RubyGems
3000
- before, double check the installation instructions and make sure you
3001
- use setup.rb instead of install.rb.
3002
- * Ryan Davis has provided a patch so you can use an env variable
3003
- (GEM_SKIP), to tell loadpath_manager not to load gems of those
3004
- names. This was useful for him while testing libs that he had in
3005
- development.
3006
-
3007
- === 0.8.1 / 2004-09-17
3008
-
3009
- * Quick release to capture some bug fixes.
3010
-
3011
- === 0.8.0 / 2004-09-15
3012
-
3013
- * Remove need for library stubs. Set the RUBYOPT environment variable to
3014
- include "rrubygems", and a normal require will find gem files. Continue to
3015
- use 'require_gem gem_name, version' to specify gem versions.
3016
- * Deprecated "test_suite_file" gemspec attribute in favor of "test_files" array.
3017
- * Generates rdoc by default on installs.
3018
- * Adopted tar/gzip file format, thanks to Mauricio Fernandez.
3019
- * "gem rdoc" allows generation of rdoc after gem installation (will add a "gem
3020
- test"
3021
- * Application stubs can now accept an optional parameter of _VERSION_ that will
3022
- run an arbitrary version of the application requested.
3023
- * Various bug fixes
3024
- * Various platform-independency improvements
3025
- * "gem spec --all" displays spec info for all installed version of a given gem.
3026
- * Dynamic caching of sources
3027
- * Support for user-definable sources on the command line (thanks Assaph Mehr)
3028
- * More intelligent support for platform-dependent gems. Use Platform::CURRENT
3029
- when building a gem to set its platform to the one you're building on.
3030
- Installation displays a choice of platform-dependent gems, allowing the user
3031
- to pick.
3032
- * Added "gem unpack" for "unpacking" a gem to the current directory
3033
-
3034
- === 0.7.0 / 2004-07-09
3035
-
3036
- See ChangeLog
3037
-
3038
- === 0.6.1 / 2004-06-08
3039
-
3040
- See ChangeLog
3041
-
3042
- === 0.6.0 / 2004-06-08
3043
-
3044
- * Collapse output of --search and --list (and gem_server) operations so that
3045
- each gem is listed only once, with each of its versions listed on the same
3046
- line.
3047
- * bin/gem: new --upgrade-all option allows one to upgrade every installed gem
3048
- * new #required_ruby_version attribute added to gem specification for
3049
- specifying a dependency on which version of ruby the gem needs. Format it
3050
- accepts is the same as the Gem::Version::Requirement format:
3051
-
3052
- spec.required_ruby_version = "> 1.8.0"
3053
- * --install-stub defaults to true, so library stubs are created
3054
-
3055
- === 0.5.0 / 2004-06-06
3056
-
3057
- * Jim added the ability to specify version constraints to avoid API
3058
- incompatibilities. This has been the subject of much debate for the past
3059
- couple of months, with many ideas and code contributed by Eivind Eklund and
3060
- Mauricio Fernandez. The following set of assertions shows how it works:
3061
-
3062
- assert_inadequate("1.3", "~> 1.4")
3063
- assert_adequate( "1.4", "~> 1.4")
3064
- assert_adequate( "1.5", "~> 1.4")
3065
- assert_inadequate("2.0", "~> 1.4") # This one is key--the new operator
3066
- # disallows major version number
3067
- # differences.
3068
- * Group gem search output when multiple versions exist for a given gem:
3069
-
3070
- activerecord (0.7.8, 0.7.7, 0.7.6, 0.7.5)
3071
- Implements the ActiveRecord pattern for ORM.
3072
- * Add arbitrary RDoc-able files via gemspec (not just Ruby source files) for
3073
- people who have, for example, README.rdoc in their distributions. Add to
3074
- gemspec via: spec.extra_rdoc_files = ["list", "of", "files"]. Ruby files are
3075
- automatically included.
3076
- * Some small bug fixes
3077
-
3078
- === 0.4.0 / 2004-05-30
3079
-
3080
- * Minor bug fixes including Windows compatability issues
3081
-
3082
- === 0.3.0 / 2004-04-30
3083
-
3084
- * Cleanup of command-line arguments and handling. Most commands accept a
3085
- --local or --remote modifier.
3086
- * Creation of Application Gems (packages that include executable programs).
3087
- See http://rubygems.rubyforge.org/wiki/wiki.pl?DeveloperGuide for information
3088
- on how to use it.
3089
- * Basic functionality for installing binary gems from source (:extensions
3090
- property of gem specification holds an array of paths to extconf.rb files to
3091
- be used for compilation)
3092
- * Install library "stub" allowing a normal 'require' to work (which then does
3093
- the rubygems require and 'require_gem'
3094
- * --run-tests runs the test suite specified by the "test_suite_file" property
3095
- of a gem specification
3096
- * HTTP Proxy support works. Rewrite of HTTP code.
3097
- * Unit and functional tests added (see Rakefile).
3098
- * Prompt before remote-installing dependencies during gem installation.
3099
- * Config file for storing preferences for 'gem' command usage.
3100
- * Generally improved error messages (still more work to do)
3101
- * Rearranged gem directory structure for cleanliness.
3102
-
3103
- === 0.2.0 / 2004-03-14
3104
-
3105
- * Initial public release