From 39c78cb52cd4cd182c2b3fda907b3dd0d651332d Mon Sep 17 00:00:00 2001 From: Felipe <41008398+StrawberryMaster@users.noreply.github.com> Date: Thu, 5 Dec 2024 12:13:39 +0000 Subject: [PATCH] Workflow changes, pt.4 --- .github/workflows/ruby.yml | 2 +- Gemfile | 3 ++- wayback_machine_downloader.gemspec | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 137f078..9b0e9bc 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -18,7 +18,7 @@ permissions: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 strategy: matrix: ruby-version: ['2.7', '3.0', '3.3'] diff --git a/Gemfile b/Gemfile index 896d547..b602f67 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,4 @@ source "https://rubygems.org" -gemspec \ No newline at end of file +gemspec +gem 'concurrent-ruby', '~> 1.3', '>= 1.3.4'' \ No newline at end of file diff --git a/wayback_machine_downloader.gemspec b/wayback_machine_downloader.gemspec index 60797f1..67ea8f2 100644 --- a/wayback_machine_downloader.gemspec +++ b/wayback_machine_downloader.gemspec @@ -12,7 +12,6 @@ Gem::Specification.new do |s| s.homepage = "https://github.com/hartator/wayback-machine-downloader" s.license = "MIT" s.required_ruby_version = '>= 1.9.2' - s.add_runtime_dependency 'concurrent-ruby', '~> 1.3', '>= 1.3.4' s.add_development_dependency 'rake', '~> 12.2' s.add_development_dependency 'minitest', '~> 5.2' end