Skip to content

Fix Broken CI #946

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

Merged
merged 1 commit into from
Mar 6, 2025
Merged
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
8 changes: 7 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ gemspec
gem 'puma'

platforms :ruby do
if RUBY_VERSION >= "2.5.0"
if RUBY_VERSION >= "3.0.0"
gem 'sqlite3'
elsif RUBY_VERSION >= "2.5.0"
gem 'sqlite3', '~> 1.4.0'
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Without this change, sqlite3 fails to install.

sqlite3-1.7.3-x86_64-linux requires ruby version < 3.4.dev, >= 3.0, which is incompatible with the current version, ruby
2.7.7p221

else
gem 'sqlite3', '~> 1.3.6'
end
Expand Down Expand Up @@ -44,3 +46,7 @@ if RUBY_VERSION < "2.5.0"
gem 'simplecov', '0.17.1'
gem "loofah", "< 2.21.0" # Workaround for `uninitialized constant Nokogiri::HTML4`
end

if RUBY_VERSION < "3.0.0"
gem "concurrent-ruby", "< 1.3.5"
end
Loading