From a50d216a84399160104baa7f76395820239cbd99 Mon Sep 17 00:00:00 2001 From: Travis Sadler Date: Wed, 19 Feb 2025 14:25:05 -0800 Subject: [PATCH 1/2] Upgrade file check logic for newer ruby versions --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 122d6b589..0313b80da 100644 --- a/Gemfile +++ b/Gemfile @@ -3,11 +3,11 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org' gemspec # Evaluate Gemfile.local if it exists -if File.exists? "#{__FILE__}.local" +if File.exist? "#{__FILE__}.local" instance_eval(File.read("#{__FILE__}.local")) end # Evaluate ~/.gemfile if it exists -if File.exists?(File.join(Dir.home, '.gemfile')) +if File.exist?(File.join(Dir.home, '.gemfile')) instance_eval(File.read(File.join(Dir.home, '.gemfile'))) end From 3b800b1c7612cf26683760fa0e67e47256cf64c4 Mon Sep 17 00:00:00 2001 From: Travis Sadler Date: Thu, 20 Feb 2025 10:52:18 -0800 Subject: [PATCH 2/2] Bump jruby version in github testing.yml --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 1f2f421f8..474631cc8 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: ruby-version: - - 'jruby-9.4.3.0' + - 'jruby-9.4.10.0' steps: - uses: actions/checkout@v4 - name: Set up Ruby @@ -34,7 +34,7 @@ jobs: strategy: matrix: ruby-version: - - 'jruby-9.4.3.0' + - 'jruby-9.4.10.0' steps: - uses: actions/checkout@v4 - name: Set up Ruby