Skip to content

Commit fde9b30

Browse files
authored
Fix Ruby 4 compatibility
1 parent ab75561 commit fde9b30

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- '3.2.8'
1818
- '3.3.8'
1919
- '3.4.4'
20+
- '4.0.0-preview3'
2021

2122
runs-on: ubuntu-22.04
2223

cloudinary.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
2222
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
2323
s.require_paths = ["lib"]
2424

25-
s.required_ruby_version = '~> 3'
25+
s.required_ruby_version = '>= 3', '< 5'
2626

2727
s.add_dependency "faraday", ">= 2.0.1", "< 3.0.0"
2828
s.add_dependency "faraday-multipart", "~> 1.0", ">= 1.0.4"

0 commit comments

Comments
 (0)