Remove ruby 2.5 support, it's EOL since over half a year
This commit is contained in:
parent
3861eb9fef
commit
e123fab2f4
6 changed files with 5 additions and 6 deletions
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
|
@ -17,7 +17,6 @@ jobs:
|
||||||
- 3.0
|
- 3.0
|
||||||
- 2.7
|
- 2.7
|
||||||
- 2.6
|
- 2.6
|
||||||
- 2.5
|
|
||||||
gemfile:
|
gemfile:
|
||||||
- Gemfile
|
- Gemfile
|
||||||
- test/gemfiles/no-rails.Gemfile
|
- test/gemfiles/no-rails.Gemfile
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
require: rubocop-rails
|
require: rubocop-rails
|
||||||
|
|
||||||
AllCops:
|
AllCops:
|
||||||
TargetRubyVersion: 2.5
|
TargetRubyVersion: 2.6
|
||||||
NewCops: enable
|
NewCops: enable
|
||||||
Exclude:
|
Exclude:
|
||||||
- "bin/**/*"
|
- "bin/**/*"
|
||||||
|
|
|
||||||
|
|
@ -19,5 +19,5 @@ Gem::Specification.new do |s|
|
||||||
|
|
||||||
s.files = Dir["lib/diaspora_federation/schemas.rb", "lib/diaspora_federation/schemas/*.json"]
|
s.files = Dir["lib/diaspora_federation/schemas.rb", "lib/diaspora_federation/schemas/*.json"]
|
||||||
|
|
||||||
s.required_ruby_version = ">= 2.5"
|
s.required_ruby_version = ">= 2.6"
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
||||||
s.files = Dir["app/**/*", "config/routes.rb", "config/initializers/*",
|
s.files = Dir["app/**/*", "config/routes.rb", "config/initializers/*",
|
||||||
"lib/diaspora_federation/{engine,rails}.rb", "LICENSE", "README.md", "Changelog.md"]
|
"lib/diaspora_federation/{engine,rails}.rb", "LICENSE", "README.md", "Changelog.md"]
|
||||||
|
|
||||||
s.required_ruby_version = ">= 2.5"
|
s.required_ruby_version = ">= 2.6"
|
||||||
|
|
||||||
s.add_dependency "actionpack", ">= 5.2", "< 7"
|
s.add_dependency "actionpack", ">= 5.2", "< 7"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
||||||
|
|
||||||
s.files = Dir["lib/diaspora_federation/test.rb", "lib/diaspora_federation/test/*"]
|
s.files = Dir["lib/diaspora_federation/test.rb", "lib/diaspora_federation/test/*"]
|
||||||
|
|
||||||
s.required_ruby_version = ">= 2.5"
|
s.required_ruby_version = ">= 2.6"
|
||||||
|
|
||||||
s.add_dependency "diaspora_federation", DiasporaFederation::VERSION
|
s.add_dependency "diaspora_federation", DiasporaFederation::VERSION
|
||||||
s.add_dependency "fabrication", "~> 2.16"
|
s.add_dependency "fabrication", "~> 2.16"
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ Gem::Specification.new do |s|
|
||||||
"lib/diaspora_federation/test/*",
|
"lib/diaspora_federation/test/*",
|
||||||
"lib/tasks/*.rake"]
|
"lib/tasks/*.rake"]
|
||||||
|
|
||||||
s.required_ruby_version = ">= 2.5"
|
s.required_ruby_version = ">= 2.6"
|
||||||
|
|
||||||
s.add_dependency "faraday", "~> 1.0"
|
s.add_dependency "faraday", "~> 1.0"
|
||||||
s.add_dependency "faraday_middleware", "~> 1.0"
|
s.add_dependency "faraday_middleware", "~> 1.0"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue