Skip to content

Commit

Permalink
Tighten the RuboCop AST dependency (#9158)
Browse files Browse the repository at this point in the history
Users can upgrade upcoming RuboCop safely, even if incompatible APIs
are introduced in future RuboCop AST major updates.

The purpose is to reduce the runtime impact for users, as it is already
specified `rubocop-ast` in the Gemfile so that development can try the latest.
  • Loading branch information
koic committed Dec 3, 2020
1 parent d58d248 commit a18ffc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rubocop.gemspec
Expand Up @@ -35,7 +35,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency('rainbow', '>= 2.2.2', '< 4.0')
s.add_runtime_dependency('regexp_parser', '>= 1.8', '< 3.0')
s.add_runtime_dependency('rexml')
s.add_runtime_dependency('rubocop-ast', '>= 1.2.0')
s.add_runtime_dependency('rubocop-ast', '>= 1.2.0', '< 2.0')
s.add_runtime_dependency('ruby-progressbar', '~> 1.7')
s.add_runtime_dependency('unicode-display_width', '>= 1.4.0', '< 2.0')

Expand Down

0 comments on commit a18ffc1

Please sign in to comment.