Skip to content

Commit

Permalink
Merge pull request #1538 from newrelic/install_fewer_dev_dependencies…
Browse files Browse the repository at this point in the history
…_on_ci

Install fewer dev dependencies on ci
  • Loading branch information
tannalynn authored Oct 12, 2022
2 parents 81c166d + e5aa640 commit bfb7057
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions newrelic_rpm.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ https://github.com/newrelic/newrelic-ruby-agent/
s.add_development_dependency 'mocha', '~> 1.14.0'
s.add_development_dependency 'pry' unless ENV['CI']
s.add_development_dependency 'rake', '12.3.3'
s.add_development_dependency 'rubocop' if RUBY_VERSION > '2.5.0'
s.add_development_dependency 'rubocop-minitest' if RUBY_VERSION > '2.5.0'
s.add_development_dependency 'rubocop-performance' if RUBY_VERSION > '2.5.0'
s.add_development_dependency 'rubocop-rake' if RUBY_VERSION > '2.5.0'
s.add_development_dependency 'rubocop' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
s.add_development_dependency 'rubocop-minitest' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
s.add_development_dependency 'rubocop-performance' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
s.add_development_dependency 'rubocop-rake' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
s.add_development_dependency 'simplecov' if RUBY_VERSION >= '2.7.0'
s.add_development_dependency 'thor'
s.add_development_dependency 'yard'
s.add_development_dependency 'thor' unless ENV['CI']
s.add_development_dependency 'yard', "#{RUBY_VERSION < '2.3.0' ? '0.9.26' : '> 0.9.26'}"
end

0 comments on commit bfb7057

Please sign in to comment.