Skip to content

Commit dda5c16

Browse files
committed
fix: Address CI issues and Rubocop violations
- Fix Rubocop style violations in Gemfile (alphabetical ordering) - Fix Rubocop style violations in gemspec (extra spacing) - Ensure Ruby 4.0 is properly configured in CI matrix - Ruby 4.0.0 is confirmed available in GitHub Actions
1 parent d3cd74a commit dda5c16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ source 'https://rubygems.org'
55
# Ruby 3.4+ compatibility - these gems are no longer in stdlib
66
gem 'base64'
77
gem 'bigdecimal'
8+
gem 'cgi' # Required for Ruby 4.0+ compatibility
89
gem 'mutex_m'
9-
gem 'cgi' # Required for Ruby 4.0+ compatibility
1010

1111
gem 'byebug'
1212
gem 'rake'

uploadcare-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Gem::Specification.new do |spec|
4343
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
4444
spec.require_paths = ['lib']
4545

46-
spec.required_ruby_version = '>= 3.0' # Tested with Ruby 3.0 through 4.0
46+
spec.required_ruby_version = '>= 3.0' # Tested with Ruby 3.0 through 4.0
4747

4848
spec.add_dependency 'addressable', '~> 2.8'
4949
spec.add_dependency 'faraday', '~> 2.12'

0 commit comments

Comments
 (0)