From ed1746c9f3ba23d6af98fe0a7da575944b8a821b Mon Sep 17 00:00:00 2001 From: Ernesto Tagwerker Date: Mon, 9 Sep 2024 14:38:12 -0400 Subject: [PATCH 1/2] Use rainbows instead of colorize --- lib/next_rails/bundle_report/ruby_version_compatibility.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/next_rails/bundle_report/ruby_version_compatibility.rb b/lib/next_rails/bundle_report/ruby_version_compatibility.rb index 7fa8f74..414cf39 100644 --- a/lib/next_rails/bundle_report/ruby_version_compatibility.rb +++ b/lib/next_rails/bundle_report/ruby_version_compatibility.rb @@ -1,6 +1,8 @@ -require "colorize" +require "rainbow/refinement" class NextRails::BundleReport::RubyVersionCompatibility + using Rainbow + MINIMAL_VERSION = 1.0 attr_reader :gems, :options From c73bed3f2bf0c66c0d2a0f6dae96b1dad2a982ef Mon Sep 17 00:00:00 2001 From: Ernesto Tagwerker Date: Mon, 9 Sep 2024 14:39:10 -0400 Subject: [PATCH 2/2] Use Ruby 2.6 and higher --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d19c412..b0234f0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: [3.2, 3.1, 3.0, 2.7, 2.6, 2.5, 2.4, 2.3] + ruby-version: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6"] steps: - uses: actions/checkout@v2