Skip to content

Commit

Permalink
Drop support for Ruby 2.3
Browse files Browse the repository at this point in the history
RuboCop has dropped support for Ruby 2.3
(rubocop/rubocop@5873894)
and so should we.
  • Loading branch information
bquorning committed Apr 27, 2020
1 parent dff8957 commit 725cb36
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
14 changes: 0 additions & 14 deletions .circleci/config.yml
Expand Up @@ -21,16 +21,6 @@ jobs:
- run: bundle install
- run: rake confirm_config documentation_syntax_check confirm_documentation

# Ruby 2.3
ruby-2.3-rspec:
docker:
- image: circleci/ruby:2.3
<<: *rspec
ruby-2.3-rubocop:
docker:
- image: circleci/ruby:2.3
<<: *rubocop

# Ruby 2.4
ruby-2.4-rspec:
docker:
Expand Down Expand Up @@ -128,10 +118,6 @@ workflows:
- confirm_config_and_documentation

# Use `requires: [confirm_config_and_documentation]` to trick Circle CI into starting the slow jruby job early.
- ruby-2.3-rspec:
requires: [confirm_config_and_documentation]
- ruby-2.3-rubocop:
requires: [confirm_config_and_documentation]
- ruby-2.4-rspec:
requires: [confirm_config_and_documentation]
- ruby-2.4-rubocop:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Expand Up @@ -5,7 +5,7 @@ require:

AllCops:
DisplayCopNames: true
TargetRubyVersion: 2.3
TargetRubyVersion: 2.4
Exclude:
- 'vendor/**/*'
- 'spec/fixtures/**/*'
Expand Down
2 changes: 1 addition & 1 deletion rubocop-rspec.gemspec
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|

spec.version = RuboCop::RSpec::Version::STRING
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '>= 2.3.0'
spec.required_ruby_version = '>= 2.4.0'

spec.require_paths = ['lib']
spec.files = Dir[
Expand Down

0 comments on commit 725cb36

Please sign in to comment.