File tree Expand file tree Collapse file tree 4 files changed +3
-16
lines changed Expand file tree Collapse file tree 4 files changed +3
-16
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change 55
66AllCops :
77 DisplayCopNames : true
8- TargetRubyVersion : 2.3
8+ TargetRubyVersion : 2.4
99 Exclude :
1010 - ' vendor/**/*'
1111 - ' spec/fixtures/**/*'
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 [
You can’t perform that action at this time.
0 commit comments