Skip to content

Commit 5f2de87

Browse files
committed
Officially drop support to Ruby 2.7 and 3.0
1 parent e83bdee commit 5f2de87

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ boot it every time you run a test, rake task or migration.
1616

1717
## Compatibility
1818

19-
* Ruby versions: MRI 2.7+
19+
* Ruby versions: MRI 3.1+
2020
* Rails versions: 6.0+
2121
* Bundler v2.1+
2222

spring.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
1313
gem.files = Dir["LICENSE.txt", "README.md", "lib/**/*", "bin/*"]
1414
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
1515

16-
gem.required_ruby_version = ">= 2.7.0"
16+
gem.required_ruby_version = ">= 3.1.0"
1717

1818
gem.metadata = {
1919
"rubygems_mfa_required" => "true",

test/support/acceptance_test.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -668,8 +668,6 @@ def exec_name
668668
end
669669

670670
test "custom bundle path" do
671-
skip if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.1.0") && ENV["RAILS_VERSION"] == "7.0"
672-
673671
bundle_path = app.path(".bundle/#{Bundler.ruby_scope}")
674672
bundle_path.dirname.mkpath
675673

0 commit comments

Comments
 (0)