diff options
author | Samuel Williams <samuel.williams@oriontransfer.co.nz> | 2020-01-11 13:33:26 +1300 |
---|---|---|
committer | Samuel Williams <samuel.williams@oriontransfer.co.nz> | 2020-01-11 13:33:26 +1300 |
commit | 7331dc84cdfbfbfe670f23ec283f2deb8e809b62 (patch) | |
tree | d4d976ee97afd1814d61510485497940c9809c35 | |
parent | d400efd0d6bfb4461e4e2248075df6c2fe620d53 (diff) | |
download | rack-fix-rubocop.tar.gz |
Drop support for Ruby 2.2 as it is well past EOL.fix-rubocop
-rw-r--r-- | .circleci/config.yml | 11 | ||||
-rw-r--r-- | rack.gemspec | 2 |
2 files changed, 1 insertions, 12 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index a89fa6d1..0873697f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,6 @@ workflows: test: jobs: - test-jruby - - test-ruby-2.2 - test-ruby-2.3 - test-ruby-2.4 - test-ruby-2.5 @@ -35,16 +34,6 @@ default-steps: &default-steps - run: bundle exec rake ci jobs: - test-ruby-2.2: - docker: - - image: circleci/ruby:2.2 - # Spawn a process owned by root - # This works around an issue explained here: - # https://github.com/circleci/circleci-images/pull/132 - command: sudo /bin/sh - - image: memcached:1.4 - steps: *default-steps - test-ruby-2.3: docker: - image: circleci/ruby:2.3 diff --git a/rack.gemspec b/rack.gemspec index f7b13b17..f0d81ed5 100644 --- a/rack.gemspec +++ b/rack.gemspec @@ -27,7 +27,7 @@ EOF s.author = 'Leah Neukirchen' s.email = 'leah@vuxu.org' s.homepage = 'https://rack.github.io/' - s.required_ruby_version = '>= 2.2.2' + s.required_ruby_version = '>= 2.3.0' s.metadata = { "bug_tracker_uri" => "https://github.com/rack/rack/issues", "changelog_uri" => "https://github.com/rack/rack/blob/master/CHANGELOG.md", |