Skip to content

Commit

Permalink
Fix new cop offense
Browse files Browse the repository at this point in the history
see https://github.com/rubocop/rubocop-ast/actions/runs/5039437879/jobs/9037577956

 rubocop-ast.gemspec:38:3: C: Gemspec/DevelopmentDependencies: Specify development dependencies in Gemfile.
  s.add_development_dependency('bundler', '>= 1.15.0', '< 3.0')
  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  • Loading branch information
pirj authored and marcandre committed May 21, 2023
1 parent 75da884 commit d801fdf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -9,6 +9,7 @@ source 'https://rubygems.org'
gemspec

gem 'bump', require: false
gem 'bundler', '>= 1.15.0', '< 3.0'
gem 'oedipus_lex', '>= 2.6.0', require: false
gem 'racc'
gem 'rake', '~> 13.0'
Expand Down
2 changes: 0 additions & 2 deletions rubocop-ast.gemspec
Expand Up @@ -35,7 +35,5 @@ Gem::Specification.new do |s|

s.add_runtime_dependency('parser', '>= 3.2.1.0')

s.add_development_dependency('bundler', '>= 1.15.0', '< 3.0')

##### Do NOT add `rubocop` (or anything depending on `rubocop`) here. See Gemfile
end

0 comments on commit d801fdf

Please sign in to comment.