Skip to content

Support Ruby 3.0 #524

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

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
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
Next Next commit
Use versions from gemspec
When running `bundle install`, it tried to install the latest minitest version, as it was defined again in the Gemfile. This caused issues with Ruby 2.5, as support for it was dropped in v5.16.0.

Removing this extra code makes bundler correctly install 5.14.0 as defined in the gemspec.
  • Loading branch information
andyundso committed Jan 7, 2023
commit 86f15c26d98d1ff184310b10683ada5525e742a1
7 changes: 0 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,2 @@
source 'https://rubygems.org'
gemspec

group :development do
end

group :test do
gem 'minitest'
end