Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/matrix.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"ruby": ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
"ruby": ["3.0", "3.1", "3.2", "3.3", "3.4"]
}
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:
inherit_from: .rubocop_todo.yml

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0

Bundler/OrderedGems:
Enabled: false
Expand Down
3 changes: 0 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ gemspec

gem 'concurrent-ruby', '~> 1.0', require: 'concurrent'

# FFI 1.17 needs rubygems 3.3.22+, which is Ruby 3.0+ only
gem "ffi", "<1.17" if RUBY_VERSION < '3.0'

Dir[File.join(__dir__, 'bundler.d', '*.rb')].each do |bundle|
eval_gemfile(bundle)
end
Expand Down
2 changes: 1 addition & 1 deletion smart_proxy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.test_files = Dir.glob("{test}/**/*test.rb")
s.license = 'GPL-3.0'
s.extra_rdoc_files = ["README.md"]
s.required_ruby_version = '>= 2.7'
s.required_ruby_version = '>= 3.0'
s.add_dependency 'base64'
s.add_dependency 'json'
s.add_dependency 'logging'
Expand Down