-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix broken dependencies #352
Conversation
c75b525
to
1d817e8
Compare
Without this, a warning appears that multiple new cops are not being checked. Adding `NewCops: enable` meant 100's of new rubocop warnings appeared. I fixed some and moved many to the `.rubocop_todo.yml`. Signed-off-by: Gavin Didrichsen <[email protected]>
Initially, I tried to correct all the new warnings but as the list of corrections was 100+, the CI broke, and the focus of this PR was restoring resource_api to green on CI, I pushed most of the corrections to this to-do list to fix at a later stage. Signed-off-by: Gavin Didrichsen <[email protected]>
The reasons for the above are explained in the ADR document `doc/adr/0002-split-gemfile-dependencies-by-jruby-and-ruby-engines.md` Signed-off-by: Gavin Didrichsen <[email protected]>
All of these warnings were fixed in order to correct a rubocop syntax error occuring in jruby but not ruby. After pinning jruby's (9.3 and 9.4) to an older version of rubocop than ruby's versions (2.7 and 3.2), the older rubocop did not recognize some newer cops listed in the `rubocop_todo.yml`. The solution was to auto-correct just these new exceptions. This is a temporary solution, however, as newer cop warnings may cause the same issue again. Signed-off-by: Gavin Didrichsen <[email protected]>
14f0e76
to
35bbfa5
Compare
768abd1
to
f7fe2e5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Look's ok but would want another pair of eyes before merge due to the ruby split
- 'spec/puppet/resource_api/transport_schema_def_spec.rb' | ||
|
||
# Offense count: 1 | ||
# This cop supports safe autocorrection (--autocorrect). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might be good to try and do the safe autocorrects
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @david22swan. I thought about getting this across the line with a green CI and then doing further autocorrects in another PR. The autocorrects I included in this PR were necessary to keep CI green for the jruby
environment tests.
26aed3c
to
88d87ce
Compare
Signed-off-by: Gavin Didrichsen <[email protected]>
8d8f120
to
622a339
Compare
Summary
Recent rubocop updates broke the resource_api's CI:
Although the fix for
ruby
environments was to change the Gemfile from this:to this:
The same could not be applied to the resource_api's
jruby
environments. This PR adds a workaround to keep both theruby
andjruby
environments passing in CI.NOTE: I also moved some of the commentary about rubocop from the
Gemfile
and into separate design decision documents. See below for more information.For more information
For more information about why the above changes were made, see
Checklist