From bc04e22daf6d0b8c33c4ef4c5b68b9a3b191f372 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Tue, 12 Aug 2025 13:40:40 +0200 Subject: [PATCH] Add tsort to Gemfile (in several places) So that rbs can run right, before it has a new release. Fixes #845 --- .github/workflows/reline.yml | 4 ++-- Gemfile | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reline.yml b/.github/workflows/reline.yml index a6c2730c19..45582fb8ea 100644 --- a/.github/workflows/reline.yml +++ b/.github/workflows/reline.yml @@ -103,7 +103,7 @@ jobs: make sudo make install - name: Install dependencies - run: bundle install + run: bundle install && bundle add tsort - name: Install reline run: rake install - name: Download ruby/irb @@ -112,7 +112,7 @@ jobs: - name: Run irb test working-directory: ./irb run: | - bundle install + bundle install && bundle add tsort bundle exec rake test - name: Run irb yamatanooroti test working-directory: ./irb diff --git a/Gemfile b/Gemfile index c439329c52..f3d94938ae 100644 --- a/Gemfile +++ b/Gemfile @@ -13,6 +13,7 @@ gem 'bundler' gem 'rdoc' gem 'rake' gem 'test-unit' +gem 'tsort' # Only used in ci to run readline-ext test using Reline as Readline gem 'readline'