Skip to content

Commit 5e23baf

Browse files
authored
Merge pull request #616 from HashNotAdam/support_ruby_3_4
Explicitly require Base64 and CSV
2 parents 3d24c11 + c3b2a7a commit 5e23baf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ruby.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ jobs:
1818
- '3.1'
1919
- '3.2'
2020
- '3.3'
21+
- '3.4'
2122
- ruby-head
22-
- jruby-9.3.3.0
23+
- jruby-9.4.10.0
2324
include:
2425
- ruby: ruby-head
2526
env:
@@ -33,4 +34,3 @@ jobs:
3334
- run: bundle exec rake
3435
env:
3536
LONG_RUN: true
36-

roo.gemspec

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ Gem::Specification.new do |spec|
2323
spec.required_ruby_version = ">= 2.7.0"
2424
end
2525

26+
if RUBY_VERSION >= '3.4.0'
27+
spec.add_dependency 'base64', '~> 0.2'
28+
spec.add_dependency 'csv', '~> 3'
29+
end
2630
spec.add_dependency 'nokogiri', '~> 1'
2731
spec.add_dependency 'rubyzip', '>= 1.3.0', '< 3.0.0'
2832

0 commit comments

Comments
 (0)