Skip to content
Snippets Groups Projects
Commit e8a6f279 authored by Henk's avatar Henk
Browse files

remove support for ruby 2.5 and 2.6 (doesn't like super being called for a...

remove support for ruby 2.5 and 2.6 (doesn't like super being called for a **kwargs method if the super doesn't have kwargs, making it hard to support all current versions of active_interaction)
parent fb41470f
No related branches found
No related tags found
1 merge request!44Add stripped string type, add support for rails 6.1, appsignal 3 and active_interaction 4. Drop support for rails 5.1
Pipeline #82124 passed
......@@ -7,19 +7,6 @@ before_script:
- bundle --jobs 2 --retry 3
- bundle exec appraisal install
.ruby_25: &ruby_25
image: registry.roqua.nl/roqua/docker-base-images:ruby-2.5
cache:
key: ruby_25
paths:
- .gems
.ruby_26: &ruby_26
image: registry.roqua.nl/roqua/docker-base-images:ruby-2.6-builder
cache:
key: ruby_26
paths:
- .gems
.ruby_27: &ruby_27
image: registry.roqua.nl/roqua/docker-base-images:ruby-2.7-builder
......@@ -28,31 +15,12 @@ before_script:
paths:
- .gems
rails_52_ruby_25:
<<: *ruby_25
script:
- bundle exec appraisal rails52 bundle exec rspec
rails_52_ruby_26:
<<: *ruby_26
script:
- bundle exec appraisal rails52 bundle exec rspec
rails_52_ruby_27:
<<: *ruby_27
script:
- bundle exec appraisal rails52 bundle exec rspec
rails_60_ruby_25:
<<: *ruby_25
script:
- bundle exec appraisal rails60 bundle exec rspec
rails_60_ruby_26:
<<: *ruby_26
script:
- bundle exec appraisal rails60 bundle exec rspec
rails_60_ruby_27:
<<: *ruby_27
script:
......
......@@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 2.5'
gem.required_ruby_version = '>= 2.7'
gem.add_dependency 'active_interaction', '>= 3.0', '< 5.0'
gem.add_dependency 'activesupport', '>= 5.2', '< 6.2'
gem.add_dependency 'naught', '~> 1.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment