Skip to content

Commit

Permalink
also specify base64 as a dep for ruby 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Kruse committed Feb 15, 2024
1 parent 4c68eaf commit 7697873
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cfpropertylist.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ Gem::Specification.new do |s|
s.add_runtime_dependency("rexml") # no longer bundled with Ruby 3
end

# Some gems will no longer bundled with Ruby >= 3.4
if Gem::Version::new(RUBY_VERSION) >= Gem::Version::new('3.4.0')
s.add_runtime_dependency("nkf") # will no longer bundled with Ruby >= 3.4
s.add_runtime_dependency("nkf")
s.add_runtime_dependency("base64")
end

s.add_development_dependency("libxml-ruby")
Expand Down

0 comments on commit 7697873

Please sign in to comment.