Skip to content

Commit f4319c2

Browse files
committed
Drop support to Ruby < 2.7 and Rails < 6.0
1 parent 98a7631 commit f4319c2

File tree

6 files changed

+7
-21
lines changed

6 files changed

+7
-21
lines changed

.github/workflows/ci.yml

-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@ jobs:
88
matrix:
99
ruby: [ '2.7', '3.0.2', 'head' ]
1010
rails: [ '6.0', '6.1', 'edge' ]
11-
include:
12-
- ruby: '2.6'
13-
rails: '5.2'
14-
- ruby: '2.6'
15-
rails: '6.0'
16-
- ruby: '2.6'
17-
rails: '6.1'
1811

1912
env:
2013
RAILS_VERSION: ${{ matrix.rails }}

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
* Stop requiring `set` before bundler can select the proper version. This could result in
44
`already defined constant` warnings during boot (#659).
5+
* Require Ruby 2.7.
6+
* Require Rails 6.0.
57

68
## 3.1.1
79

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ boot it every time you run a test, rake task or migration.
1616

1717
## Compatibility
1818

19-
* Ruby versions: MRI 2.5, MRI 2.6
20-
* Rails versions: 5.2, 6.0 (Spring is installed by default when you do
21-
`rails new` to generate your application)
19+
* Ruby versions: MRI 2.7, MRI 3.0, MRI 3.1
20+
* Rails versions: 6.0, 6.1, 7.0
2221

2322
Spring makes extensive use of `Process.fork`, so won't be able to
2423
provide a speed up on platforms which don't support forking (Windows, JRuby).

lib/spring/application.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ def preload
9292

9393
require Spring.application_root_path.join("config", "application")
9494

95-
unless Rails.respond_to?(:gem_version) && Rails.gem_version >= Gem::Version.new('5.2.0')
96-
raise "Spring only supports Rails >= 5.2.0"
95+
unless Rails.respond_to?(:gem_version) && Rails.gem_version >= Gem::Version.new('6.0.0')
96+
raise "Spring only supports Rails >= 6.0.0"
9797
end
9898

9999
Rails::Application.initializer :ensure_reloading_is_enabled, group: :all do

spring.gemspec

+1-1
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.5.0"
16+
gem.required_ruby_version = ">= 2.7.0"
1717

1818
gem.add_development_dependency 'rake'
1919
gem.add_development_dependency 'bump'

test/support/application_generator.rb

-8
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,9 @@ def generate_files
6060
c.sub!("https://rubygems.org", "http://rubygems.org")
6161
c.gsub!(/(gem '(byebug|web-console|sdoc|jbuilder)')/, "# \\1")
6262

63-
if @version.to_s < '5.2'
64-
c.gsub!(/(gem 'sqlite3')/, "# \\1")
65-
end
66-
6763
c
6864
end
6965

70-
if @version.to_s < '5.2'
71-
append_to_file(application.gemfile, "gem 'sqlite3', '< 1.4'")
72-
end
73-
7466
rewrite_file(application.path("config/environments/test.rb")) do |c|
7567
c.sub!(/config\.cache_classes\s*=\s*true/, "config.cache_classes = false")
7668
c

0 commit comments

Comments
 (0)