Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RUBY-3554 Update required_ruby_version #2909

Merged
merged 1 commit into from
Nov 22, 2024
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
12 changes: 4 additions & 8 deletions gemfiles/standard.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,10 @@ def standard_dependencies
gem 'yajl-ruby', platforms: :mri, require: false
gem 'celluloid', platforms: :mri, require: false

# for static analysis -- ignore ruby < 2.6 because of rubocop
# version incompatibilities
if RUBY_VERSION > '2.5.99'
gem 'rubocop', '~> 1.45.1'
gem 'rubocop-performance', '~> 1.16.0'
gem 'rubocop-rake', '~> 0.6.0'
gem 'rubocop-rspec', '~> 2.18.1'
end
gem 'rubocop', '~> 1.45.1'
gem 'rubocop-performance', '~> 1.16.0'
gem 'rubocop-rake', '~> 0.6.0'
gem 'rubocop-rspec', '~> 2.18.1'

platform :mri do
# Debugger for VSCode.
Expand Down
2 changes: 1 addition & 1 deletion mongo.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Gem::Specification.new do |s|
s.require_paths = ['lib']
s.bindir = 'bin'

s.required_ruby_version = ">= 2.5"
s.required_ruby_version = ">= 2.7"

s.add_dependency 'base64'
s.add_dependency 'bson', '>=4.14.1', '<6.0.0'
Expand Down
Loading