Skip to content

Commit

Permalink
Do not specify the desired rubocop version on older rubies
Browse files Browse the repository at this point in the history
  • Loading branch information
anakinj committed Oct 14, 2023
1 parent c4f34cd commit 9360135
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ source 'https://rubygems.org'

gemspec

gem 'rubocop', '~> 1.56.3' # Keep .codeclimate.yml channel in sync with this one
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.7.0')
gem 'rubocop', '~> 1.56.3' # Keep .codeclimate.yml channel in sync with this one
end
1 change: 1 addition & 0 deletions ruby-jwt.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'simplecov'
end

0 comments on commit 9360135

Please sign in to comment.