From 82b72e81c625ca90b59217b358afbabd1e997058 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 16 Jan 2025 12:06:07 +0000 Subject: [PATCH] add support for Ruby 3.4 --- .github/workflows/ci.yml | 1 + Gemfile.lock | 12 +++++++----- iron_bank.gemspec | 1 + 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7b94b1..ad4ded0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,7 @@ jobs: - '3.1' - '3.2' - '3.3' + - '3.4' steps: - uses: zendesk/checkout@v3 - uses: zendesk/setup-ruby@v1 diff --git a/Gemfile.lock b/Gemfile.lock index 9a1abac..afa5905 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,6 +2,7 @@ PATH remote: . specs: iron_bank (5.4.1) + csv faraday (~> 1) faraday_middleware (~> 1) nokogiri (~> 1) @@ -27,12 +28,13 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.2) connection_pool (2.4.1) + csv (3.3.2) diff-lcs (1.5.0) docile (1.4.0) dotenv (2.8.1) drb (2.2.0) ruby2_keywords - factory_bot (6.2.1) + factory_bot (6.5.0) activesupport (>= 5.0.0) faraday (1.10.3) faraday-em_http (~> 1.0) @@ -65,11 +67,11 @@ GEM kwalify (0.7.2) method_source (1.0.0) mini_portile2 (2.8.2) - minitest (5.18.0) + minitest (5.25.4) multipart-post (2.3.0) mutex_m (0.2.0) - nokogiri (1.14.3) - mini_portile2 (~> 2.8.0) + nokogiri (1.18.1) + mini_portile2 (~> 2.8.2) racc (~> 1.4) parallel (1.23.0) parser (3.2.2.1) @@ -152,4 +154,4 @@ DEPENDENCIES timecop (~> 0.9) BUNDLED WITH - 2.4.19 + 2.6.2 diff --git a/iron_bank.gemspec b/iron_bank.gemspec index 3b76963..e0cf4a7 100644 --- a/iron_bank.gemspec +++ b/iron_bank.gemspec @@ -29,6 +29,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] + spec.add_dependency "csv" spec.add_dependency "faraday", "~> 1" spec.add_dependency "faraday_middleware", "~> 1" spec.add_dependency "nokogiri", "~> 1"