Skip to content

Commit 3038e0f

Browse files
committed
Drop support for Ruby 2.3
RuboCop has dropped support for Ruby 2.3 (rubocop/rubocop@5873894) and so should we.
1 parent dff8957 commit 3038e0f

File tree

4 files changed

+3
-16
lines changed

4 files changed

+3
-16
lines changed

.circleci/config.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,6 @@ jobs:
2121
- run: bundle install
2222
- run: rake confirm_config documentation_syntax_check confirm_documentation
2323

24-
# Ruby 2.3
25-
ruby-2.3-rspec:
26-
docker:
27-
- image: circleci/ruby:2.3
28-
<<: *rspec
29-
ruby-2.3-rubocop:
30-
docker:
31-
- image: circleci/ruby:2.3
32-
<<: *rubocop
33-
3424
# Ruby 2.4
3525
ruby-2.4-rspec:
3626
docker:
@@ -128,10 +118,6 @@ workflows:
128118
- confirm_config_and_documentation
129119

130120
# Use `requires: [confirm_config_and_documentation]` to trick Circle CI into starting the slow jruby job early.
131-
- ruby-2.3-rspec:
132-
requires: [confirm_config_and_documentation]
133-
- ruby-2.3-rubocop:
134-
requires: [confirm_config_and_documentation]
135121
- ruby-2.4-rspec:
136122
requires: [confirm_config_and_documentation]
137123
- ruby-2.4-rubocop:

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require:
55

66
AllCops:
77
DisplayCopNames: true
8-
TargetRubyVersion: 2.3
8+
TargetRubyVersion: 2.4
99
Exclude:
1010
- 'vendor/**/*'
1111
- 'spec/fixtures/**/*'

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Fix `RSpec/FilePath` detection when absolute path includes test subject. ([@eitoball][])
66
* Add new `Capybara/VisibilityMatcher` cop. ([@aried3r][])
77
* Ignore String constants by `RSpec/Describe`. ([@AlexWayfer][])
8+
* Drop support for ruby 2.3. ([@bquorning][])
89

910
## 1.38.1 (2020-02-15)
1011

rubocop-rspec.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
2121

2222
spec.version = RuboCop::RSpec::Version::STRING
2323
spec.platform = Gem::Platform::RUBY
24-
spec.required_ruby_version = '>= 2.3.0'
24+
spec.required_ruby_version = '>= 2.4.0'
2525

2626
spec.require_paths = ['lib']
2727
spec.files = Dir[

0 commit comments

Comments
 (0)