Skip to content
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

Rubocop Tweaks #35

Merged
merged 9 commits into from
Dec 20, 2023
Merged

Rubocop Tweaks #35

merged 9 commits into from
Dec 20, 2023

Conversation

kbrock
Copy link
Member

@kbrock kbrock commented Dec 19, 2023

bunch of commits for rubocops.

I tried to only address the obvious ones

@@ -17,7 +17,7 @@ def self.bundler_version

versions = bundler_versions

to_find = ENV["TEST_BUNDLER_VERSION"] || ENV["BUNDLER_VERSION"]
to_find = ENV.fetch("TEST_BUNDLER_VERSION", nil) || ENV.fetch("BUNDLER_VERSION", nil)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is fine...you could also do:

Suggested change
to_find = ENV.fetch("TEST_BUNDLER_VERSION", nil) || ENV.fetch("BUNDLER_VERSION", nil)
to_find = ENV.fetch("TEST_BUNDLER_VERSION", ENV.fetch("BUNDLER_VERSION", nil))

@Fryguy Fryguy merged commit f9db319 into ManageIQ:master Dec 20, 2023
19 checks passed
@kbrock kbrock deleted the tweaks branch January 3, 2024 19:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants