| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-02-01 | [ruby/irb] Reset history counter even when @loaded_history_lines is | Stan Lo | |
| not defined (https://github.com/ruby/irb/pull/853) The issue (https://github.com/ruby/debug/issues/1064) is caused by a combination of factors: 1. When user starts an IRB session without a history file, the `@loaded_history_lines` ivar is not defined. 2. If the user then starts the `irb:rdbg` session, the history counter is not set, because the `@loaded_history_lines` is not defined. 3. Because `irb:rdbg` saves the history before passing Ruby expression to the debugger, it saves the history with duplicated lines. The number grows in exponential order. 4. When the user exits the `irb:rdbg` session, the history file could be bloated with duplicated lines. This commit fixes the issue by resetting the history counter even when `@loaded_history_lines` is not defined. https://github.com/ruby/irb/commit/4afc98c258 | |||
| 2024-02-01 | [ruby/irb] Skip re-setup when creating a child session | Nuno Silva | |
| (https://github.com/ruby/irb/pull/850) https://github.com/ruby/irb/commit/06b2d00dd3 | |||
| 2024-01-31 | [rubygems/rubygems] Fix musl platform not being added to the lockfile | David Rodriguez | |
| https://github.com/rubygems/rubygems/commit/235f7b4266 | |||
| 2024-01-31 | [ruby/yaml] Make PStore support as optional | Hiroshi SHIBATA | |
| https://github.com/ruby/yaml/commit/da421ce46f | |||
| 2024-01-30 | [ruby/prism] Fix up CI | Kevin Newton | |
| https://github.com/ruby/prism/commit/224ea85565 | |||
| 2024-01-30 | Update forwarding locals for prism | Aaron Patterson | |
| 2024-01-30 | [ruby/irb] Fix undef and alias indent | tomoya ishida | |
| (https://github.com/ruby/irb/pull/838) https://github.com/ruby/irb/commit/a641746b18 | |||
| 2024-01-30 | [rubygems/rubygems] Update namespace Gem::Resolver::Molinillo to Gem::Molinillo | Hiroshi SHIBATA | |
| https://github.com/rubygems/rubygems/commit/6c4caf3ab0 | |||
| 2024-01-30 | [rubygems/rubygems] Rename molinillo wrapper file to vendored_molinillo.rb | Hiroshi SHIBATA | |
| https://github.com/rubygems/rubygems/commit/d7c15f6fd7 | |||
| 2024-01-30 | Move molinillo under the vendor directory | Hiroshi SHIBATA | |
| 2024-01-30 | Move tsort under the vendor directory | Hiroshi SHIBATA | |
| 2024-01-30 | Move timeout under the vendor directory | Hiroshi SHIBATA | |
| 2024-01-30 | Move net-http under the vendor directory | Hiroshi SHIBATA | |
| 2024-01-30 | Move net-protocol under the vendor directory | Hiroshi SHIBATA | |
| 2024-01-30 | Move optparse under the vendor directory | Hiroshi SHIBATA | |
| 2024-01-30 | Move resolv under the vendor directory | Hiroshi SHIBATA | |
| 2024-01-29 | [rubygems/rubygems] Improve gem login scope selection | Willian Tenfen W | |
| https://github.com/rubygems/rubygems/commit/26c7abe5f6 | |||
| 2024-01-29 | [ruby/prism] Raise diagnostics for parser | Kevin Newton | |
| https://github.com/ruby/prism/commit/102b4a16f5 | |||
| 2024-01-29 | [rubygems/rubygems] Remove `travis_removal_info` | Masato Ohba | |
| `travis_removal_info` is added by https://github.com/rubygems/rubygems/pull/6150. According to the comment, it's supposed to be removed at bundler v2.5.0 but it hasn't. https://github.com/rubygems/rubygems/commit/e18797d43f | |||
| 2024-01-29 | [rubygems/rubygems] Simplify how extensions are built | David Rodríguez | |
| https://github.com/rubygems/rubygems/commit/0b8faf1e39 | |||
| 2024-01-29 | [rubygems/rubygems] Remove now unnecessary elseif | David Rodríguez | |
| https://github.com/rubygems/rubygems/commit/d05b9e659b Co-authored-by: Samuel Giddins <segiddins@segiddins.me> | |||
| 2024-01-29 | [rubygems/rubygems] Properly restore empty env vars | David Rodríguez | |
| https://github.com/rubygems/rubygems/commit/e0d68a8688 | |||
| 2024-01-29 | Removed duplicated license file | Hiroshi SHIBATA | |
| 2024-01-29 | [rubygems/rubygems] Use rubygems vendored uri from Bundler when available | David Rodríguez | |
| https://github.com/rubygems/rubygems/commit/5d6a8f2fb4 | |||
| 2024-01-29 | Vendor uri gem in RubyGems | David Rodríguez | |
| 2024-01-29 | [rubygems/rubygems] Require vendored_uri file in Bundler | David Rodríguez | |
| https://github.com/rubygems/rubygems/commit/62bc261042 | |||
| 2024-01-28 | [ruby/reline] Add metadata for rubygems.org | Masato Nakamura | |
| (https://github.com/ruby/reline/pull/638) https://github.com/ruby/reline/commit/d3a324d22c | |||
| 2024-01-28 | [ruby/prism] Handle implicit rest in array pattern for parser gem | Kevin Newton | |
| https://github.com/ruby/prism/commit/d3722d6660 | |||
| 2024-01-27 | [ruby/prism] Add parser translation | Kevin Newton | |
| https://github.com/ruby/prism/commit/8cdec8070c | |||
| 2024-01-27 | [ruby/prism] Error follow-up | Kevin Newton | |
| Split up the diagnostic levels so that error and warning levels aren't mixed. Also fix up deconstruct_keys implementation. https://github.com/ruby/prism/commit/bd3eeb308d Co-authored-by: Benoit Daloze <eregontp@gmail.com> | |||
| 2024-01-27 | [ruby/prism] Call #inspect on diagnostic levels | Benoit Daloze | |
| * So it's clear it is a Symbol. Before: ... @level=warning_verbose_true> After: ... @level=:warning_verbose_true> https://github.com/ruby/prism/commit/84503643b9 | |||
| 2024-01-27 | [rubygems/rubygems] Bump Ruby version to be used in `bundle gem` template | Masato Ohba | |
| since 2.6 and 2.7 are EOL and bundler dropped their support by https://github.com/rubygems/rubygems/pull/7116. https://github.com/rubygems/rubygems/commit/b562d9a822 | |||
| 2024-01-27 | [ruby/prism] Bring back #arg_rest local | Kevin Newton | |
| https://github.com/ruby/prism/commit/9b6907b727 | |||
| 2024-01-26 | [ruby/prism] Add level to warnings and errors to categorize them | Benoit Daloze | |
| * Fixes https://github.com/ruby/prism/issues/2082 https://github.com/ruby/prism/commit/7a74576357 | |||
| 2024-01-25 | [ruby/prism] Fix Ruby head build | Kevin Newton | |
| https://github.com/ruby/prism/commit/149e2ff7f6 | |||
| 2024-01-25 | [ruby/irb] Reword history file documentation and fix typo | Eddie Lebow | |
| (https://github.com/ruby/irb/pull/842) https://github.com/ruby/irb/commit/bbabf818c7 | |||
| 2024-01-25 | [ruby/irb] Synatx ==> Syntax | ydah | |
| https://github.com/ruby/irb/commit/2ffacaa031 | |||
| 2024-01-25 | [ruby/irb] assigment ==> assignment | ydah | |
| https://github.com/ruby/irb/commit/24c7694467 | |||
| 2024-01-25 | [ruby/irb] reseting ==> resetting | ydah | |
| https://github.com/ruby/irb/commit/6209f06c72 | |||
| 2024-01-25 | [ruby/irb] configuation ==> configuration | ydah | |
| https://github.com/ruby/irb/commit/a27a511777 | |||
| 2024-01-25 | [ruby/irb] recever ==> receiver | ydah | |
| https://github.com/ruby/irb/commit/dbd0e368c4 | |||
| 2024-01-25 | [ruby/irb] inifinity ==> infinity | ydah | |
| https://github.com/ruby/irb/commit/78dea58000 | |||
| 2024-01-24 | [rubygems/rubygems] Keep compatibility of past versions | Hiroshi SHIBATA | |
| https://github.com/rubygems/rubygems/commit/54b67fb251 | |||
| 2024-01-24 | [rubygems/rubygems] Skip to load commented out words | Hiroshi SHIBATA | |
| https://github.com/rubygems/rubygems/commit/e6a9148ba2 | |||
| 2024-01-24 | Revert "Ensure File.open applies default umask on gem extract" | Hiroshi SHIBATA | |
| This reverts commit 01f9766aa05182a7bbdc914a5dcd8a36ebade861. | |||
| 2024-01-24 | [rubygems/rubygems] Remove no longer necessary code | David Rodríguez | |
| https://github.com/rubygems/rubygems/commit/b7d2de2ba8 | |||
| 2024-01-24 | [rubygems/rubygems] Fix rake extension warning | なつき | |
| https://github.com/rubygems/rubygems/commit/04973e349c | |||
| 2024-01-24 | Ensure File.open applies default umask on gem extract | Martin Emde | |
| 2024-01-22 | Extract csv | Hiroshi SHIBATA | |
| 2024-01-22 | Extract nkf | Hiroshi SHIBATA | |
