Skip to content

Commit

Permalink
Use latest version of rmagick for Ruby 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marcogregorius committed Sep 8, 2023
1 parent aa17243 commit 5c70b7b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion carrierwave.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ Gem::Specification.new do |s|
s.add_development_dependency "fog-rackspace"
s.add_development_dependency "mini_magick", ">= 3.6.0"
if RUBY_ENGINE != 'jruby'
s.add_development_dependency "rmagick", "~> 2.16"
if RUBY_VERSION < '3.2'
s.add_development_dependency "rmagick", "~> 2.16"
else
s.add_development_dependency "rmagick"
end
end
s.add_development_dependency "timecop"
s.add_development_dependency "generator_spec", ">= 0.9.1"
Expand Down

0 comments on commit 5c70b7b

Please sign in to comment.